[][src]Struct google_manager1_beta2::Deployment

pub struct Deployment {
    pub state: Option<DeployState>,
    pub description: Option<String>,
    pub template_name: Option<String>,
    pub overrides: Option<Vec<ParamOverride>>,
    pub creation_date: Option<String>,
    pub modules: Option<HashMap<String, ModuleStatus>>,
    pub name: Option<String>,
}

A deployment represents a physical instantiation of a Template.

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

state: Option<DeployState>

[Output Only] Current status of this deployment.

description: Option<String>

A user-supplied description of this Deployment.

template_name: Option<String>

The name of the Template on which this deployment is based.

overrides: Option<Vec<ParamOverride>>

The set of parameter overrides to apply to the corresponding Template before deploying.

creation_date: Option<String>

[Output Only] The time when this deployment was created.

modules: Option<HashMap<String, ModuleStatus>>

[Output Only] List of status for the modules in this deployment.

name: Option<String>

Name of this deployment. The name must conform to the following regular expression: [a-zA-Z0-9-_]{1,64}

Trait Implementations

impl Clone for Deployment[src]

impl Debug for Deployment[src]

impl Default for Deployment[src]

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

impl RequestValue for Deployment[src]

impl Resource for Deployment[src]

impl ResponseResult for Deployment[src]

impl Serialize for Deployment[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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 = 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> Typeable for T where
    T: Any