Class: Google::Apis::ComputeAlpha::SourceDiskEncryptionKey
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::SourceDiskEncryptionKey
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- 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
The customer-supplied encryption key of the source disk.
-
#source_disk ⇒ String
URL of the disk attached to the source instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SourceDiskEncryptionKey
constructor
A new instance of SourceDiskEncryptionKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SourceDiskEncryptionKey
Returns a new instance of SourceDiskEncryptionKey.
34936 34937 34938 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 34936 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disk_encryption_key ⇒ Google::Apis::ComputeAlpha::CustomerEncryptionKey
The customer-supplied encryption key of the source disk. Required if the
source disk is protected by a customer-supplied encryption key.
Corresponds to the JSON property diskEncryptionKey
34925 34926 34927 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 34925 def disk_encryption_key @disk_encryption_key end |
#source_disk ⇒ String
URL of the disk attached to the source instance. This can be a full or valid partial URL. For example, the following are valid values:
- https://www.googleapis.com/compute/v1/projects/project/zones/zone/disks/disk
- projects/project/zones/zone/disks/disk
- zones/zone/disks/disk
Corresponds to the JSON property
sourceDisk
34934 34935 34936 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 34934 def source_disk @source_disk end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
34941 34942 34943 34944 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 34941 def update!(**args) @disk_encryption_key = args[:disk_encryption_key] if args.key?(:disk_encryption_key) @source_disk = args[:source_disk] if args.key?(:source_disk) end |