Show / Hide Table of Contents

Class Deployment

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

Inheritance
object
Deployment
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Appengine.v1beta.Data
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class Deployment : IDirectResponseSchema

Properties

Build

Google Cloud Build build information. Only applicable for instances running in the App Engine flexible environment.

Declaration
[JsonProperty("build")]
public virtual BuildInfo Build { get; set; }
Property Value
Type Description
BuildInfo

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX