Class: Google::Apis::MigrationcenterV1::VmwareDiskConfig
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::VmwareDiskConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb
Overview
VMware disk config details.
Instance Attribute Summary collapse
-
#backing_type ⇒ String
VMDK backing type.
-
#rdm_compatibility ⇒ String
RDM compatibility mode.
-
#shared ⇒ Boolean
(also: #shared?)
Is VMDK shared with other VMs.
-
#vmdk_mode ⇒ String
VMDK disk mode.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VmwareDiskConfig
constructor
A new instance of VmwareDiskConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VmwareDiskConfig
Returns a new instance of VmwareDiskConfig.
6024 6025 6026 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6024 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backing_type ⇒ String
VMDK backing type.
Corresponds to the JSON property backingType
6006 6007 6008 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6006 def backing_type @backing_type end |
#rdm_compatibility ⇒ String
RDM compatibility mode.
Corresponds to the JSON property rdmCompatibility
6011 6012 6013 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6011 def rdm_compatibility @rdm_compatibility end |
#shared ⇒ Boolean Also known as:
Is VMDK shared with other VMs.
Corresponds to the JSON property shared
6016 6017 6018 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6016 def shared @shared end |
#vmdk_mode ⇒ String
VMDK disk mode.
Corresponds to the JSON property vmdkMode
6022 6023 6024 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6022 def vmdk_mode @vmdk_mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6029 6030 6031 6032 6033 6034 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 6029 def update!(**args) @backing_type = args[:backing_type] if args.key?(:backing_type) @rdm_compatibility = args[:rdm_compatibility] if args.key?(:rdm_compatibility) @shared = args[:shared] if args.key?(:shared) @vmdk_mode = args[:vmdk_mode] if args.key?(:vmdk_mode) end |