Class: Google::Apis::ComputeAlpha::SchedulingNodeAffinity
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::SchedulingNodeAffinity
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/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.
33011 33012 33013 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 33011 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
32998 32999 33000 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32998 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
33004 33005 33006 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 33004 def operator @operator end |
#values ⇒ Array<String>
Corresponds to the label values of Node resource.
Corresponds to the JSON property values
33009 33010 33011 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 33009 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
33016 33017 33018 33019 33020 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 33016 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 |