Struct google_appengine1::Deployment[][src]

pub struct Deployment {
    pub files: Option<HashMap<String, FileInfo>>,
    pub cloud_build_options: Option<CloudBuildOptions>,
    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.

Options for any Google Cloud Build builds created as a part of this deployment.Note that this is orthogonal to the build parameter, where the deployment depends on an already existing cloud build. These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.

The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.

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

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 Part for Deployment
[src]

Auto Trait Implementations

impl Send for Deployment

impl Sync for Deployment