- Resource: Version
- AutomaticScaling
- CpuUtilization
- RequestUtilization
- DiskUtilization
- NetworkUtilization
- StandardSchedulerSettings
- BasicScaling
- ManualScaling
- InboundServiceType
- Network
- Resources
- Volume
- FlexibleRuntimeSettings
- ServingStatus
- UrlMap
- StaticFilesHandler
- ScriptHandler
- ApiEndpointHandler
- SecurityLevel
- LoginRequirement
- AuthFailAction
- RedirectHttpResponseCode
- ErrorHandler
- ErrorCode
- Library
- ApiConfigHandler
- HealthCheck
- ReadinessCheck
- LivenessCheck
- Deployment
- FileInfo
- ContainerInfo
- ZipInfo
- CloudBuildOptions
- EndpointsApiService
- RolloutStrategy
- Entrypoint
- VpcAccessConnector
- EgressSetting
- Methods
Resource: Version
A Version resource is a specific set of source code and configuration files that are deployed into a service.
JSON representation |
---|
{ "name": string, "id": string, "inboundServices": [ enum ( |
Fields | |
---|---|
name |
Full path to the Version resource in the API. Example: Note: This field is used in responses only. Any value specified here in a request is ignored. |
id |
Relative name of the version within the service. Example: |
inboundServices[] |
Before an application can receive email or XMPP messages, the application must be configured to enable the service. |
instanceClass |
Instance class that is used to run this version. Valid values are:
Defaults to |
network |
Extra network settings. Only applicable in the App Engine flexible environment. |
zones[] |
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. |
resources |
Machine resources for this version. Only applicable in the App Engine flexible environment. |
runtime |
Desired runtime. Example: |
runtimeChannel |
The channel of the runtime to use. Only available for some runtimes. Defaults to the |
threadsafe |
Whether multiple requests can be dispatched to this version at once. |
vm |
Whether to deploy this version in a container on a virtual machine. |
flexibleRuntimeSettings |
Settings for App Engine flexible runtimes. |
appEngineApis |
Allows App Engine second generation runtimes to access the legacy bundled services. |
betaSettings |
Metadata settings that are supplied to this version to enable beta runtime features. An object containing a list of |
env |
App Engine execution environment for this version. Defaults to |
servingStatus |
Current serving status of this version. Only the versions with a
|
createdBy |
Email address of the user who created this version. Note: This field is used in responses only. Any value specified here in a request is ignored. |
createTime |
Time that this version was created. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: Note: This field is used in responses only. Any value specified here in a request is ignored. |
diskUsageBytes |
Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk. Note: This field is used in responses only. Any value specified here in a request is ignored. |
runtimeApiVersion |
The version of the API in the given runtime environment. Please see the app.yaml reference for valid values at https://cloud.google.com/appengine/docs/standard/ |
runtimeMainExecutablePath |
The path or name of the app's main executable. |
serviceAccount |
The identity that the deployed version will run as. Admin API will use the App Engine Appspot service account as default if this field is neither provided in app.yaml file nor through CLI flag. |
handlers[] |
An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted. Only returned in |
errorHandlers[] |
Custom static error pages. Limited to 10KB per page. Only returned in |
libraries[] |
Configuration for third-party Python runtime libraries that are required by the application. Only returned in |
apiConfig |
Serving configuration for Google Cloud Endpoints. Only returned in |
envVariables |
Environment variables available to the application. Only returned in An object containing a list of |
buildEnvVariables |
Environment variables available to the build environment. Only returned in An object containing a list of |
defaultExpiration |
Duration that static files should be cached by web proxies and browsers. Only applicable if the corresponding StaticFilesHandler does not specify its own expiration time. Only returned in A duration in seconds with up to nine fractional digits, ending with ' |
healthCheck |
Configures health checking for instances. Unhealthy instances are stopped and replaced with new instances. Only applicable in the App Engine flexible environment. Only returned in |
readinessCheck |
Configures readiness health checking for instances. Unhealthy instances are not put into the backend traffic rotation. Only returned in |
livenessCheck |
Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instances Only returned in |
nobuildFilesRegex |
Files that match this pattern will not be built into this version. Only applicable for Go runtimes. Only returned in |
deployment |
Code and application artifacts that make up this version. Only returned in |
versionUrl |
Serving URL for this version. Example: "https://myversion-dot-myservice-dot-myapp.appspot.com" Note: This field is used in responses only. Any value specified here in a request is ignored. |
endpointsApiService |
Cloud Endpoints configuration. If endpointsApiService is set, the Cloud Endpoints Extensible Service Proxy will be provided to serve the API implemented by the app. |
entrypoint |
The entrypoint for the application. |
vpcAccessConnector |
Enables VPC connectivity for standard apps. |
Union field Defaults to |
|
automaticScaling |
Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic. |
basicScaling |
A service with basic scaling will create an instance when the application receives a request. The instance will be turned down when the app becomes idle. Basic scaling is ideal for work that is intermittent or driven by user activity. |
manualScaling |
A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. Manually scaled versions are sometimes referred to as "backends". |
AutomaticScaling
Automatic scaling is based on request rate, response latencies, and other application metrics.
JSON representation |
---|
{ "coolDownPeriod": string, "cpuUtilization": { object ( |
Fields | |
---|---|
coolDownPeriod |
The time period that the Autoscaler should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment. A duration in seconds with up to nine fractional digits, ending with ' |
cpuUtilization |
Target scaling by CPU usage. |
maxConcurrentRequests |
Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance. Defaults to a runtime-specific value. |
maxIdleInstances |
Maximum number of idle instances that should be maintained for this version. |
maxTotalInstances |
Maximum number of instances that should be started to handle requests for this version. |
maxPendingLatency |
Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it. A duration in seconds with up to nine fractional digits, ending with ' |
minIdleInstances |
Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service. |
minTotalInstances |
Minimum number of running instances that should be maintained for this version. |
minPendingLatency |
Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it. A duration in seconds with up to nine fractional digits, ending with ' |
requestUtilization |
Target scaling by request utilization. |
diskUtilization |
Target scaling by disk usage. |
networkUtilization |
Target scaling by network usage. |
standardSchedulerSettings |
Scheduler settings for standard environment. |
CpuUtilization
Target scaling by CPU usage.
JSON representation |
---|
{ "aggregationWindowLength": string, "targetUtilization": number } |
Fields | |
---|---|
aggregationWindowLength |
Period of time over which CPU utilization is calculated. A duration in seconds with up to nine fractional digits, ending with ' |
targetUtilization |
Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1. |
RequestUtilization
Target scaling by request utilization. Only applicable in the App Engine flexible environment.
JSON representation |
---|
{ "targetRequestCountPerSecond": integer, "targetConcurrentRequests": integer } |
Fields | |
---|---|
targetRequestCountPerSecond |
Target requests per second. |
targetConcurrentRequests |
Target number of concurrent requests. |
DiskUtilization
Target scaling by disk usage. Only applicable in the App Engine flexible environment.
JSON representation |
---|
{ "targetWriteBytesPerSecond": integer, "targetWriteOpsPerSecond": integer, "targetReadBytesPerSecond": integer, "targetReadOpsPerSecond": integer } |
Fields | |
---|---|
targetWriteBytesPerSecond |
Target bytes written per second. |
targetWriteOpsPerSecond |
Target ops written per second. |
targetReadBytesPerSecond |
Target bytes read per second. |
targetReadOpsPerSecond |
Target ops read per seconds. |
NetworkUtilization
Target scaling by network usage. Only applicable in the App Engine flexible environment.
JSON representation |
---|
{ "targetSentBytesPerSecond": integer, "targetSentPacketsPerSecond": integer, "targetReceivedBytesPerSecond": integer, "targetReceivedPacketsPerSecond": integer } |
Fields | |
---|---|
targetSentBytesPerSecond |
Target bytes sent per second. |
targetSentPacketsPerSecond |
Target packets sent per second. |
targetReceivedBytesPerSecond |
Target bytes received per second. |
targetReceivedPacketsPerSecond |
Target packets received per second. |
StandardSchedulerSettings
Scheduler settings for standard environment.
JSON representation |
---|
{ "targetCpuUtilization": number, "targetThroughputUtilization": number, "minInstances": integer, "maxInstances": integer } |
Fields | |
---|---|
targetCpuUtilization |
Target CPU utilization ratio to maintain when scaling. |
targetThroughputUtilization |
Target throughput utilization ratio to maintain when scaling |
minInstances |
Minimum number of instances to run for this version. Set to zero to disable |
maxInstances |
Maximum number of instances to run for this version. Set to zero to disable |
BasicScaling
A service with basic scaling will create an instance when the application receives a request. The instance will be turned down when the app becomes idle. Basic scaling is ideal for work that is intermittent or driven by user activity.
JSON representation |
---|
{ "idleTimeout": string, "maxInstances": integer } |
Fields | |
---|---|
idleTimeout |
Duration of time after the last request that an instance must wait before the instance is shut down. A duration in seconds with up to nine fractional digits, ending with ' |
maxInstances |
Maximum number of instances to create for this version. |
ManualScaling
A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time.
JSON representation |
---|
{ "instances": integer } |
Fields | |
---|---|
instances |
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API |
InboundServiceType
Available inbound services.
Enums | |
---|---|
INBOUND_SERVICE_UNSPECIFIED |
Not specified. |
INBOUND_SERVICE_MAIL |
Allows an application to receive mail. |
INBOUND_SERVICE_MAIL_BOUNCE |
Allows an application to receive email-bound notifications. |
INBOUND_SERVICE_XMPP_ERROR |
Allows an application to receive error stanzas. |
INBOUND_SERVICE_XMPP_MESSAGE |
Allows an application to receive instant messages. |
INBOUND_SERVICE_XMPP_SUBSCRIBE |
Allows an application to receive user subscription POSTs. |
INBOUND_SERVICE_XMPP_PRESENCE |
Allows an application to receive a user's chat presence. |
INBOUND_SERVICE_CHANNEL_PRESENCE |
Registers an application for notifications when a client connects or disconnects from a channel. |
INBOUND_SERVICE_WARMUP |
Enables warmup requests. |
Network
Extra network settings. Only applicable in the App Engine flexible environment.
JSON representation |
---|
{ "forwardedPorts": [ string ], "instanceTag": string, "name": string, "subnetworkName": string, "sessionAffinity": boolean } |
Fields | |
---|---|
forwardedPorts[] |
List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment. |
instanceTag |
Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment. |
name |
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path. Defaults to |
subnetworkName |
Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path. If a subnetwork name is specified, a network name will also be required unless it is for the default network.
If specified, the subnetwork must exist in the same region as the App Engine flexible environment application. |
sessionAffinity |
Enable session affinity. Only applicable in the App Engine flexible environment. |
Resources
Machine resources for a version.
JSON representation |
---|
{
"cpu": number,
"diskGb": number,
"memoryGb": number,
"volumes": [
{
object ( |
Fields | |
---|---|
cpu |
Number of CPU cores needed. |
diskGb |
Disk size (GB) needed. |
memoryGb |
Memory (GB) needed. |
volumes[] |
User specified volumes. |
Volume
Volumes mounted within the app container. Only applicable in the App Engine flexible environment.
JSON representation |
---|
{ "name": string, "volumeType": string, "sizeGb": number } |
Fields | |
---|---|
name |
Unique name for the volume. |
volumeType |
Underlying volume type, e.g. 'tmpfs'. |
sizeGb |
Volume size in gigabytes. |
FlexibleRuntimeSettings
Runtime settings for the App Engine flexible environment.
JSON representation |
---|
{ "operatingSystem": string, "runtimeVersion": string } |
Fields | |
---|---|
operatingSystem |
The operating system of the application runtime. |
runtimeVersion |
The runtime version of an App Engine flexible application. |
ServingStatus
Run states of a version.
Enums | |
---|---|
SERVING_STATUS_UNSPECIFIED |
Not specified. |
SERVING |
Currently serving. Instances are created according to the scaling settings of the version. |
STOPPED |
Disabled. No instances will be created and the scaling settings are ignored until the state of the version changes to SERVING . |
UrlMap
URL pattern and description of how the URL should be handled. App Engine can handle URLs by executing application code or by serving static files uploaded with the version, such as images, CSS, or JavaScript.
JSON representation |
---|
{ "urlRegex": string, "securityLevel": enum ( |
Fields | |
---|---|
urlRegex |
URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path. |
securityLevel |
Security (HTTPS) enforcement for this URL. |
login |
Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment. |
authFailAction |
Action to take when users access resources that require authentication. Defaults to |
redirectHttpResponseCode |
|
Union field handler_type . Type of handler for this URL pattern. handler_type can be only one of the following: |
|
staticFiles |
Returns the contents of a file, such as an image, as the response. |
script |
Executes a script to handle the requests that match this URL pattern. Only the |
apiEndpoint |
Uses API Endpoints to handle requests. |
StaticFilesHandler
Files served directly to the user for a given URL, such as images, CSS stylesheets, or JavaScript source files. Static file handlers describe which files in the application directory are static files, and which URLs serve them.
JSON representation |
---|
{ "path": string, "uploadPathRegex": string, "httpHeaders": { string: string, ... }, "mimeType": string, "expiration": string, "requireMatchingFile": boolean, "applicationReadable": boolean } |
Fields | |
---|---|
path |
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern. |
uploadPathRegex |
Regular expression that matches the file paths for all files that should be referenced by this handler. |
httpHeaders |
HTTP headers to use for all responses from these URLs. An object containing a list of |
mimeType |
MIME type used to serve all files served by this handler. Defaults to file-specific MIME types, which are derived from each file's filename extension. |
expiration |
Time a static file served by this handler should be cached by web proxies and browsers. A duration in seconds with up to nine fractional digits, ending with ' |
requireMatchingFile |
Whether this handler should match the request if the file referenced by the handler does not exist. |
applicationReadable |
Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas. |
ScriptHandler
Executes a script to handle the request that matches the URL pattern.
JSON representation |
---|
{ "scriptPath": string } |
Fields | |
---|---|
scriptPath |
Path to the script from the application root directory. |
ApiEndpointHandler
Uses Google Cloud Endpoints to handle requests.
JSON representation |
---|
{ "scriptPath": string } |
Fields | |
---|---|
scriptPath |
Path to the script from the application root directory. |
SecurityLevel
Methods to enforce security (HTTPS) on a URL.
Enums | |
---|---|
SECURE_UNSPECIFIED |
Not specified. |
SECURE_DEFAULT |
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly. |
SECURE_NEVER |
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL. |
SECURE_OPTIONAL |
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly. |
SECURE_ALWAYS |
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect. |
LoginRequirement
Methods to restrict access to a URL based on login status.
Enums | |
---|---|
LOGIN_UNSPECIFIED |
Not specified. LOGIN_OPTIONAL is assumed. |
LOGIN_OPTIONAL |
Does not require that the user is signed in. |
LOGIN_ADMIN |
If the user is not signed in, the authFailAction is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of authFailAction . If the user is an administrator, the handler proceeds. |
LOGIN_REQUIRED |
If the user has signed in, the handler proceeds normally. Otherwise, the authFailAction is taken. |
AuthFailAction
Actions to take when the user is not logged in.
Enums | |
---|---|
AUTH_FAIL_ACTION_UNSPECIFIED |
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed. |
AUTH_FAIL_ACTION_REDIRECT |
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account. |
AUTH_FAIL_ACTION_UNAUTHORIZED |
Rejects request with a 401 HTTP status code and an error message. |
RedirectHttpResponseCode
Redirect codes.
Enums | |
---|---|
REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED |
Not specified. 302 is assumed. |
REDIRECT_HTTP_RESPONSE_CODE_301 |
301 Moved Permanently code. |
REDIRECT_HTTP_RESPONSE_CODE_302 |
302 Moved Temporarily code. |
REDIRECT_HTTP_RESPONSE_CODE_303 |
303 See Other code. |
REDIRECT_HTTP_RESPONSE_CODE_307 |
307 Temporary Redirect code. |
ErrorHandler
Custom static error page to be served when an error occurs.
JSON representation |
---|
{
"errorCode": enum ( |
Fields | |
---|---|
errorCode |
Error condition this handler applies to. |
staticFile |
Static file content to be served for this error. |
mimeType |
MIME type of file. Defaults to |
ErrorCode
Error codes.
Enums | |
---|---|
ERROR_CODE_UNSPECIFIED |
Not specified. ERROR_CODE_DEFAULT is assumed. |
ERROR_CODE_DEFAULT |
All other error types. |
ERROR_CODE_OVER_QUOTA |
Application has exceeded a resource quota. |
ERROR_CODE_DOS_API_DENIAL |
Client blocked by the application's Denial of Service protection configuration. |
ERROR_CODE_TIMEOUT |
Deadline reached before the application responds. |
Library
Third-party Python runtime library that is required by the application.
JSON representation |
---|
{ "name": string, "version": string } |
Fields | |
---|---|
name |
Name of the library. Example: "django". |
version |
Version of the library to select, or "latest". |
ApiConfigHandler
Google Cloud Endpoints configuration for API handlers.
JSON representation |
---|
{ "authFailAction": enum ( |
Fields | |
---|---|
authFailAction |
Action to take when users access resources that require authentication. Defaults to |
login |
Level of login required to access this resource. Defaults to |
script |
Path to the script from the application root directory. |
securityLevel |
Security (HTTPS) enforcement for this URL. |
url |
URL to serve the endpoint at. |
HealthCheck
Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Only applicable for instances in App Engine flexible environment.
JSON representation |
---|
{ "disableHealthCheck": boolean, "host": string, "healthyThreshold": integer, "unhealthyThreshold": integer, "restartThreshold": integer, "checkInterval": string, "timeout": string } |
Fields | |
---|---|
disableHealthCheck |
Whether to explicitly disable health checks for this instance. |
host |
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com" |
healthyThreshold |
Number of consecutive successful health checks required before receiving traffic. |
unhealthyThreshold |
Number of consecutive failed health checks required before removing traffic. |
restartThreshold |
Number of consecutive failed health checks required before an instance is restarted. |
checkInterval |
Interval between health checks. A duration in seconds with up to nine fractional digits, ending with ' |
timeout |
Time before the health check is considered failed. A duration in seconds with up to nine fractional digits, ending with ' |
ReadinessCheck
Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation.
JSON representation |
---|
{ "path": string, "host": string, "failureThreshold": integer, "successThreshold": integer, "checkInterval": string, "timeout": string, "appStartTimeout": string } |
Fields | |
---|---|
path |
The request path. |
host |
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com" |
failureThreshold |
Number of consecutive failed checks required before removing traffic. |
successThreshold |
Number of consecutive successful checks required before receiving traffic. |
checkInterval |
Interval between health checks. A duration in seconds with up to nine fractional digits, ending with ' |
timeout |
Time before the check is considered failed. A duration in seconds with up to nine fractional digits, ending with ' |
appStartTimeout |
A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic. A duration in seconds with up to nine fractional digits, ending with ' |
LivenessCheck
Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances.
JSON representation |
---|
{ "path": string, "host": string, "failureThreshold": integer, "successThreshold": integer, "checkInterval": string, "timeout": string, "initialDelay": string } |
Fields | |
---|---|
path |
The request path. |
host |
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com" |
failureThreshold |
Number of consecutive failed checks required before considering the VM unhealthy. |
successThreshold |
Number of consecutive successful checks required before considering the VM healthy. |
checkInterval |
Interval between health checks. A duration in seconds with up to nine fractional digits, ending with ' |
timeout |
Time before the check is considered failed. A duration in seconds with up to nine fractional digits, ending with ' |
initialDelay |
The initial delay before starting to execute the checks. A duration in seconds with up to nine fractional digits, ending with ' |
Deployment
Code and application artifacts used to deploy a version to App Engine.
JSON representation |
---|
{ "files": { string: { object ( |
Fields | |
---|---|
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. An object containing a list of |
container |
The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment. |
zip |
The zip file for this deployment, if this is a zip deployment. |
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. |
FileInfo
Single source file that is part of the version to be deployed. Each source file that is deployed must be specified separately.
JSON representation |
---|
{ "sourceUrl": string, "sha1Sum": string, "mimeType": string } |
Fields | |
---|---|
sourceUrl |
URL source to use to fetch this file. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com/<bucket>/<object>'. |
sha1Sum |
The SHA1 hash of the file, in hex. |
mimeType |
The MIME type of the file. Defaults to the value from Google Cloud Storage. |
ContainerInfo
Docker image that is used to create a container and start a VM instance for the version that you deploy. Only applicable for instances running in the App Engine flexible environment.
JSON representation |
---|
{ "image": string } |
Fields | |
---|---|
image |
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest" |
ZipInfo
The zip file information for a zip deployment.
JSON representation |
---|
{ "sourceUrl": string, "filesCount": integer } |
Fields | |
---|---|
sourceUrl |
URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com/<bucket>/<object>'. |
filesCount |
An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow. |
CloudBuildOptions
Options for the build operations performed as a part of the version deployment. Only applicable for App Engine flexible environment when creating a version using source code directly.
JSON representation |
---|
{ "appYamlPath": string, "cloudBuildTimeout": string } |
Fields | |
---|---|
appYamlPath |
Path to the yaml file used in deployment, used to determine runtime configuration details. Required for flexible environment builds. See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details. |
cloudBuildTimeout |
The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes. A duration in seconds with up to nine fractional digits, ending with ' |
EndpointsApiService
Google Cloud Endpoints configuration. The Endpoints API Service provides tooling for serving Open API and gRPC endpoints via an NGINX proxy. Only valid for App Engine Flexible environment deployments.
The fields here refer to the name and configuration ID of a "service" resource in the Service Management API.
JSON representation |
---|
{
"name": string,
"configId": string,
"rolloutStrategy": enum ( |
Fields | |
---|---|
name |
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog" |
configId |
Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1". By default, the rollout strategy for Endpoints is Endpoints also has a rollout strategy called |
rolloutStrategy |
Endpoints rollout strategy. If |
disableTraceSampling |
Enable or disable trace sampling. By default, this is set to false for enabled. |
RolloutStrategy
Available rollout strategies.
Enums | |
---|---|
UNSPECIFIED_ROLLOUT_STRATEGY |
Not specified. Defaults to FIXED . |
FIXED |
Endpoints service configuration ID will be fixed to the configuration ID specified by configId . |
MANAGED |
Endpoints service configuration ID will be updated with each rollout. |
Entrypoint
The entrypoint for the application.
JSON representation |
---|
{ "shell": string } |
Fields | |
---|---|
shell |
The format should be a shell command that can be fed to |
VpcAccessConnector
VPC access connector specification.
JSON representation |
---|
{
"name": string,
"egressSetting": enum ( |
Fields | |
---|---|
name |
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1. |
egressSetting |
The egress setting for the connector, controlling what traffic is diverted through it. |
EgressSetting
Available egress settings.
This controls what traffic is diverted through the VPC Access Connector resource. By default PRIVATE_IP_RANGES will be used.
Enums | |
---|---|
EGRESS_SETTING_UNSPECIFIED |
|
ALL_TRAFFIC |
Force the use of VPC Access for all egress traffic from the function. |
PRIVATE_IP_RANGES |
Use the VPC Access Connector for private IP space from RFC1918. |
Methods |
|
---|---|
|
Deploys code and resource files to a new version. |
|
Deletes an existing Version resource. |
|
Gets the specified Version resource. |
|
Lists the versions of a service. |
|
Updates the specified Version resource. |