Struct google_deploymentmanager2::DeploymentsStopRequest [] [src]

pub struct DeploymentsStopRequest {
    pub fingerprint: Option<String>,
}

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

Specifies a fingerprint for stop() requests. A fingerprint is a randomly generated value that must be provided in stop() requests to perform optimistic locking. This ensures optimistic concurrency so that the deployment does not have conflicting requests (e.g. if someone attempts to make a new update request while another user attempts to stop an ongoing update request, this would prevent a collision).

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

Trait Implementations

impl Debug for DeploymentsStopRequest
[src]

Formats the value using the given formatter.

impl Clone for DeploymentsStopRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for DeploymentsStopRequest
[src]

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

impl RequestValue for DeploymentsStopRequest
[src]