Class: Google::Apis::ComputeAlpha::FutureReservationSpecificSkuProperties
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::FutureReservationSpecificSkuProperties
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#instance_properties ⇒ Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties
Properties of the SKU instances being reserved.
-
#source_instance_template ⇒ String
The instance template that will be used to populate the ReservedInstanceProperties of the future reservation Corresponds to the JSON property
sourceInstanceTemplate. -
#total_count ⇒ Fixnum
Total number of instances for which capacity assurance is requested at a future time period.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FutureReservationSpecificSkuProperties
constructor
A new instance of FutureReservationSpecificSkuProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FutureReservationSpecificSkuProperties
Returns a new instance of FutureReservationSpecificSkuProperties.
12431 12432 12433 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 12431 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance_properties ⇒ Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties
Properties of the SKU instances being reserved. Next ID: 9
Corresponds to the JSON property instanceProperties
12417 12418 12419 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 12417 def instance_properties @instance_properties end |
#source_instance_template ⇒ String
The instance template that will be used to populate the
ReservedInstanceProperties of the future reservation
Corresponds to the JSON property sourceInstanceTemplate
12423 12424 12425 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 12423 def source_instance_template @source_instance_template end |
#total_count ⇒ Fixnum
Total number of instances for which capacity assurance is requested at a
future time period.
Corresponds to the JSON property totalCount
12429 12430 12431 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 12429 def total_count @total_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12436 12437 12438 12439 12440 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 12436 def update!(**args) @instance_properties = args[:instance_properties] if args.key?(:instance_properties) @source_instance_template = args[:source_instance_template] if args.key?(:source_instance_template) @total_count = args[:total_count] if args.key?(:total_count) end |