Class: Google::Apis::ComputeV1::CustomerEncryptionKey
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::CustomerEncryptionKey
 
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
 generated/google/apis/compute_v1/representations.rb,
 generated/google/apis/compute_v1/representations.rb
Overview
Represents a customer-supplied encryption key
Instance Attribute Summary collapse
- 
  
    
      #raw_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. 
- 
  
    
      #sha256  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer- supplied encryption key that protects this resource. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CustomerEncryptionKey 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CustomerEncryptionKey. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomerEncryptionKey
Returns a new instance of CustomerEncryptionKey
| 3219 3220 3221 | # File 'generated/google/apis/compute_v1/classes.rb', line 3219 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#raw_key ⇒ String
Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648
base64 to either encrypt or decrypt this resource.
Corresponds to the JSON property rawKey
| 3211 3212 3213 | # File 'generated/google/apis/compute_v1/classes.rb', line 3211 def raw_key @raw_key end | 
#sha256 ⇒ String
[Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-
supplied encryption key that protects this resource.
Corresponds to the JSON property sha256
| 3217 3218 3219 | # File 'generated/google/apis/compute_v1/classes.rb', line 3217 def sha256 @sha256 end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3224 3225 3226 3227 | # File 'generated/google/apis/compute_v1/classes.rb', line 3224 def update!(**args) @raw_key = args[:raw_key] if args.key?(:raw_key) @sha256 = args[:sha256] if args.key?(:sha256) end |