Struct google_tpu1_alpha1::Node[][src]

pub struct Node {
    pub ip_address: Option<String>,
    pub network: Option<String>,
    pub health_description: Option<String>,
    pub description: Option<String>,
    pub service_account: Option<String>,
    pub port: Option<String>,
    pub tensorflow_version: Option<String>,
    pub state: Option<String>,
    pub network_endpoints: Option<Vec<NetworkEndpoint>>,
    pub accelerator_type: Option<String>,
    pub cidr_block: Option<String>,
    pub create_time: Option<String>,
    pub name: Option<String>,
}

A TPU instance.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

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

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

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

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

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. Output only.

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

The version of Tensorflow running in the Node. Required.

The current state for the TPU Node. Output only.

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.

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

The CIDR block that the TPU node will use when selecting //an IP address. This CIDR block must be a /29 block; the GCE 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. Required.

The time when the node was created. Output only.

The immutable name of the TPU

Trait Implementations

impl Default for Node
[src]

Returns the "default value" for a type. Read more

impl Clone for Node
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Node
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Node
[src]

impl ResponseResult for Node
[src]

Auto Trait Implementations

impl Send for Node

impl Sync for Node