Class: Google::Apis::ComputeBeta::SchedulingNodeAffinity
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::SchedulingNodeAffinity
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
Node Affinity: the configuration of desired nodes onto which this Instance could be scheduled.
Instance Attribute Summary collapse
-
#key ⇒ String
Corresponds to the label key of Node resource.
-
#operator ⇒ String
Defines the operation of node selection.
-
#values ⇒ Array<String>
Corresponds to the label values of Node resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SchedulingNodeAffinity
constructor
A new instance of SchedulingNodeAffinity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SchedulingNodeAffinity
Returns a new instance of SchedulingNodeAffinity.
32314 32315 32316 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32314 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Corresponds to the label key of Node resource.
Corresponds to the JSON property key
32301 32302 32303 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32301 def key @key end |
#operator ⇒ String
Defines the operation of node selection. Valid operators are IN for affinity
and NOT_IN for anti-affinity.
Corresponds to the JSON property operator
32307 32308 32309 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32307 def operator @operator end |
#values ⇒ Array<String>
Corresponds to the label values of Node resource.
Corresponds to the JSON property values
32312 32313 32314 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32312 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
32319 32320 32321 32322 32323 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32319 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 |