[][src]Struct google_deploymentmanager2::Deployment

pub struct Deployment {
    pub update_time: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub labels: Option<Vec<DeploymentLabelEntry>>,
    pub update: Option<DeploymentUpdate>,
    pub manifest: Option<String>,
    pub insert_time: Option<String>,
    pub fingerprint: Option<String>,
    pub operation: Option<Operation>,
    pub id: Option<String>,
    pub self_link: Option<String>,
    pub target: Option<TargetConfiguration>,
}

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

update_time: Option<String>

Output only. Update timestamp in RFC3339 text format.

description: Option<String>

An optional user-provided description of the deployment.

name: Option<String>

Name of the resource; provided by the client when the resource is created. The 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? 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.

labels: Option<Vec<DeploymentLabelEntry>>

Map of labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression: a-z? Label values must be between 0 and 63 characters long and must conform to the regular expression (a-z?)?

update: Option<DeploymentUpdate>

Output only. If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here.

manifest: Option<String>

Output only. URL of the manifest representing the last manifest that was successfully deployed.

insert_time: Option<String>

Output only. Creation timestamp in RFC3339 text format.

fingerprint: Option<String>

Provides a fingerprint to use in requests to modify a deployment, such as update(), stop(), and cancelPreview() requests. A fingerprint is a randomly generated value that must be provided with update(), stop(), and cancelPreview() requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time.

The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform a get() request to a deployment.

operation: Option<Operation>

Output only. The Operation that most recently ran, or is currently running, on this deployment.

id: Option<String>

no description provided

self_link: Option<String>

Output only. Server defined URL for the resource.

target: Option<TargetConfiguration>

[Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates.

Trait Implementations

impl Resource for Deployment[src]

impl ResponseResult for Deployment[src]

impl RequestValue for Deployment[src]

impl Clone for Deployment[src]

impl Default for Deployment[src]

impl Debug for Deployment[src]

impl Serialize for Deployment[src]

impl<'de> Deserialize<'de> for Deployment[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]