Class: Google::Apis::ComputeBeta::AllocationSpecificSkuAllocation
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::AllocationSpecificSkuAllocation
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Overview
This allocation type allows to pre allocate specific instance configuration.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
Specifies number of resources that are allocated.
-
#in_use_count ⇒ Fixnum
[OutputOnly] Indicates how many resource are in use.
-
#instance_properties ⇒ Google::Apis::ComputeBeta::AllocationSpecificSkuAllocationAllocatedInstanceProperties
Properties of the SKU instances being reserved.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AllocationSpecificSkuAllocation
constructor
A new instance of AllocationSpecificSkuAllocation.
-
#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) ⇒ AllocationSpecificSkuAllocation
Returns a new instance of AllocationSpecificSkuAllocation
1408 1409 1410 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1408 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
Specifies number of resources that are allocated.
Corresponds to the JSON property count
1396 1397 1398 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1396 def count @count end |
#in_use_count ⇒ Fixnum
[OutputOnly] Indicates how many resource are in use.
Corresponds to the JSON property inUseCount
1401 1402 1403 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1401 def in_use_count @in_use_count end |
#instance_properties ⇒ Google::Apis::ComputeBeta::AllocationSpecificSkuAllocationAllocatedInstanceProperties
Properties of the SKU instances being reserved.
Corresponds to the JSON property instanceProperties
1406 1407 1408 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1406 def instance_properties @instance_properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1413 1414 1415 1416 1417 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1413 def update!(**args) @count = args[:count] if args.key?(:count) @in_use_count = args[:in_use_count] if args.key?(:in_use_count) @instance_properties = args[:instance_properties] if args.key?(:instance_properties) end |