Class Deployment (1.4.0)

Deployment(mapping=None, *, ignore_unknown_fields=False, **kwargs)

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

Attributes

NameDescription
files Mapping[str, google.cloud.appengine_admin_v1.types.FileInfo]
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.
container google.cloud.appengine_admin_v1.types.ContainerInfo
The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
zip_ google.cloud.appengine_admin_v1.types.ZipInfo
The zip file for this deployment, if this is a zip deployment.
cloud_build_options google.cloud.appengine_admin_v1.types.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.

Inheritance

builtins.object > proto.message.Message > Deployment

Classes

FilesEntry

FilesEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The abstract base class for a message.

Parameters
NameDescription
kwargs dict

Keys and values corresponding to the fields of the message.

mapping Union[dict, `.Message`]

A dictionary or message to be used to determine the values for this message.

ignore_unknown_fields Optional(bool)

If True, do not raise errors for unknown fields. Only applied if mapping is a mapping type or there are keyword parameters.