Class: Google::Apis::ComputeV1::ReservationAffinity
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::ReservationAffinity
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Overview
Specifies the reservations that this instance can consume from.
Instance Attribute Summary collapse
-
#consume_reservation_type ⇒ String
Specifies the type of reservation from which this instance can consume resources: ANY_RESERVATION (default), SPECIFIC_RESERVATION, or NO_RESERVATION.
-
#key ⇒ String
Corresponds to the label key of a reservation resource.
-
#values ⇒ Array<String>
Corresponds to the label values of a reservation resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReservationAffinity
constructor
A new instance of ReservationAffinity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReservationAffinity
Returns a new instance of ReservationAffinity.
24088 24089 24090 |
# File 'generated/google/apis/compute_v1/classes.rb', line 24088 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consume_reservation_type ⇒ String
Specifies the type of reservation from which this instance can consume
resources: ANY_RESERVATION (default), SPECIFIC_RESERVATION, or NO_RESERVATION.
See Consuming reserved instances for examples.
Corresponds to the JSON property consumeReservationType
24074 24075 24076 |
# File 'generated/google/apis/compute_v1/classes.rb', line 24074 def consume_reservation_type @consume_reservation_type end |
#key ⇒ String
Corresponds to the label key of a reservation resource. To target a
SPECIFIC_RESERVATION by name, specify googleapis.com/reservation-name as the
key and specify the name of your reservation as its value.
Corresponds to the JSON property key
24081 24082 24083 |
# File 'generated/google/apis/compute_v1/classes.rb', line 24081 def key @key end |
#values ⇒ Array<String>
Corresponds to the label values of a reservation resource.
Corresponds to the JSON property values
24086 24087 24088 |
# File 'generated/google/apis/compute_v1/classes.rb', line 24086 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
24093 24094 24095 24096 24097 |
# File 'generated/google/apis/compute_v1/classes.rb', line 24093 def update!(**args) @consume_reservation_type = args[:consume_reservation_type] if args.key?(:consume_reservation_type) @key = args[:key] if args.key?(:key) @values = args[:values] if args.key?(:values) end |