Class Deployment
Code and application artifacts used to deploy a version to App Engine.
Implements
Inherited Members
Namespace: Google.Apis.Appengine.v1.Data
Assembly: Google.Apis.Appengine.v1.dll
Syntax
public class Deployment : IDirectResponseSchema
Properties
CloudBuildOptions
Options for any Google Cloud Build builds created as a part of this deployment.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.
Declaration
[JsonProperty("cloudBuildOptions")]
public virtual CloudBuildOptions CloudBuildOptions { get; set; }
Property Value
Type | Description |
---|---|
CloudBuildOptions |
Container
The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
Declaration
[JsonProperty("container")]
public virtual ContainerInfo Container { get; set; }
Property Value
Type | Description |
---|---|
ContainerInfo |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Files
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.
Declaration
[JsonProperty("files")]
public virtual IDictionary<string, FileInfo> Files { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, FileInfo> |
Zip
The zip file for this deployment, if this is a zip deployment.
Declaration
[JsonProperty("zip")]
public virtual ZipInfo Zip { get; set; }
Property Value
Type | Description |
---|---|
ZipInfo |