Class: Google::Apis::VmmigrationV1alpha1::PersistentDiskDefaults

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

Overview

Details for creation of a Persistent Disk.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PersistentDiskDefaults

Returns a new instance of PersistentDiskDefaults.



3516
3517
3518
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3516

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

Instance Attribute Details

#additional_labelsHash<String,String>

A map of labels to associate with the Persistent Disk. Corresponds to the JSON property additionalLabels

Returns:

  • (Hash<String,String>)


3489
3490
3491
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3489

def additional_labels
  @additional_labels
end

#disk_nameString

Optional. The name of the Persistent Disk to create. Corresponds to the JSON property diskName

Returns:

  • (String)


3494
3495
3496
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3494

def disk_name
  @disk_name
end

#disk_typeString

The disk type to use. Corresponds to the JSON property diskType

Returns:

  • (String)


3499
3500
3501
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3499

def disk_type
  @disk_type
end

#encryptionGoogle::Apis::VmmigrationV1alpha1::Encryption

Encryption message describes the details of the applied encryption. Corresponds to the JSON property encryption



3504
3505
3506
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3504

def encryption
  @encryption
end

#source_disk_numberFixnum

Required. The ordinal number of the source VM disk. Corresponds to the JSON property sourceDiskNumber

Returns:

  • (Fixnum)


3509
3510
3511
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3509

def source_disk_number
  @source_disk_number
end

#vm_attachment_detailsGoogle::Apis::VmmigrationV1alpha1::VmAttachmentDetails

Details for attachment of the disk to a VM. Corresponds to the JSON property vmAttachmentDetails



3514
3515
3516
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3514

def vm_attachment_details
  @vm_attachment_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3521
3522
3523
3524
3525
3526
3527
3528
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3521

def update!(**args)
  @additional_labels = args[:additional_labels] if args.key?(:additional_labels)
  @disk_name = args[:disk_name] if args.key?(:disk_name)
  @disk_type = args[:disk_type] if args.key?(:disk_type)
  @encryption = args[:encryption] if args.key?(:encryption)
  @source_disk_number = args[:source_disk_number] if args.key?(:source_disk_number)
  @vm_attachment_details = args[:vm_attachment_details] if args.key?(:vm_attachment_details)
end