Class: Google::Apis::ComputeBeta::NodeGroup
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::NodeGroup
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Overview
Represent a sole-tenant Node Group resource. A sole-tenant node is a physical server that is dedicated to hosting VM instances only for your specific project. Use sole-tenant nodes to keep your instances physically separated from instances in other projects, or to group your instances together on the same host hardware. For more information, read Sole-tenant nodes. (== resource_for beta.nodeGroups ==) (== resource_for v1. nodeGroups ==) NextID: 15
Instance Attribute Summary collapse
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#description ⇒ String
An optional description of this resource.
-
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource.
-
#kind ⇒ String
[Output Only] The type of the resource.
-
#name ⇒ String
The name of the resource, provided by the client when initially creating the resource.
-
#node_template ⇒ String
The URL of the node template to which this node group belongs.
-
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
-
#size ⇒ Fixnum
[Output Only] The total number of nodes in the node group.
-
#status ⇒ String
Corresponds to the JSON property
status
. -
#zone ⇒ String
[Output Only] The name of the zone where the node group resides, such as us- central1-a.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NodeGroup
constructor
A new instance of NodeGroup.
-
#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) ⇒ NodeGroup
Returns a new instance of NodeGroup
17223 17224 17225 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17223 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
Corresponds to the JSON property creationTimestamp
17166 17167 17168 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17166 def @creation_timestamp end |
#description ⇒ String
An optional description of this resource. Provide this property when you
create the resource.
Corresponds to the JSON property description
17172 17173 17174 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17172 def description @description end |
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource. This identifier is
defined by the server.
Corresponds to the JSON property id
17178 17179 17180 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17178 def id @id end |
#kind ⇒ String
[Output Only] The type of the resource. Always compute#nodeGroup for node
group.
Corresponds to the JSON property kind
17184 17185 17186 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17184 def kind @kind end |
#name ⇒ String
The name of the resource, provided by the client when initially creating the
resource. The resource name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and match the
regular expression [a-z]([-a-z0-9]*[a-z0-9])?
which means the first
character must be a lowercase letter, and all following characters must be a
dash, lowercase letter, or digit, except the last character, which cannot be a
dash.
Corresponds to the JSON property name
17195 17196 17197 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17195 def name @name end |
#node_template ⇒ String
The URL of the node template to which this node group belongs.
Corresponds to the JSON property nodeTemplate
17200 17201 17202 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17200 def node_template @node_template end |
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
Corresponds to the JSON property selfLink
17205 17206 17207 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17205 def self_link @self_link end |
#size ⇒ Fixnum
[Output Only] The total number of nodes in the node group.
Corresponds to the JSON property size
17210 17211 17212 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17210 def size @size end |
#status ⇒ String
Corresponds to the JSON property status
17215 17216 17217 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17215 def status @status end |
#zone ⇒ String
[Output Only] The name of the zone where the node group resides, such as us-
central1-a.
Corresponds to the JSON property zone
17221 17222 17223 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17221 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 |
# File 'generated/google/apis/compute_beta/classes.rb', line 17228 def update!(**args) @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp) @description = args[:description] if args.key?(:description) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @node_template = args[:node_template] if args.key?(:node_template) @self_link = args[:self_link] if args.key?(:self_link) @size = args[:size] if args.key?(:size) @status = args[:status] if args.key?(:status) @zone = args[:zone] if args.key?(:zone) end |