[][src]Struct google_dataproc1::ManagedCluster

pub struct ManagedCluster {
    pub cluster_name: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub config: Option<ClusterConfig>,
}

Cluster that is managed by the workflow.

This type is not used in any activity, and only used as part of another schema.

Fields

cluster_name: Option<String>

Required. The cluster name prefix. A unique cluster name will be formed by appending a random suffix.The name must contain only lower-case letters (a-z), numbers (0-9), and hyphens (-). Must begin with a letter. Cannot begin or end with hyphen. Must consist of between 2 and 35 characters.

labels: Option<HashMap<String, String>>

Optional. The labels to associate with this cluster.Label keys must be between 1 and 63 characters long, and must conform to the following PCRE regular expression: \p{Ll}\p{Lo}{0,62}Label values must be between 1 and 63 characters long, and must conform to the following PCRE regular expression: \p{Ll}\p{Lo}\p{N}_-{0,63}No more than 32 labels can be associated with a given cluster.

config: Option<ClusterConfig>

Required. The cluster configuration.

Trait Implementations

impl Part for ManagedCluster[src]

impl Clone for ManagedCluster[src]

impl Default for ManagedCluster[src]

impl Debug for ManagedCluster[src]

impl Serialize for ManagedCluster[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<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

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