Class: Google::Apis::DlpV2::GooglePrivacyDlpV2UnwrappedCryptoKey
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2UnwrappedCryptoKey
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb 
Overview
Using raw keys is prone to security risks due to accidentally leaking the key. Choose another type of key if possible.
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The AES 128/192/256 bit key.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2UnwrappedCryptoKey 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2UnwrappedCryptoKey.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2UnwrappedCryptoKey
Returns a new instance of GooglePrivacyDlpV2UnwrappedCryptoKey
      5421 5422 5423  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5421 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#key ⇒ String
The AES 128/192/256 bit key. [required]
Corresponds to the JSON property key
NOTE: Values are automatically base64 encoded/decoded in the client library.
      5419 5420 5421  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5419 def key @key end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5426 5427 5428  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5426 def update!(**args) @key = args[:key] if args.key?(:key) end  |