Class: Google::Apis::DataprocV1::ReservationAffinity

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb

Overview

Reservation Affinity for consuming Zonal reservation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReservationAffinity

Returns a new instance of ReservationAffinity.



4013
4014
4015
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4013

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#consume_reservation_typeString

Optional. Type of reservation to consume Corresponds to the JSON property consumeReservationType

Returns:

  • (String)


4001
4002
4003
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4001

def consume_reservation_type
  @consume_reservation_type
end

#keyString

Optional. Corresponds to the label key of reservation resource. Corresponds to the JSON property key

Returns:

  • (String)


4006
4007
4008
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4006

def key
  @key
end

#valuesArray<String>

Optional. Corresponds to the label values of reservation resource. Corresponds to the JSON property values

Returns:

  • (Array<String>)


4011
4012
4013
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4011

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4018
4019
4020
4021
4022
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4018

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