[][src]Struct google_compute1::NodeTemplate

pub struct NodeTemplate {
    pub status: Option<String>,
    pub server_binding: Option<ServerBinding>,
    pub kind: Option<String>,
    pub node_type: Option<String>,
    pub description: Option<String>,
    pub node_type_flexibility: Option<NodeTemplateNodeTypeFlexibility>,
    pub region: Option<String>,
    pub node_affinity_labels: Option<HashMap<String, String>>,
    pub self_link: Option<String>,
    pub creation_timestamp: Option<String>,
    pub id: Option<String>,
    pub status_message: Option<String>,
    pub name: Option<String>,
}

Represent a sole-tenant Node Template resource.

You can use a template to define properties for nodes in a node group. For more information, read Creating node groups and instances. (== resource_for beta.nodeTemplates ==) (== resource_for v1.nodeTemplates ==) (== NextID: 16 ==)

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

status: Option<String>

[Output Only] The status of the node template. One of the following values: CREATING, READY, and DELETING.

server_binding: Option<ServerBinding>

Sets the binding properties for the physical server. Valid values include:

  • Default RESTART_NODE_ON_ANY_SERVER: Restarts VMs on any available physical server
  • RESTART_NODE_ON_MINIMAL_SERVER: Restarts VMs on the same physical server whenever possible

See Sole-tenant node options for more information.

kind: Option<String>

[Output Only] The type of the resource. Always compute#nodeTemplate for node templates.

node_type: Option<String>

The node type to use for nodes group that are created from this template.

description: Option<String>

An optional description of this resource. Provide this property when you create the resource.

node_type_flexibility: Option<NodeTemplateNodeTypeFlexibility>

The flexible properties of the desired node type. Node groups that use this node template will create nodes of a type that matches these properties.

This field is mutually exclusive with the node_type property; you can only define one or the other, but not both.

region: Option<String>

[Output Only] The name of the region where the node template resides, such as us-central1.

node_affinity_labels: Option<HashMap<String, String>>

Labels to use for node affinity, which will be used in instance scheduling.

self_link: Option<String>

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

creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

id: Option<String>

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

status_message: Option<String>

[Output Only] An optional, human-readable explanation of the status.

name: Option<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.

Trait Implementations

impl Resource for NodeTemplate[src]

impl ResponseResult for NodeTemplate[src]

impl RequestValue for NodeTemplate[src]

impl Default for NodeTemplate[src]

impl Clone for NodeTemplate[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for NodeTemplate[src]

impl Serialize for NodeTemplate[src]

impl<'de> Deserialize<'de> for NodeTemplate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]