Class: Google::Apis::VmmigrationV1::AzureSourceVmDetails
- Inherits:
-
Object
- Object
- Google::Apis::VmmigrationV1::AzureSourceVmDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmmigration_v1/classes.rb,
lib/google/apis/vmmigration_v1/representations.rb,
lib/google/apis/vmmigration_v1/representations.rb
Overview
Represent the source Azure VM details.
Instance Attribute Summary collapse
-
#architecture ⇒ String
Output only.
-
#committed_storage_bytes ⇒ Fixnum
Output only.
-
#disks ⇒ Array<Google::Apis::VmmigrationV1::AzureDiskDetails>
Output only.
-
#firmware ⇒ String
Output only.
-
#vm_capabilities_info ⇒ Google::Apis::VmmigrationV1::VmCapabilities
Migrating VM source information about the VM capabilities needed for some Compute Engine features.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AzureSourceVmDetails
constructor
A new instance of AzureSourceVmDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AzureSourceVmDetails
Returns a new instance of AzureSourceVmDetails.
614 615 616 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 614 def initialize(**args) update!(**args) end |
Instance Attribute Details
#architecture ⇒ String
Output only. The VM architecture.
Corresponds to the JSON property architecture
591 592 593 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 591 def architecture @architecture end |
#committed_storage_bytes ⇒ Fixnum
Output only. The total size of the disks being migrated in bytes.
Corresponds to the JSON property committedStorageBytes
596 597 598 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 596 def committed_storage_bytes @committed_storage_bytes end |
#disks ⇒ Array<Google::Apis::VmmigrationV1::AzureDiskDetails>
Output only. The disks attached to the source VM.
Corresponds to the JSON property disks
601 602 603 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 601 def disks @disks end |
#firmware ⇒ String
Output only. The firmware type of the source VM.
Corresponds to the JSON property firmware
606 607 608 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 606 def firmware @firmware end |
#vm_capabilities_info ⇒ Google::Apis::VmmigrationV1::VmCapabilities
Migrating VM source information about the VM capabilities needed for some
Compute Engine features.
Corresponds to the JSON property vmCapabilitiesInfo
612 613 614 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 612 def vm_capabilities_info @vm_capabilities_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
619 620 621 622 623 624 625 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 619 def update!(**args) @architecture = args[:architecture] if args.key?(:architecture) @committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes) @disks = args[:disks] if args.key?(:disks) @firmware = args[:firmware] if args.key?(:firmware) @vm_capabilities_info = args[:vm_capabilities_info] if args.key?(:vm_capabilities_info) end |