Class: Google::Apis::ComputeBeta::SchedulingNodeAffinity
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::SchedulingNodeAffinity
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ SchedulingNodeAffinity
Returns a new instance of SchedulingNodeAffinity
23490 23491 23492 |
# File 'generated/google/apis/compute_beta/classes.rb', line 23490 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
23478 23479 23480 |
# File 'generated/google/apis/compute_beta/classes.rb', line 23478 def key @key end |
#operator ⇒ String
Defines the operation of node selection.
Corresponds to the JSON property operator
23483 23484 23485 |
# File 'generated/google/apis/compute_beta/classes.rb', line 23483 def operator @operator end |
#values ⇒ Array<String>
Corresponds to the label values of Node resource.
Corresponds to the JSON property values
23488 23489 23490 |
# File 'generated/google/apis/compute_beta/classes.rb', line 23488 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23495 23496 23497 23498 23499 |
# File 'generated/google/apis/compute_beta/classes.rb', line 23495 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 |