Class: Google::Apis::ContainerV1::NodeAffinity

Inherits:
Object
  • Object
show all
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

Specifies the NodeAffinity key, values, and affinity operator according to shared sole tenant node group affinities.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NodeAffinity

Returns a new instance of NodeAffinity.



6040
6041
6042
# File 'lib/google/apis/container_v1/classes.rb', line 6040

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

Instance Attribute Details

#keyString

Key for NodeAffinity. Corresponds to the JSON property key

Returns:

  • (String)


6028
6029
6030
# File 'lib/google/apis/container_v1/classes.rb', line 6028

def key
  @key
end

#operatorString

Operator for NodeAffinity. Corresponds to the JSON property operator

Returns:

  • (String)


6033
6034
6035
# File 'lib/google/apis/container_v1/classes.rb', line 6033

def operator
  @operator
end

#valuesArray<String>

Values for NodeAffinity. Corresponds to the JSON property values

Returns:

  • (Array<String>)


6038
6039
6040
# File 'lib/google/apis/container_v1/classes.rb', line 6038

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6045
6046
6047
6048
6049
# File 'lib/google/apis/container_v1/classes.rb', line 6045

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @operator = args[:operator] if args.key?(:operator)
  @values = args[:values] if args.key?(:values)
end