Class: Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocation

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb

Overview

This allocation type allows to pre allocate specific instance configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AllocationSpecificSkuAllocation

Returns a new instance of AllocationSpecificSkuAllocation



1429
1430
1431
# File 'generated/google/apis/compute_alpha/classes.rb', line 1429

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#countFixnum

Specifies number of resources that are allocated. Corresponds to the JSON property count

Returns:

  • (Fixnum)


1417
1418
1419
# File 'generated/google/apis/compute_alpha/classes.rb', line 1417

def count
  @count
end

#in_use_countFixnum

[OutputOnly] Indicates how many resource are in use. Corresponds to the JSON property inUseCount

Returns:

  • (Fixnum)


1422
1423
1424
# File 'generated/google/apis/compute_alpha/classes.rb', line 1422

def in_use_count
  @in_use_count
end

#instance_propertiesGoogle::Apis::ComputeAlpha::AllocationSpecificSkuAllocationAllocatedInstanceProperties

Properties of the SKU instances being reserved. Corresponds to the JSON property instanceProperties



1427
1428
1429
# File 'generated/google/apis/compute_alpha/classes.rb', line 1427

def instance_properties
  @instance_properties
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1434
1435
1436
1437
1438
# File 'generated/google/apis/compute_alpha/classes.rb', line 1434

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