Class: Google::Apis::MigrationcenterV1::GenericPlatformDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::GenericPlatformDetails
- 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
Generic platform details.
Instance Attribute Summary collapse
-
#hyperthreading ⇒ String
Whether the machine is hyperthreaded.
-
#location ⇒ String
Free text representation of the machine location.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GenericPlatformDetails
constructor
A new instance of GenericPlatformDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GenericPlatformDetails
Returns a new instance of GenericPlatformDetails.
2113 2114 2115 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hyperthreading ⇒ String
Whether the machine is hyperthreaded.
Corresponds to the JSON property hyperthreading
2104 2105 2106 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2104 def hyperthreading @hyperthreading end |
#location ⇒ String
Free text representation of the machine location. The format of this field
should not be relied on. Different VMs in the same location may have different
string values for this field.
Corresponds to the JSON property location
2111 2112 2113 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2111 def location @location end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2118 2119 2120 2121 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2118 def update!(**args) @hyperthreading = args[:hyperthreading] if args.key?(:hyperthreading) @location = args[:location] if args.key?(:location) end |