Struct google_appengine1::Deployment [] [src]

pub struct Deployment {
    pub files: Option<HashMap<String, FileInfo>>,
    pub container: Option<ContainerInfo>,
    pub zip: Option<ZipInfo>,
}

Code and application artifacts used to deploy a version to App Engine.

This type is not used in any activity, and only used as part of another schema.

Fields

Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.

A Docker image that App Engine uses to run the version. Only applicable for instances in App Engine flexible environment.

The zip file for this deployment, if this is a zip deployment.

Trait Implementations

impl Debug for Deployment
[src]

Formats the value using the given formatter.

impl Clone for Deployment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Deployment
[src]

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

impl Part for Deployment
[src]