Class: Google::Apis::ComputeBeta::NodeGroupNode
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::NodeGroupNode
- 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
Instance Attribute Summary collapse
-
#accelerators ⇒ Array<Google::Apis::ComputeBeta::AcceleratorConfig>
Accelerators for this node.
-
#cpu_overcommit_type ⇒ String
CPU overcommit.
-
#disks ⇒ Array<Google::Apis::ComputeBeta::LocalDisk>
Local disk configurations.
-
#instances ⇒ Array<String>
Instances scheduled on this node.
-
#name ⇒ String
The name of the node.
-
#node_type ⇒ String
The type of this node.
-
#server_binding ⇒ Google::Apis::ComputeBeta::ServerBinding
Binding properties for the physical server.
-
#server_id ⇒ String
Server ID associated with this node.
-
#status ⇒ String
Corresponds to the JSON property
status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NodeGroupNode
constructor
A new instance of NodeGroupNode.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NodeGroupNode
Returns a new instance of NodeGroupNode.
21154 21155 21156 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21154 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accelerators ⇒ Array<Google::Apis::ComputeBeta::AcceleratorConfig>
Accelerators for this node.
Corresponds to the JSON property accelerators
21112 21113 21114 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21112 def accelerators @accelerators end |
#cpu_overcommit_type ⇒ String
CPU overcommit.
Corresponds to the JSON property cpuOvercommitType
21117 21118 21119 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21117 def cpu_overcommit_type @cpu_overcommit_type end |
#disks ⇒ Array<Google::Apis::ComputeBeta::LocalDisk>
Local disk configurations.
Corresponds to the JSON property disks
21122 21123 21124 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21122 def disks @disks end |
#instances ⇒ Array<String>
Instances scheduled on this node.
Corresponds to the JSON property instances
21127 21128 21129 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21127 def instances @instances end |
#name ⇒ String
The name of the node.
Corresponds to the JSON property name
21132 21133 21134 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21132 def name @name end |
#node_type ⇒ String
The type of this node.
Corresponds to the JSON property nodeType
21137 21138 21139 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21137 def node_type @node_type end |
#server_binding ⇒ Google::Apis::ComputeBeta::ServerBinding
Binding properties for the physical server.
Corresponds to the JSON property serverBinding
21142 21143 21144 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21142 def server_binding @server_binding end |
#server_id ⇒ String
Server ID associated with this node.
Corresponds to the JSON property serverId
21147 21148 21149 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21147 def server_id @server_id end |
#status ⇒ String
Corresponds to the JSON property status
21152 21153 21154 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21152 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 |
# File 'lib/google/apis/compute_beta/classes.rb', line 21159 def update!(**args) @accelerators = args[:accelerators] if args.key?(:accelerators) @cpu_overcommit_type = args[:cpu_overcommit_type] if args.key?(:cpu_overcommit_type) @disks = args[:disks] if args.key?(:disks) @instances = args[:instances] if args.key?(:instances) @name = args[:name] if args.key?(:name) @node_type = args[:node_type] if args.key?(:node_type) @server_binding = args[:server_binding] if args.key?(:server_binding) @server_id = args[:server_id] if args.key?(:server_id) @status = args[:status] if args.key?(:status) end |