Class: Google::Apis::DataprocV1::ReservationAffinity
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::ReservationAffinity
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataproc_v1/classes.rb,
generated/google/apis/dataproc_v1/representations.rb,
generated/google/apis/dataproc_v1/representations.rb
Overview
Reservation Affinity for consuming Zonal reservation.
Instance Attribute Summary collapse
-
#consume_reservation_type ⇒ String
Optional.
-
#key ⇒ String
Optional.
-
#values ⇒ Array<String>
Optional.
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.
2760 2761 2762 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2760 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consume_reservation_type ⇒ String
Optional. Type of reservation to consume
Corresponds to the JSON property consumeReservationType
2748 2749 2750 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2748 def consume_reservation_type @consume_reservation_type end |
#key ⇒ String
Optional. Corresponds to the label key of reservation resource.
Corresponds to the JSON property key
2753 2754 2755 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2753 def key @key end |
#values ⇒ Array<String>
Optional. Corresponds to the label values of reservation resource.
Corresponds to the JSON property values
2758 2759 2760 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2758 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2765 2766 2767 2768 2769 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2765 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 |