Struct google_manager1_beta2::api::Deployment[][src]

pub struct Deployment {
    pub creation_date: Option<String>,
    pub description: Option<String>,
    pub modules: Option<HashMap<String, ModuleStatus>>,
    pub name: Option<String>,
    pub overrides: Option<Vec<ParamOverride>>,
    pub state: Option<DeployState>,
    pub template_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

creation_date: Option<String>

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

description: Option<String>

A user-supplied description of this Deployment.

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}

overrides: Option<Vec<ParamOverride>>

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

state: Option<DeployState>

[Output Only] Current status of this deployment.

template_name: Option<String>

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

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

impl RefUnwindSafe for Deployment[src]

impl Send for Deployment[src]

impl Sync for Deployment[src]

impl Unpin for Deployment[src]

impl UnwindSafe for Deployment[src]

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> Instrument 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.