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
1410 1411 1412 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1410 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
Specifies number of resources that are allocated.
Corresponds to the JSON property count
1398 1399 1400 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1398 def count @count end |
#in_use_count ⇒ Fixnum
[OutputOnly] Indicates how many resource are in use.
Corresponds to the JSON property inUseCount
1403 1404 1405 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1403 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
1408 1409 1410 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1408 def instance_properties @instance_properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1415 1416 1417 1418 1419 |
# File 'generated/google/apis/compute_beta/classes.rb', line 1415 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 |