Class: Google::Apis::ContainerV1::ReservationAffinity
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::ReservationAffinity
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/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.
Constructor Details
#initialize(**args) ⇒ ReservationAffinity
Returns a new instance of ReservationAffinity.
6023 6024 6025 |
# File 'lib/google/apis/container_v1/classes.rb', line 6023 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
6009 6010 6011 |
# File 'lib/google/apis/container_v1/classes.rb', line 6009 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 "compute.googleapis.com/reservation-name"
as the key and specify the name of your reservation as its value.
Corresponds to the JSON property key
6016 6017 6018 |
# File 'lib/google/apis/container_v1/classes.rb', line 6016 def key @key end |
#values ⇒ Array<String>
Corresponds to the label value(s) of reservation resource(s).
Corresponds to the JSON property values
6021 6022 6023 |
# File 'lib/google/apis/container_v1/classes.rb', line 6021 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6028 6029 6030 6031 6032 |
# File 'lib/google/apis/container_v1/classes.rb', line 6028 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 |