Show / Hide Table of Contents

Class Node

A TPU instance.

Inheritance
object
Node
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.TPU.v1.Data
Assembly: Google.Apis.TPU.v1.dll
Syntax
public class Node : IDirectResponseSchema

Properties

AcceleratorType

Required. The type of hardware accelerators associated with this node.

Declaration
[JsonProperty("acceleratorType")]
public virtual string AcceleratorType { get; set; }
Property Value
Type Description
string

ApiVersion

Output only. The API version that created this Node.

Declaration
[JsonProperty("apiVersion")]
public virtual string ApiVersion { get; set; }
Property Value
Type Description
string

CidrBlock

The CIDR block that the TPU node will use when selecting an IP address. This CIDR block must be a /29 block; the Compute Engine networks API forbids a smaller block, and using a larger block would be wasteful (a node can only consume one IP address). Errors will occur if the CIDR block has already been used for a currently existing TPU node, the CIDR block conflicts with any subnetworks in the user's provided network, or the provided network is peered with another network that is using that CIDR block.

Declaration
[JsonProperty("cidrBlock")]
public virtual string CidrBlock { get; set; }
Property Value
Type Description
string

CreateTime

object representation of CreateTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CreateTimeDateTimeOffset instead.")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
object

CreateTimeDateTimeOffset

DateTimeOffset representation of CreateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? CreateTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

CreateTimeRaw

Output only. The time when the node was created.

Declaration
[JsonProperty("createTime")]
public virtual string CreateTimeRaw { get; set; }
Property Value
Type Description
string

Description

The user-supplied description of the TPU. Maximum of 512 characters.

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

ETag

The ETag of the item.

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

Health

The health status of the TPU node.

Declaration
[JsonProperty("health")]
public virtual string Health { get; set; }
Property Value
Type Description
string

HealthDescription

Output only. If this field is populated, it contains a description of why the TPU Node is unhealthy.

Declaration
[JsonProperty("healthDescription")]
public virtual string HealthDescription { get; set; }
Property Value
Type Description
string

IpAddress

Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.

Declaration
[JsonProperty("ipAddress")]
public virtual string IpAddress { get; set; }
Property Value
Type Description
string

Labels

Resource labels to represent user-provided metadata.

Declaration
[JsonProperty("labels")]
public virtual IDictionary<string, string> Labels { get; set; }
Property Value
Type Description
IDictionary<string, string>

Name

Output only. Immutable. The name of the TPU

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

Network

The name of a network they wish to peer the TPU node to. It must be a preexisting Compute Engine network inside of the project on which this API has been activated. If none is provided, "default" will be used.

Declaration
[JsonProperty("network")]
public virtual string Network { get; set; }
Property Value
Type Description
string

NetworkEndpoints

Output only. The network endpoints where TPU workers can be accessed and sent work. It is recommended that Tensorflow clients of the node reach out to the 0th entry in this map first.

Declaration
[JsonProperty("networkEndpoints")]
public virtual IList<NetworkEndpoint> NetworkEndpoints { get; set; }
Property Value
Type Description
IList<NetworkEndpoint>

Port

Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.

Declaration
[JsonProperty("port")]
public virtual string Port { get; set; }
Property Value
Type Description
string

SchedulingConfig

The scheduling options for this node.

Declaration
[JsonProperty("schedulingConfig")]
public virtual SchedulingConfig SchedulingConfig { get; set; }
Property Value
Type Description
SchedulingConfig

ServiceAccount

Output only. The service account used to run the tensor flow services within the node. To share resources, including Google Cloud Storage data, with the Tensorflow job running in the Node, this account must have permissions to that data.

Declaration
[JsonProperty("serviceAccount")]
public virtual string ServiceAccount { get; set; }
Property Value
Type Description
string

State

Output only. The current state for the TPU Node.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
string

Symptoms

Output only. The Symptoms that have occurred to the TPU Node.

Declaration
[JsonProperty("symptoms")]
public virtual IList<Symptom> Symptoms { get; set; }
Property Value
Type Description
IList<Symptom>

TensorflowVersion

Required. The version of Tensorflow running in the Node.

Declaration
[JsonProperty("tensorflowVersion")]
public virtual string TensorflowVersion { get; set; }
Property Value
Type Description
string

UseServiceNetworking

Whether the VPC peering for the node is set up through Service Networking API. The VPC Peering should be set up before provisioning the node. If this field is set, cidr_block field should not be specified. If the network, that you want to peer the TPU Node to, is Shared VPC networks, the node must be created with this this field enabled.

Declaration
[JsonProperty("useServiceNetworking")]
public virtual bool? UseServiceNetworking { get; set; }
Property Value
Type Description
bool?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX