Class: Google::Apis::ComputeV1::CustomerEncryptionKeyProtectedDisk

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CustomerEncryptionKeyProtectedDisk

Returns a new instance of CustomerEncryptionKeyProtectedDisk.



6324
6325
6326
# File 'lib/google/apis/compute_v1/classes.rb', line 6324

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#disk_encryption_keyGoogle::Apis::ComputeV1::CustomerEncryptionKey

Decrypts data associated with the disk with a customer-supplied encryption key. Corresponds to the JSON property diskEncryptionKey



6315
6316
6317
# File 'lib/google/apis/compute_v1/classes.rb', line 6315

def disk_encryption_key
  @disk_encryption_key
end

#sourceString

Specifies a valid partial or full URL to an existing Persistent Disk resource. This field is only applicable for persistent disks. For example: "source": "/ compute/v1/projects/project_id/zones/zone/disks/ disk_name Corresponds to the JSON property source

Returns:

  • (String)


6322
6323
6324
# File 'lib/google/apis/compute_v1/classes.rb', line 6322

def source
  @source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6329
6330
6331
6332
# File 'lib/google/apis/compute_v1/classes.rb', line 6329

def update!(**args)
  @disk_encryption_key = args[:disk_encryption_key] if args.key?(:disk_encryption_key)
  @source = args[:source] if args.key?(:source)
end