Class: Google::Apis::ContainerV1beta1::ReservationAffinity
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::ReservationAffinity
- Defined in:
- generated/google/apis/container_v1beta1/classes.rb,
generated/google/apis/container_v1beta1/representations.rb,
generated/google/apis/container_v1beta1/representations.rb
Overview
ReservationAffinity is the configuration of desired reservation which instances could take capacity from.
Instance Attribute Summary collapse
-
#consume_reservation_type ⇒ String
Corresponds to the type of reservation consumption.
-
#key ⇒ String
Corresponds to the label key of a reservation resource.
-
#values ⇒ Array<String>
Corresponds to the label value(s) of reservation resource(s).
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReservationAffinity
constructor
A new instance of ReservationAffinity.
-
#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) ⇒ ReservationAffinity
Returns a new instance of ReservationAffinity.
3262 3263 3264 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 3262 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consume_reservation_type ⇒ String
Corresponds to the type of reservation consumption.
Corresponds to the JSON property consumeReservationType
3248 3249 3250 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 3248 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
3255 3256 3257 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 3255 def key @key end |
#values ⇒ Array<String>
Corresponds to the label value(s) of reservation resource(s).
Corresponds to the JSON property values
3260 3261 3262 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 3260 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3267 3268 3269 3270 3271 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 3267 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 |