Struct google_appengine1_beta4::Deployment [] [src]

pub struct Deployment {
    pub files: Option<HashMap<String, FileInfo>>,
    pub source_references: Option<Vec<SourceReference>>,
    pub container: Option<ContainerInfo>,
}

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.

Origin of the source code for this deployment. There can be more than one source reference per version if source code is distributed among multiple repositories.

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

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]