Show / Hide Table of Contents

Class NodeType

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. (== resource_for {$api_version}.nodeTypes ==)

Inheritance
System.Object
NodeType
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class NodeType : IDirectResponseSchema

Properties

CpuPlatform

[Output Only] The CPU platform used by this node type.

Declaration
[JsonProperty("cpuPlatform")]
public virtual string CpuPlatform { get; set; }
Property Value
Type Description
System.String

CreationTimestamp

[Output Only] Creation timestamp in RFC3339 text format.

Declaration
[JsonProperty("creationTimestamp")]
public virtual string CreationTimestamp { get; set; }
Property Value
Type Description
System.String

Deprecated

[Output Only] The deprecation status associated with this node type.

Declaration
[JsonProperty("deprecated")]
public virtual DeprecationStatus Deprecated { get; set; }
Property Value
Type Description
DeprecationStatus

Description

[Output Only] An optional textual description of the resource.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GuestCpus

[Output Only] The number of virtual CPUs that are available to the node type.

Declaration
[JsonProperty("guestCpus")]
public virtual int? GuestCpus { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Id

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

Declaration
[JsonProperty("id")]
public virtual ulong? Id { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

Kind

[Output Only] The type of the resource. Always compute#nodeType for node types.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

LocalSsdGb

[Output Only] Local SSD available to the node type, defined in GB.

Declaration
[JsonProperty("localSsdGb")]
public virtual int? LocalSsdGb { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MemoryMb

[Output Only] The amount of physical memory available to the node type, defined in MB.

Declaration
[JsonProperty("memoryMb")]
public virtual int? MemoryMb { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Name

[Output Only] Name of the resource.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

SelfLink

[Output Only] Server-defined URL for the resource.

Declaration
[JsonProperty("selfLink")]
public virtual string SelfLink { get; set; }
Property Value
Type Description
System.String

Zone

[Output Only] The name of the zone where the node type resides, such as us-central1-a.

Declaration
[JsonProperty("zone")]
public virtual string Zone { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top