Struct google_deploymentmanager2::Deployment[][src]

pub struct Deployment {
    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

An optional user-provided description of the deployment.

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.

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?)?

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

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

Output only. Timestamp when the deployment was created, in RFC3339 text format .

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.

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

Output only. Unique identifier for the resource; defined by the server.

Output only. Self link for the deployment.

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

Trait Implementations

impl Default for Deployment
[src]

Returns the "default value" for a type. Read more

impl Clone for Deployment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Deployment
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Deployment
[src]

impl Resource for Deployment
[src]

impl ResponseResult for Deployment
[src]

Auto Trait Implementations

impl Send for Deployment

impl Sync for Deployment