Class: Google::Apis::ComputeBeta::AllocationSpecificSkuAllocationAllocatedInstanceProperties
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::AllocationSpecificSkuAllocationAllocatedInstanceProperties
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Overview
Properties of the SKU instances being reserved.
Instance Attribute Summary collapse
-
#guest_accelerators ⇒ Array<Google::Apis::ComputeBeta::AcceleratorConfig>
Specifies accelerator type and count.
-
#local_ssds ⇒ Array<Google::Apis::ComputeBeta::AllocationSpecificSkuAllocationAllocatedInstancePropertiesAllocatedDisk>
Specifies amount of local ssd to reserve with each instance.
-
#machine_type ⇒ String
Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory.
-
#min_cpu_platform ⇒ String
Minimum cpu platform the allocation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AllocationSpecificSkuAllocationAllocatedInstanceProperties
constructor
A new instance of AllocationSpecificSkuAllocationAllocatedInstanceProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AllocationSpecificSkuAllocationAllocatedInstanceProperties
Returns a new instance of AllocationSpecificSkuAllocationAllocatedInstanceProperties
1449 1450 1451 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1449 def initialize(**args) update!(**args) end |
Instance Attribute Details
#guest_accelerators ⇒ Array<Google::Apis::ComputeBeta::AcceleratorConfig>
Specifies accelerator type and count.
Corresponds to the JSON property guestAccelerators
1429 1430 1431 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1429 def guest_accelerators @guest_accelerators end |
#local_ssds ⇒ Array<Google::Apis::ComputeBeta::AllocationSpecificSkuAllocationAllocatedInstancePropertiesAllocatedDisk>
Specifies amount of local ssd to reserve with each instance. The type of disk
is local-ssd.
Corresponds to the JSON property localSsds
1435 1436 1437 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1435 def local_ssds @local_ssds end |
#machine_type ⇒ String
Specifies type of machine (name only) which has fixed number of vCPUs and
fixed amount of memory. This also includes specifying custom machine type
following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
Corresponds to the JSON property machineType
1442 1443 1444 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1442 def machine_type @machine_type end |
#min_cpu_platform ⇒ String
Minimum cpu platform the allocation.
Corresponds to the JSON property minCpuPlatform
1447 1448 1449 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1447 def min_cpu_platform @min_cpu_platform end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1454 1455 1456 1457 1458 1459 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1454 def update!(**args) @guest_accelerators = args[:guest_accelerators] if args.key?(:guest_accelerators) @local_ssds = args[:local_ssds] if args.key?(:local_ssds) @machine_type = args[:machine_type] if args.key?(:machine_type) @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform) end |