Class: Google::Apis::ComputeBeta::FutureReservationSpecificSkuProperties
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::FutureReservationSpecificSkuProperties
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#instance_properties ⇒ Google::Apis::ComputeBeta::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.
10463 10464 10465 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10463 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance_properties ⇒ Google::Apis::ComputeBeta::AllocationSpecificSkuAllocationReservedInstanceProperties
Properties of the SKU instances being reserved. Next ID: 9
Corresponds to the JSON property instanceProperties
10449 10450 10451 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10449 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
10455 10456 10457 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10455 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
10461 10462 10463 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10461 def total_count @total_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10468 10469 10470 10471 10472 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10468 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 |