Class: Google::Apis::ComputeV1::NodeGroupNode

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ NodeGroupNode

Returns a new instance of NodeGroupNode.



16906
16907
16908
# File 'generated/google/apis/compute_v1/classes.rb', line 16906

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

Instance Attribute Details

#instancesArray<String>

Instances scheduled on this node. Corresponds to the JSON property instances

Returns:

  • (Array<String>)


16884
16885
16886
# File 'generated/google/apis/compute_v1/classes.rb', line 16884

def instances
  @instances
end

#nameString

The name of the node. Corresponds to the JSON property name

Returns:

  • (String)


16889
16890
16891
# File 'generated/google/apis/compute_v1/classes.rb', line 16889

def name
  @name
end

#node_typeString

The type of this node. Corresponds to the JSON property nodeType

Returns:

  • (String)


16894
16895
16896
# File 'generated/google/apis/compute_v1/classes.rb', line 16894

def node_type
  @node_type
end

#server_bindingGoogle::Apis::ComputeV1::ServerBinding

Binding properties for the physical server. Corresponds to the JSON property serverBinding



16899
16900
16901
# File 'generated/google/apis/compute_v1/classes.rb', line 16899

def server_binding
  @server_binding
end

#statusString

Corresponds to the JSON property status

Returns:

  • (String)


16904
16905
16906
# File 'generated/google/apis/compute_v1/classes.rb', line 16904

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16911
16912
16913
16914
16915
16916
16917
# File 'generated/google/apis/compute_v1/classes.rb', line 16911

def update!(**args)
  @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)
  @status = args[:status] if args.key?(:status)
end