Class: Google::Apis::ComputeBeta::NodeType
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::NodeType
- 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
Overview
Represent a sole-tenant Node Type resource. Each node within a node group must have a node type. A node type specifies the total amount of cores and memory for that node. Currently, the only available node type is n1-node-96-624 node type that has 96 vCPUs and 624 GB of memory, available in multiple zones. For more information read Node types.
Instance Attribute Summary collapse
-
#cpu_platform ⇒ String
[Output Only] The CPU platform used by this node type.
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#deprecated ⇒ Google::Apis::ComputeBeta::DeprecationStatus
Deprecation status for a public resource.
-
#description ⇒ String
[Output Only] An optional textual description of the resource.
-
#guest_cpus ⇒ Fixnum
[Output Only] The number of virtual CPUs that are available to the node type.
-
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource.
-
#kind ⇒ String
[Output Only] The type of the resource.
-
#local_ssd_gb ⇒ Fixnum
[Output Only] Local SSD available to the node type, defined in GB.
-
#memory_mb ⇒ Fixnum
[Output Only] The amount of physical memory available to the node type, defined in MB.
-
#name ⇒ String
[Output Only] Name of the resource.
-
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
-
#zone ⇒ String
[Output Only] The name of the zone where the node type resides, such as us- central1-a.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NodeType
constructor
A new instance of NodeType.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NodeType
Returns a new instance of NodeType.
29033 29034 29035 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29033 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpu_platform ⇒ String
[Output Only] The CPU platform used by this node type.
Corresponds to the JSON property cpuPlatform
28973 28974 28975 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28973 def cpu_platform @cpu_platform end |
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
Corresponds to the JSON property creationTimestamp
28978 28979 28980 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28978 def @creation_timestamp end |
#deprecated ⇒ Google::Apis::ComputeBeta::DeprecationStatus
Deprecation status for a public resource.
Corresponds to the JSON property deprecated
28983 28984 28985 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28983 def deprecated @deprecated end |
#description ⇒ String
[Output Only] An optional textual description of the resource.
Corresponds to the JSON property description
28988 28989 28990 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28988 def description @description end |
#guest_cpus ⇒ Fixnum
[Output Only] The number of virtual CPUs that are available to the node type.
Corresponds to the JSON property guestCpus
28993 28994 28995 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28993 def guest_cpus @guest_cpus end |
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource. This identifier is
defined by the server.
Corresponds to the JSON property id
28999 29000 29001 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28999 def id @id end |
#kind ⇒ String
[Output Only] The type of the resource. Always compute#nodeType for node types.
Corresponds to the JSON property kind
29004 29005 29006 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29004 def kind @kind end |
#local_ssd_gb ⇒ Fixnum
[Output Only] Local SSD available to the node type, defined in GB.
Corresponds to the JSON property localSsdGb
29009 29010 29011 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29009 def local_ssd_gb @local_ssd_gb end |
#memory_mb ⇒ Fixnum
[Output Only] The amount of physical memory available to the node type,
defined in MB.
Corresponds to the JSON property memoryMb
29015 29016 29017 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29015 def memory_mb @memory_mb end |
#name ⇒ String
[Output Only] Name of the resource.
Corresponds to the JSON property name
29020 29021 29022 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29020 def name @name end |
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
Corresponds to the JSON property selfLink
29025 29026 29027 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29025 def self_link @self_link end |
#zone ⇒ String
[Output Only] The name of the zone where the node type resides, such as us-
central1-a.
Corresponds to the JSON property zone
29031 29032 29033 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29031 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29038 def update!(**args) @cpu_platform = args[:cpu_platform] if args.key?(:cpu_platform) @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp) @deprecated = args[:deprecated] if args.key?(:deprecated) @description = args[:description] if args.key?(:description) @guest_cpus = args[:guest_cpus] if args.key?(:guest_cpus) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @local_ssd_gb = args[:local_ssd_gb] if args.key?(:local_ssd_gb) @memory_mb = args[:memory_mb] if args.key?(:memory_mb) @name = args[:name] if args.key?(:name) @self_link = args[:self_link] if args.key?(:self_link) @zone = args[:zone] if args.key?(:zone) end |