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.
5093 5094 5095 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 5093 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backing_type ⇒ String
VMDK backing type.
Corresponds to the JSON property backingType
5075 5076 5077 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 5075 def backing_type @backing_type end |
#rdm_compatibility ⇒ String
RDM compatibility mode.
Corresponds to the JSON property rdmCompatibility
5080 5081 5082 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 5080 def rdm_compatibility @rdm_compatibility end |
#shared ⇒ Boolean Also known as:
Is VMDK shared with other VMs.
Corresponds to the JSON property shared
5085 5086 5087 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 5085 def shared @shared end |
#vmdk_mode ⇒ String
VMDK disk mode.
Corresponds to the JSON property vmdkMode
5091 5092 5093 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 5091 def vmdk_mode @vmdk_mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5098 5099 5100 5101 5102 5103 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 5098 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 |