Class: Google::Apis::ComputeAlpha::CustomerEncryptionKeyProtectedDisk
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::CustomerEncryptionKeyProtectedDisk
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#disk_encryption_key ⇒ Google::Apis::ComputeAlpha::CustomerEncryptionKey
Represents a customer-supplied encryption key Corresponds to the JSON property
diskEncryptionKey
. -
#source ⇒ String
Specifies a valid partial or full URL to an existing Persistent Disk resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomerEncryptionKeyProtectedDisk
constructor
A new instance of CustomerEncryptionKeyProtectedDisk.
-
#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) ⇒ CustomerEncryptionKeyProtectedDisk
Returns a new instance of CustomerEncryptionKeyProtectedDisk
3939 3940 3941 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 3939 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disk_encryption_key ⇒ Google::Apis::ComputeAlpha::CustomerEncryptionKey
Represents a customer-supplied encryption key
Corresponds to the JSON property diskEncryptionKey
3931 3932 3933 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 3931 def disk_encryption_key @disk_encryption_key end |
#source ⇒ String
Specifies a valid partial or full URL to an existing Persistent Disk resource.
This field is only applicable for persistent disks.
Corresponds to the JSON property source
3937 3938 3939 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 3937 def source @source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3944 3945 3946 3947 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 3944 def update!(**args) @disk_encryption_key = args[:disk_encryption_key] if args.key?(:disk_encryption_key) @source = args[:source] if args.key?(:source) end |