DeploymentResponse

data class DeploymentResponse(val build: BuildInfoResponse, val cloudBuildOptions: CloudBuildOptionsResponse, val container: ContainerInfoResponse, val files: Map<String, String>, val zip: ZipInfoResponse)

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

Constructors

Link copied to clipboard

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard

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.

Link copied to clipboard

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

Link copied to clipboard

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.

Link copied to clipboard

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