blob: c18dfb7ae7afa7074f9c689f67874904f17edefd [file] [log] [blame]
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070075<h1><a href="appengine_v1.html">App Engine Admin API</a> . <a href="appengine_v1.apps.html">apps</a> . <a href="appengine_v1.apps.services.html">services</a> . <a href="appengine_v1.apps.services.versions.html">versions</a></h1>
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -070076<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="appengine_v1.apps.services.versions.instances.html">instances()</a></code>
79</p>
80<p class="firstline">Returns the instances Resource.</p>
81
82<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070083 <code><a href="#create">create(appsId, servicesId, body=None, x__xgafv=None)</a></code></p>
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -070084<p class="firstline">Deploys code and resource files to a new version.</p>
85<p class="toc_element">
86 <code><a href="#delete">delete(appsId, servicesId, versionsId, x__xgafv=None)</a></code></p>
87<p class="firstline">Deletes an existing Version resource.</p>
88<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070089 <code><a href="#get">get(appsId, servicesId, versionsId, view=None, x__xgafv=None)</a></code></p>
Jon Wayne Parrott692617a2017-01-06 09:58:29 -080090<p class="firstline">Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource.</p>
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -070091<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070092 <code><a href="#list">list(appsId, servicesId, pageSize=None, view=None, pageToken=None, x__xgafv=None)</a></code></p>
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -070093<p class="firstline">Lists the versions of a service.</p>
94<p class="toc_element">
95 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
96<p class="firstline">Retrieves the next page of results.</p>
97<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070098 <code><a href="#patch">patch(appsId, servicesId, versionsId, body=None, updateMask=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070099<p class="firstline">Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:Standard environment</p>
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700100<h3>Method Details</h3>
101<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700102 <code class="details" id="create">create(appsId, servicesId, body=None, x__xgafv=None)</code>
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700103 <pre>Deploys code and resource files to a new version.
104
105Args:
Jon Wayne Parrott692617a2017-01-06 09:58:29 -0800106 appsId: string, Part of `parent`. Name of the parent resource to create this version under. Example: apps/myapp/services/default. (required)
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700107 servicesId: string, Part of `parent`. See documentation of `appsId`. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700108 body: object, The request body.
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700109 The object takes the form of:
110
111{ # A Version resource is a specific set of source code and configuration files that are deployed into a service.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700112 &quot;errorHandlers&quot;: [ # Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
113 { # Custom static error page to be served when an error occurs.
114 &quot;staticFile&quot;: &quot;A String&quot;, # Static file content to be served for this error.
115 &quot;mimeType&quot;: &quot;A String&quot;, # MIME type of file. Defaults to text/html.
116 &quot;errorCode&quot;: &quot;A String&quot;, # Error condition this handler applies to.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700117 },
118 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700119 &quot;createdBy&quot;: &quot;A String&quot;, # Email address of the user who created this version.@OutputOnly
120 &quot;id&quot;: &quot;A String&quot;, # Relative name of the version within the service. Example: v1. Version names can contain only lowercase letters, numbers, or hyphens. Reserved names: &quot;default&quot;, &quot;latest&quot;, and any name with the prefix &quot;ah-&quot;.
121 &quot;envVariables&quot;: { # Environment variables available to the application.Only returned in GET requests if view=FULL is set.
122 &quot;a_key&quot;: &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700123 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700124 &quot;defaultExpiration&quot;: &quot;A String&quot;, # Duration that static files should be cached by web proxies and browsers. Only applicable if the corresponding StaticFilesHandler (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StaticFilesHandler) does not specify its own expiration time.Only returned in GET requests if view=FULL is set.
125 &quot;runtimeApiVersion&quot;: &quot;A String&quot;, # 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/&lt;language&gt;/config/appref
126 &quot;livenessCheck&quot;: { # Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. # Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
127 &quot;failureThreshold&quot;: 42, # Number of consecutive failed checks required before considering the VM unhealthy.
128 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing a HTTP Liveness check. Example: &quot;myapp.appspot.com&quot;
129 &quot;initialDelay&quot;: &quot;A String&quot;, # The initial delay before starting to execute the checks.
130 &quot;timeout&quot;: &quot;A String&quot;, # Time before the check is considered failed.
131 &quot;successThreshold&quot;: 42, # Number of consecutive successful checks required before considering the VM healthy.
132 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
133 &quot;path&quot;: &quot;A String&quot;, # The request path.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700134 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700135 &quot;runtime&quot;: &quot;A String&quot;, # Desired runtime. Example: python27.
136 &quot;basicScaling&quot;: { # 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. # 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.
137 &quot;idleTimeout&quot;: &quot;A String&quot;, # Duration of time after the last request that an instance must wait before the instance is shut down.
138 &quot;maxInstances&quot;: 42, # Maximum number of instances to create for this version.
139 },
140 &quot;deployment&quot;: { # Code and application artifacts used to deploy a version to App Engine. # Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
141 &quot;container&quot;: { # 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. # The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
142 &quot;image&quot;: &quot;A String&quot;, # URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: &quot;gcr.io/my-project/image:tag&quot; or &quot;gcr.io/my-project/image@digest&quot;
143 },
144 &quot;zip&quot;: { # The zip file information for a zip deployment. # The zip file for this deployment, if this is a zip deployment.
145 &quot;sourceUrl&quot;: &quot;A String&quot;, # URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form &#x27;http(s)://storage.googleapis.com/&lt;bucket&gt;/&lt;object&gt;&#x27;.
146 &quot;filesCount&quot;: 42, # 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.
147 },
148 &quot;cloudBuildOptions&quot;: { # 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. # 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.
149 &quot;cloudBuildTimeout&quot;: &quot;A String&quot;, # The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
150 &quot;appYamlPath&quot;: &quot;A String&quot;, # 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.
151 },
152 &quot;files&quot;: { # 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.
153 &quot;a_key&quot;: { # Single source file that is part of the version to be deployed. Each source file that is deployed must be specified separately.
154 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the file.Defaults to the value from Google Cloud Storage.
155 &quot;sha1Sum&quot;: &quot;A String&quot;, # The SHA1 hash of the file, in hex.
156 &quot;sourceUrl&quot;: &quot;A String&quot;, # URL source to use to fetch this file. Must be a URL to a resource in Google Cloud Storage in the form &#x27;http(s)://storage.googleapis.com/&lt;bucket&gt;/&lt;object&gt;&#x27;.
157 },
158 },
159 },
160 &quot;versionUrl&quot;: &quot;A String&quot;, # Serving URL for this version. Example: &quot;https://myversion-dot-myservice-dot-myapp.appspot.com&quot;@OutputOnly
161 &quot;healthCheck&quot;: { # Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Only applicable for instances in App Engine flexible environment. # 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 GET requests if view=FULL is set.
162 &quot;restartThreshold&quot;: 42, # Number of consecutive failed health checks required before an instance is restarted.
163 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
164 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing an HTTP health check. Example: &quot;myapp.appspot.com&quot;
165 &quot;timeout&quot;: &quot;A String&quot;, # Time before the health check is considered failed.
166 &quot;unhealthyThreshold&quot;: 42, # Number of consecutive failed health checks required before removing traffic.
167 &quot;disableHealthCheck&quot;: True or False, # Whether to explicitly disable health checks for this instance.
168 &quot;healthyThreshold&quot;: 42, # Number of consecutive successful health checks required before receiving traffic.
169 },
170 &quot;network&quot;: { # Extra network settings. Only applicable in the App Engine flexible environment. # Extra network settings. Only applicable in the App Engine flexible environment.
171 &quot;name&quot;: &quot;A String&quot;, # Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
172 &quot;sessionAffinity&quot;: True or False, # Enable session affinity. Only applicable in the App Engine flexible environment.
173 &quot;instanceTag&quot;: &quot;A String&quot;, # Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
174 &quot;forwardedPorts&quot;: [ # List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
175 &quot;A String&quot;,
176 ],
177 &quot;subnetworkName&quot;: &quot;A String&quot;, # 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.
178 # If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range.
179 # If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network.
180 # If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
181 },
182 &quot;readinessCheck&quot;: { # Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation. # Configures readiness health checking for instances. Unhealthy instances are not put into the backend traffic rotation.Only returned in GET requests if view=FULL is set.
183 &quot;failureThreshold&quot;: 42, # Number of consecutive failed checks required before removing traffic.
184 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
185 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing a HTTP Readiness check. Example: &quot;myapp.appspot.com&quot;
186 &quot;successThreshold&quot;: 42, # Number of consecutive successful checks required before receiving traffic.
187 &quot;appStartTimeout&quot;: &quot;A String&quot;, # A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
188 &quot;timeout&quot;: &quot;A String&quot;, # Time before the check is considered failed.
189 &quot;path&quot;: &quot;A String&quot;, # The request path.
190 },
191 &quot;runtimeMainExecutablePath&quot;: &quot;A String&quot;, # The path or name of the app&#x27;s main executable.
192 &quot;entrypoint&quot;: { # The entrypoint for the application. # The entrypoint for the application.
193 &quot;shell&quot;: &quot;A String&quot;, # The format should be a shell command that can be fed to bash -c.
194 },
195 &quot;vm&quot;: True or False, # Whether to deploy this version in a container on a virtual machine.
196 &quot;manualScaling&quot;: { # A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. # A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time.
197 &quot;instances&quot;: 42, # Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
198 },
199 &quot;endpointsApiService&quot;: { # Cloud Endpoints (https://cloud.google.com/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 &quot;service&quot; resource in the Service Management API (https://cloud.google.com/service-management/overview). # Cloud Endpoints configuration.If endpoints_api_service is set, the Cloud Endpoints Extensible Service Proxy will be provided to serve the API implemented by the app.
200 &quot;disableTraceSampling&quot;: True or False, # Enable or disable trace sampling. By default, this is set to false for enabled.
201 &quot;name&quot;: &quot;A String&quot;, # Endpoints service name which is the name of the &quot;service&quot; resource in the Service Management API. For example &quot;myapi.endpoints.myproject.cloud.goog&quot;
202 &quot;configId&quot;: &quot;A String&quot;, # Endpoints service configuration ID as specified by the Service Management API. For example &quot;2016-09-19r1&quot;.By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
203 &quot;rolloutStrategy&quot;: &quot;A String&quot;, # Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
204 },
205 &quot;nobuildFilesRegex&quot;: &quot;A String&quot;, # Files that match this pattern will not be built into this version. Only applicable for Go runtimes.Only returned in GET requests if view=FULL is set.
206 &quot;inboundServices&quot;: [ # Before an application can receive email or XMPP messages, the application must be configured to enable the service.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700207 &quot;A String&quot;,
208 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700209 &quot;name&quot;: &quot;A String&quot;, # Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.@OutputOnly
210 &quot;vpcAccessConnector&quot;: { # VPC access connector specification. # Enables VPC connectivity for standard apps.
211 &quot;name&quot;: &quot;A String&quot;, # Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
212 },
213 &quot;handlers&quot;: [ # 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 GET requests if view=FULL is set.
214 { # 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.
215 &quot;authFailAction&quot;: &quot;A String&quot;, # Action to take when users access resources that require authentication. Defaults to redirect.
216 &quot;login&quot;: &quot;A String&quot;, # Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
217 &quot;script&quot;: { # Executes a script to handle the request that matches the URL pattern. # Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example &quot;script&quot;: &quot;auto&quot;.
218 &quot;scriptPath&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700219 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700220 &quot;urlRegex&quot;: &quot;A String&quot;, # 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.
221 &quot;apiEndpoint&quot;: { # Uses Google Cloud Endpoints to handle requests. # Uses API Endpoints to handle requests.
222 &quot;scriptPath&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
223 },
224 &quot;securityLevel&quot;: &quot;A String&quot;, # Security (HTTPS) enforcement for this URL.
225 &quot;staticFiles&quot;: { # 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. # Returns the contents of a file, such as an image, as the response.
226 &quot;path&quot;: &quot;A String&quot;, # 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.
227 &quot;expiration&quot;: &quot;A String&quot;, # Time a static file served by this handler should be cached by web proxies and browsers.
228 &quot;applicationReadable&quot;: True or False, # 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.
229 &quot;httpHeaders&quot;: { # HTTP headers to use for all responses from these URLs.
230 &quot;a_key&quot;: &quot;A String&quot;,
231 },
232 &quot;requireMatchingFile&quot;: True or False, # Whether this handler should match the request if the file referenced by the handler does not exist.
233 &quot;uploadPathRegex&quot;: &quot;A String&quot;, # Regular expression that matches the file paths for all files that should be referenced by this handler.
234 &quot;mimeType&quot;: &quot;A String&quot;, # MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file&#x27;s filename extension.
235 },
236 &quot;redirectHttpResponseCode&quot;: &quot;A String&quot;, # 30x code to use when performing redirects for the secure field. Defaults to 302.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700237 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700238 ],
239 &quot;diskUsageBytes&quot;: &quot;A String&quot;, # Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.@OutputOnly
240 &quot;betaSettings&quot;: { # Metadata settings that are supplied to this version to enable beta runtime features.
241 &quot;a_key&quot;: &quot;A String&quot;,
242 },
243 &quot;instanceClass&quot;: &quot;A String&quot;, # Instance class that is used to run this version. Valid values are:
244 # AutomaticScaling: F1, F2, F4, F4_1G
245 # ManualScaling or BasicScaling: B1, B2, B4, B8, B4_1GDefaults to F1 for AutomaticScaling and B1 for ManualScaling or BasicScaling.
246 &quot;runtimeChannel&quot;: &quot;A String&quot;, # The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
247 &quot;libraries&quot;: [ # Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
248 { # Third-party Python runtime library that is required by the application.
249 &quot;version&quot;: &quot;A String&quot;, # Version of the library to select, or &quot;latest&quot;.
250 &quot;name&quot;: &quot;A String&quot;, # Name of the library. Example: &quot;django&quot;.
251 },
252 ],
253 &quot;resources&quot;: { # Machine resources for a version. # Machine resources for this version. Only applicable in the App Engine flexible environment.
254 &quot;cpu&quot;: 3.14, # Number of CPU cores needed.
255 &quot;memoryGb&quot;: 3.14, # Memory (GB) needed.
256 &quot;diskGb&quot;: 3.14, # Disk size (GB) needed.
257 &quot;volumes&quot;: [ # User specified volumes.
258 { # Volumes mounted within the app container. Only applicable in the App Engine flexible environment.
259 &quot;name&quot;: &quot;A String&quot;, # Unique name for the volume.
260 &quot;sizeGb&quot;: 3.14, # Volume size in gigabytes.
261 &quot;volumeType&quot;: &quot;A String&quot;, # Underlying volume type, e.g. &#x27;tmpfs&#x27;.
262 },
263 ],
264 },
265 &quot;automaticScaling&quot;: { # Automatic scaling is based on request rate, response latencies, and other application metrics. # Automatic scaling is based on request rate, response latencies, and other application metrics.
266 &quot;cpuUtilization&quot;: { # Target scaling by CPU usage. # Target scaling by CPU usage.
267 &quot;targetUtilization&quot;: 3.14, # Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
268 &quot;aggregationWindowLength&quot;: &quot;A String&quot;, # Period of time over which CPU utilization is calculated.
269 },
270 &quot;minIdleInstances&quot;: 42, # Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
271 &quot;requestUtilization&quot;: { # Target scaling by request utilization. Only applicable in the App Engine flexible environment. # Target scaling by request utilization.
272 &quot;targetConcurrentRequests&quot;: 42, # Target number of concurrent requests.
273 &quot;targetRequestCountPerSecond&quot;: 42, # Target requests per second.
274 },
275 &quot;diskUtilization&quot;: { # Target scaling by disk usage. Only applicable in the App Engine flexible environment. # Target scaling by disk usage.
276 &quot;targetWriteOpsPerSecond&quot;: 42, # Target ops written per second.
277 &quot;targetWriteBytesPerSecond&quot;: 42, # Target bytes written per second.
278 &quot;targetReadOpsPerSecond&quot;: 42, # Target ops read per seconds.
279 &quot;targetReadBytesPerSecond&quot;: 42, # Target bytes read per second.
280 },
281 &quot;maxConcurrentRequests&quot;: 42, # Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
282 &quot;maxPendingLatency&quot;: &quot;A String&quot;, # Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
283 &quot;minTotalInstances&quot;: 42, # Minimum number of running instances that should be maintained for this version.
284 &quot;standardSchedulerSettings&quot;: { # Scheduler settings for standard environment. # Scheduler settings for standard environment.
285 &quot;targetCpuUtilization&quot;: 3.14, # Target CPU utilization ratio to maintain when scaling.
286 &quot;minInstances&quot;: 42, # Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
287 &quot;targetThroughputUtilization&quot;: 3.14, # Target throughput utilization ratio to maintain when scaling
288 &quot;maxInstances&quot;: 42, # Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
289 },
290 &quot;minPendingLatency&quot;: &quot;A String&quot;, # Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
291 &quot;maxTotalInstances&quot;: 42, # Maximum number of instances that should be started to handle requests for this version.
292 &quot;maxIdleInstances&quot;: 42, # Maximum number of idle instances that should be maintained for this version.
293 &quot;networkUtilization&quot;: { # Target scaling by network usage. Only applicable in the App Engine flexible environment. # Target scaling by network usage.
294 &quot;targetReceivedPacketsPerSecond&quot;: 42, # Target packets received per second.
295 &quot;targetSentPacketsPerSecond&quot;: 42, # Target packets sent per second.
296 &quot;targetSentBytesPerSecond&quot;: 42, # Target bytes sent per second.
297 &quot;targetReceivedBytesPerSecond&quot;: 42, # Target bytes received per second.
298 },
299 &quot;coolDownPeriod&quot;: &quot;A String&quot;, # The time period that the Autoscaler (https://cloud.google.com/compute/docs/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.
300 },
301 &quot;threadsafe&quot;: True or False, # Whether multiple requests can be dispatched to this version at once.
302 &quot;servingStatus&quot;: &quot;A String&quot;, # Current serving status of this version. Only the versions with a SERVING status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an invalid value. Defaults to SERVING.
303 &quot;env&quot;: &quot;A String&quot;, # App Engine execution environment for this version.Defaults to standard.
304 &quot;apiConfig&quot;: { # Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/) configuration for API handlers. # Serving configuration for Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/).Only returned in GET requests if view=FULL is set.
305 &quot;login&quot;: &quot;A String&quot;, # Level of login required to access this resource. Defaults to optional.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700306 &quot;authFailAction&quot;: &quot;A String&quot;, # Action to take when users access resources that require authentication. Defaults to redirect.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700307 &quot;securityLevel&quot;: &quot;A String&quot;, # Security (HTTPS) enforcement for this URL.
308 &quot;url&quot;: &quot;A String&quot;, # URL to serve the endpoint at.
309 &quot;script&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700310 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700311 &quot;zones&quot;: [ # The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
312 &quot;A String&quot;,
313 ],
314 &quot;createTime&quot;: &quot;A String&quot;, # Time that this version was created.@OutputOnly
315 }
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700316
317 x__xgafv: string, V1 error format.
318 Allowed values
319 1 - v1 error format
320 2 - v2 error format
321
322Returns:
323 An object of the form:
324
325 { # This resource represents a long-running operation that is the result of a network API call.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700326 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the name should be a resource name ending with operations/{unique_id}.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700327 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original method is standard Get/Create/Update, the response should be the resource. For other methods, the response should have the type XxxResponse, where Xxx is the original method name. For example, if the original method name is TakeSnapshot(), the inferred response type is TakeSnapshotResponse.
328 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
329 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700330 &quot;error&quot;: { # The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). Each Status message contains three pieces of data: error code, error message, and error details.You can find out more about this error model and how to work with it in the API Design Guide (https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
331 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
332 {
333 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
334 },
335 ],
336 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
337 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
338 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700339 &quot;done&quot;: True or False, # If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available.
340 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
341 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
342 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700343 }</pre>
344</div>
345
346<div class="method">
347 <code class="details" id="delete">delete(appsId, servicesId, versionsId, x__xgafv=None)</code>
348 <pre>Deletes an existing Version resource.
349
350Args:
351 appsId: string, Part of `name`. Name of the resource requested. Example: apps/myapp/services/default/versions/v1. (required)
352 servicesId: string, Part of `name`. See documentation of `appsId`. (required)
353 versionsId: string, Part of `name`. See documentation of `appsId`. (required)
354 x__xgafv: string, V1 error format.
355 Allowed values
356 1 - v1 error format
357 2 - v2 error format
358
359Returns:
360 An object of the form:
361
362 { # This resource represents a long-running operation that is the result of a network API call.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700363 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the name should be a resource name ending with operations/{unique_id}.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700364 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original method is standard Get/Create/Update, the response should be the resource. For other methods, the response should have the type XxxResponse, where Xxx is the original method name. For example, if the original method name is TakeSnapshot(), the inferred response type is TakeSnapshotResponse.
365 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
366 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700367 &quot;error&quot;: { # The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). Each Status message contains three pieces of data: error code, error message, and error details.You can find out more about this error model and how to work with it in the API Design Guide (https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
368 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
369 {
370 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
371 },
372 ],
373 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
374 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
375 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700376 &quot;done&quot;: True or False, # If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available.
377 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
378 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
379 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700380 }</pre>
381</div>
382
383<div class="method">
384 <code class="details" id="get">get(appsId, servicesId, versionsId, view=None, x__xgafv=None)</code>
385 <pre>Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource.
386
387Args:
388 appsId: string, Part of `name`. Name of the resource requested. Example: apps/myapp/services/default/versions/v1. (required)
389 servicesId: string, Part of `name`. See documentation of `appsId`. (required)
390 versionsId: string, Part of `name`. See documentation of `appsId`. (required)
391 view: string, Controls the set of fields returned in the Get response.
392 x__xgafv: string, V1 error format.
393 Allowed values
394 1 - v1 error format
395 2 - v2 error format
396
397Returns:
398 An object of the form:
399
400 { # A Version resource is a specific set of source code and configuration files that are deployed into a service.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700401 &quot;errorHandlers&quot;: [ # Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
402 { # Custom static error page to be served when an error occurs.
403 &quot;staticFile&quot;: &quot;A String&quot;, # Static file content to be served for this error.
404 &quot;mimeType&quot;: &quot;A String&quot;, # MIME type of file. Defaults to text/html.
405 &quot;errorCode&quot;: &quot;A String&quot;, # Error condition this handler applies to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700406 },
407 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700408 &quot;createdBy&quot;: &quot;A String&quot;, # Email address of the user who created this version.@OutputOnly
409 &quot;id&quot;: &quot;A String&quot;, # Relative name of the version within the service. Example: v1. Version names can contain only lowercase letters, numbers, or hyphens. Reserved names: &quot;default&quot;, &quot;latest&quot;, and any name with the prefix &quot;ah-&quot;.
410 &quot;envVariables&quot;: { # Environment variables available to the application.Only returned in GET requests if view=FULL is set.
411 &quot;a_key&quot;: &quot;A String&quot;,
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700412 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700413 &quot;defaultExpiration&quot;: &quot;A String&quot;, # Duration that static files should be cached by web proxies and browsers. Only applicable if the corresponding StaticFilesHandler (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StaticFilesHandler) does not specify its own expiration time.Only returned in GET requests if view=FULL is set.
414 &quot;runtimeApiVersion&quot;: &quot;A String&quot;, # 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/&lt;language&gt;/config/appref
415 &quot;livenessCheck&quot;: { # Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. # Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
416 &quot;failureThreshold&quot;: 42, # Number of consecutive failed checks required before considering the VM unhealthy.
417 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing a HTTP Liveness check. Example: &quot;myapp.appspot.com&quot;
418 &quot;initialDelay&quot;: &quot;A String&quot;, # The initial delay before starting to execute the checks.
419 &quot;timeout&quot;: &quot;A String&quot;, # Time before the check is considered failed.
420 &quot;successThreshold&quot;: 42, # Number of consecutive successful checks required before considering the VM healthy.
421 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
422 &quot;path&quot;: &quot;A String&quot;, # The request path.
Bu Sun Kim65020912020-05-20 12:08:20 -0700423 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700424 &quot;runtime&quot;: &quot;A String&quot;, # Desired runtime. Example: python27.
425 &quot;basicScaling&quot;: { # 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. # 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.
426 &quot;idleTimeout&quot;: &quot;A String&quot;, # Duration of time after the last request that an instance must wait before the instance is shut down.
427 &quot;maxInstances&quot;: 42, # Maximum number of instances to create for this version.
428 },
429 &quot;deployment&quot;: { # Code and application artifacts used to deploy a version to App Engine. # Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
430 &quot;container&quot;: { # 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. # The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
431 &quot;image&quot;: &quot;A String&quot;, # URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: &quot;gcr.io/my-project/image:tag&quot; or &quot;gcr.io/my-project/image@digest&quot;
432 },
433 &quot;zip&quot;: { # The zip file information for a zip deployment. # The zip file for this deployment, if this is a zip deployment.
434 &quot;sourceUrl&quot;: &quot;A String&quot;, # URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form &#x27;http(s)://storage.googleapis.com/&lt;bucket&gt;/&lt;object&gt;&#x27;.
435 &quot;filesCount&quot;: 42, # 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.
436 },
437 &quot;cloudBuildOptions&quot;: { # 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. # 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.
438 &quot;cloudBuildTimeout&quot;: &quot;A String&quot;, # The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
439 &quot;appYamlPath&quot;: &quot;A String&quot;, # 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.
440 },
441 &quot;files&quot;: { # 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.
442 &quot;a_key&quot;: { # Single source file that is part of the version to be deployed. Each source file that is deployed must be specified separately.
443 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the file.Defaults to the value from Google Cloud Storage.
444 &quot;sha1Sum&quot;: &quot;A String&quot;, # The SHA1 hash of the file, in hex.
445 &quot;sourceUrl&quot;: &quot;A String&quot;, # URL source to use to fetch this file. Must be a URL to a resource in Google Cloud Storage in the form &#x27;http(s)://storage.googleapis.com/&lt;bucket&gt;/&lt;object&gt;&#x27;.
446 },
447 },
448 },
449 &quot;versionUrl&quot;: &quot;A String&quot;, # Serving URL for this version. Example: &quot;https://myversion-dot-myservice-dot-myapp.appspot.com&quot;@OutputOnly
450 &quot;healthCheck&quot;: { # Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Only applicable for instances in App Engine flexible environment. # 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 GET requests if view=FULL is set.
451 &quot;restartThreshold&quot;: 42, # Number of consecutive failed health checks required before an instance is restarted.
452 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
453 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing an HTTP health check. Example: &quot;myapp.appspot.com&quot;
454 &quot;timeout&quot;: &quot;A String&quot;, # Time before the health check is considered failed.
455 &quot;unhealthyThreshold&quot;: 42, # Number of consecutive failed health checks required before removing traffic.
456 &quot;disableHealthCheck&quot;: True or False, # Whether to explicitly disable health checks for this instance.
457 &quot;healthyThreshold&quot;: 42, # Number of consecutive successful health checks required before receiving traffic.
458 },
459 &quot;network&quot;: { # Extra network settings. Only applicable in the App Engine flexible environment. # Extra network settings. Only applicable in the App Engine flexible environment.
460 &quot;name&quot;: &quot;A String&quot;, # Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
461 &quot;sessionAffinity&quot;: True or False, # Enable session affinity. Only applicable in the App Engine flexible environment.
462 &quot;instanceTag&quot;: &quot;A String&quot;, # Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
463 &quot;forwardedPorts&quot;: [ # List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
464 &quot;A String&quot;,
465 ],
466 &quot;subnetworkName&quot;: &quot;A String&quot;, # 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.
467 # If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range.
468 # If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network.
469 # If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
470 },
471 &quot;readinessCheck&quot;: { # Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation. # Configures readiness health checking for instances. Unhealthy instances are not put into the backend traffic rotation.Only returned in GET requests if view=FULL is set.
472 &quot;failureThreshold&quot;: 42, # Number of consecutive failed checks required before removing traffic.
473 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
474 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing a HTTP Readiness check. Example: &quot;myapp.appspot.com&quot;
475 &quot;successThreshold&quot;: 42, # Number of consecutive successful checks required before receiving traffic.
476 &quot;appStartTimeout&quot;: &quot;A String&quot;, # A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
477 &quot;timeout&quot;: &quot;A String&quot;, # Time before the check is considered failed.
478 &quot;path&quot;: &quot;A String&quot;, # The request path.
479 },
480 &quot;runtimeMainExecutablePath&quot;: &quot;A String&quot;, # The path or name of the app&#x27;s main executable.
481 &quot;entrypoint&quot;: { # The entrypoint for the application. # The entrypoint for the application.
482 &quot;shell&quot;: &quot;A String&quot;, # The format should be a shell command that can be fed to bash -c.
483 },
484 &quot;vm&quot;: True or False, # Whether to deploy this version in a container on a virtual machine.
485 &quot;manualScaling&quot;: { # A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. # A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time.
486 &quot;instances&quot;: 42, # Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
487 },
488 &quot;endpointsApiService&quot;: { # Cloud Endpoints (https://cloud.google.com/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 &quot;service&quot; resource in the Service Management API (https://cloud.google.com/service-management/overview). # Cloud Endpoints configuration.If endpoints_api_service is set, the Cloud Endpoints Extensible Service Proxy will be provided to serve the API implemented by the app.
489 &quot;disableTraceSampling&quot;: True or False, # Enable or disable trace sampling. By default, this is set to false for enabled.
490 &quot;name&quot;: &quot;A String&quot;, # Endpoints service name which is the name of the &quot;service&quot; resource in the Service Management API. For example &quot;myapi.endpoints.myproject.cloud.goog&quot;
491 &quot;configId&quot;: &quot;A String&quot;, # Endpoints service configuration ID as specified by the Service Management API. For example &quot;2016-09-19r1&quot;.By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
492 &quot;rolloutStrategy&quot;: &quot;A String&quot;, # Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
493 },
494 &quot;nobuildFilesRegex&quot;: &quot;A String&quot;, # Files that match this pattern will not be built into this version. Only applicable for Go runtimes.Only returned in GET requests if view=FULL is set.
495 &quot;inboundServices&quot;: [ # Before an application can receive email or XMPP messages, the application must be configured to enable the service.
Bu Sun Kim65020912020-05-20 12:08:20 -0700496 &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700497 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700498 &quot;name&quot;: &quot;A String&quot;, # Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.@OutputOnly
499 &quot;vpcAccessConnector&quot;: { # VPC access connector specification. # Enables VPC connectivity for standard apps.
500 &quot;name&quot;: &quot;A String&quot;, # Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
501 },
502 &quot;handlers&quot;: [ # 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 GET requests if view=FULL is set.
503 { # 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.
504 &quot;authFailAction&quot;: &quot;A String&quot;, # Action to take when users access resources that require authentication. Defaults to redirect.
505 &quot;login&quot;: &quot;A String&quot;, # Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
506 &quot;script&quot;: { # Executes a script to handle the request that matches the URL pattern. # Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example &quot;script&quot;: &quot;auto&quot;.
507 &quot;scriptPath&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700508 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700509 &quot;urlRegex&quot;: &quot;A String&quot;, # 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.
510 &quot;apiEndpoint&quot;: { # Uses Google Cloud Endpoints to handle requests. # Uses API Endpoints to handle requests.
511 &quot;scriptPath&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
512 },
513 &quot;securityLevel&quot;: &quot;A String&quot;, # Security (HTTPS) enforcement for this URL.
514 &quot;staticFiles&quot;: { # 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. # Returns the contents of a file, such as an image, as the response.
515 &quot;path&quot;: &quot;A String&quot;, # 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.
516 &quot;expiration&quot;: &quot;A String&quot;, # Time a static file served by this handler should be cached by web proxies and browsers.
517 &quot;applicationReadable&quot;: True or False, # 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.
518 &quot;httpHeaders&quot;: { # HTTP headers to use for all responses from these URLs.
519 &quot;a_key&quot;: &quot;A String&quot;,
520 },
521 &quot;requireMatchingFile&quot;: True or False, # Whether this handler should match the request if the file referenced by the handler does not exist.
522 &quot;uploadPathRegex&quot;: &quot;A String&quot;, # Regular expression that matches the file paths for all files that should be referenced by this handler.
523 &quot;mimeType&quot;: &quot;A String&quot;, # MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file&#x27;s filename extension.
524 },
525 &quot;redirectHttpResponseCode&quot;: &quot;A String&quot;, # 30x code to use when performing redirects for the secure field. Defaults to 302.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700526 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700527 ],
528 &quot;diskUsageBytes&quot;: &quot;A String&quot;, # Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.@OutputOnly
529 &quot;betaSettings&quot;: { # Metadata settings that are supplied to this version to enable beta runtime features.
530 &quot;a_key&quot;: &quot;A String&quot;,
531 },
532 &quot;instanceClass&quot;: &quot;A String&quot;, # Instance class that is used to run this version. Valid values are:
533 # AutomaticScaling: F1, F2, F4, F4_1G
534 # ManualScaling or BasicScaling: B1, B2, B4, B8, B4_1GDefaults to F1 for AutomaticScaling and B1 for ManualScaling or BasicScaling.
535 &quot;runtimeChannel&quot;: &quot;A String&quot;, # The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
536 &quot;libraries&quot;: [ # Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
537 { # Third-party Python runtime library that is required by the application.
538 &quot;version&quot;: &quot;A String&quot;, # Version of the library to select, or &quot;latest&quot;.
539 &quot;name&quot;: &quot;A String&quot;, # Name of the library. Example: &quot;django&quot;.
540 },
541 ],
542 &quot;resources&quot;: { # Machine resources for a version. # Machine resources for this version. Only applicable in the App Engine flexible environment.
543 &quot;cpu&quot;: 3.14, # Number of CPU cores needed.
544 &quot;memoryGb&quot;: 3.14, # Memory (GB) needed.
545 &quot;diskGb&quot;: 3.14, # Disk size (GB) needed.
546 &quot;volumes&quot;: [ # User specified volumes.
547 { # Volumes mounted within the app container. Only applicable in the App Engine flexible environment.
548 &quot;name&quot;: &quot;A String&quot;, # Unique name for the volume.
549 &quot;sizeGb&quot;: 3.14, # Volume size in gigabytes.
550 &quot;volumeType&quot;: &quot;A String&quot;, # Underlying volume type, e.g. &#x27;tmpfs&#x27;.
551 },
552 ],
553 },
554 &quot;automaticScaling&quot;: { # Automatic scaling is based on request rate, response latencies, and other application metrics. # Automatic scaling is based on request rate, response latencies, and other application metrics.
555 &quot;cpuUtilization&quot;: { # Target scaling by CPU usage. # Target scaling by CPU usage.
556 &quot;targetUtilization&quot;: 3.14, # Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
557 &quot;aggregationWindowLength&quot;: &quot;A String&quot;, # Period of time over which CPU utilization is calculated.
558 },
559 &quot;minIdleInstances&quot;: 42, # Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
560 &quot;requestUtilization&quot;: { # Target scaling by request utilization. Only applicable in the App Engine flexible environment. # Target scaling by request utilization.
561 &quot;targetConcurrentRequests&quot;: 42, # Target number of concurrent requests.
562 &quot;targetRequestCountPerSecond&quot;: 42, # Target requests per second.
563 },
564 &quot;diskUtilization&quot;: { # Target scaling by disk usage. Only applicable in the App Engine flexible environment. # Target scaling by disk usage.
565 &quot;targetWriteOpsPerSecond&quot;: 42, # Target ops written per second.
566 &quot;targetWriteBytesPerSecond&quot;: 42, # Target bytes written per second.
567 &quot;targetReadOpsPerSecond&quot;: 42, # Target ops read per seconds.
568 &quot;targetReadBytesPerSecond&quot;: 42, # Target bytes read per second.
569 },
570 &quot;maxConcurrentRequests&quot;: 42, # Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
571 &quot;maxPendingLatency&quot;: &quot;A String&quot;, # Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
572 &quot;minTotalInstances&quot;: 42, # Minimum number of running instances that should be maintained for this version.
573 &quot;standardSchedulerSettings&quot;: { # Scheduler settings for standard environment. # Scheduler settings for standard environment.
574 &quot;targetCpuUtilization&quot;: 3.14, # Target CPU utilization ratio to maintain when scaling.
575 &quot;minInstances&quot;: 42, # Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
576 &quot;targetThroughputUtilization&quot;: 3.14, # Target throughput utilization ratio to maintain when scaling
577 &quot;maxInstances&quot;: 42, # Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
578 },
579 &quot;minPendingLatency&quot;: &quot;A String&quot;, # Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
580 &quot;maxTotalInstances&quot;: 42, # Maximum number of instances that should be started to handle requests for this version.
581 &quot;maxIdleInstances&quot;: 42, # Maximum number of idle instances that should be maintained for this version.
582 &quot;networkUtilization&quot;: { # Target scaling by network usage. Only applicable in the App Engine flexible environment. # Target scaling by network usage.
583 &quot;targetReceivedPacketsPerSecond&quot;: 42, # Target packets received per second.
584 &quot;targetSentPacketsPerSecond&quot;: 42, # Target packets sent per second.
585 &quot;targetSentBytesPerSecond&quot;: 42, # Target bytes sent per second.
586 &quot;targetReceivedBytesPerSecond&quot;: 42, # Target bytes received per second.
587 },
588 &quot;coolDownPeriod&quot;: &quot;A String&quot;, # The time period that the Autoscaler (https://cloud.google.com/compute/docs/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.
589 },
590 &quot;threadsafe&quot;: True or False, # Whether multiple requests can be dispatched to this version at once.
591 &quot;servingStatus&quot;: &quot;A String&quot;, # Current serving status of this version. Only the versions with a SERVING status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an invalid value. Defaults to SERVING.
592 &quot;env&quot;: &quot;A String&quot;, # App Engine execution environment for this version.Defaults to standard.
593 &quot;apiConfig&quot;: { # Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/) configuration for API handlers. # Serving configuration for Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/).Only returned in GET requests if view=FULL is set.
594 &quot;login&quot;: &quot;A String&quot;, # Level of login required to access this resource. Defaults to optional.
Bu Sun Kim65020912020-05-20 12:08:20 -0700595 &quot;authFailAction&quot;: &quot;A String&quot;, # Action to take when users access resources that require authentication. Defaults to redirect.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700596 &quot;securityLevel&quot;: &quot;A String&quot;, # Security (HTTPS) enforcement for this URL.
597 &quot;url&quot;: &quot;A String&quot;, # URL to serve the endpoint at.
598 &quot;script&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700599 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700600 &quot;zones&quot;: [ # The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
601 &quot;A String&quot;,
602 ],
603 &quot;createTime&quot;: &quot;A String&quot;, # Time that this version was created.@OutputOnly
604 }</pre>
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700605</div>
606
607<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700608 <code class="details" id="list">list(appsId, servicesId, pageSize=None, view=None, pageToken=None, x__xgafv=None)</code>
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700609 <pre>Lists the versions of a service.
610
611Args:
Jon Wayne Parrott692617a2017-01-06 09:58:29 -0800612 appsId: string, Part of `parent`. Name of the parent Service resource. Example: apps/myapp/services/default. (required)
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700613 servicesId: string, Part of `parent`. See documentation of `appsId`. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700614 pageSize: integer, Maximum results to return per page.
615 view: string, Controls the set of fields returned in the List response.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700616 pageToken: string, Continuation token for fetching the next page of results.
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700617 x__xgafv: string, V1 error format.
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400618 Allowed values
619 1 - v1 error format
620 2 - v2 error format
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700621
622Returns:
623 An object of the form:
624
Jon Wayne Parrott692617a2017-01-06 09:58:29 -0800625 { # Response message for Versions.ListVersions.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700626 &quot;nextPageToken&quot;: &quot;A String&quot;, # Continuation token for fetching the next page of results.
Bu Sun Kim65020912020-05-20 12:08:20 -0700627 &quot;versions&quot;: [ # The versions belonging to the requested service.
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700628 { # A Version resource is a specific set of source code and configuration files that are deployed into a service.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700629 &quot;errorHandlers&quot;: [ # Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
630 { # Custom static error page to be served when an error occurs.
631 &quot;staticFile&quot;: &quot;A String&quot;, # Static file content to be served for this error.
632 &quot;mimeType&quot;: &quot;A String&quot;, # MIME type of file. Defaults to text/html.
633 &quot;errorCode&quot;: &quot;A String&quot;, # Error condition this handler applies to.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700634 },
635 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700636 &quot;createdBy&quot;: &quot;A String&quot;, # Email address of the user who created this version.@OutputOnly
637 &quot;id&quot;: &quot;A String&quot;, # Relative name of the version within the service. Example: v1. Version names can contain only lowercase letters, numbers, or hyphens. Reserved names: &quot;default&quot;, &quot;latest&quot;, and any name with the prefix &quot;ah-&quot;.
638 &quot;envVariables&quot;: { # Environment variables available to the application.Only returned in GET requests if view=FULL is set.
639 &quot;a_key&quot;: &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700640 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700641 &quot;defaultExpiration&quot;: &quot;A String&quot;, # Duration that static files should be cached by web proxies and browsers. Only applicable if the corresponding StaticFilesHandler (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StaticFilesHandler) does not specify its own expiration time.Only returned in GET requests if view=FULL is set.
642 &quot;runtimeApiVersion&quot;: &quot;A String&quot;, # 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/&lt;language&gt;/config/appref
643 &quot;livenessCheck&quot;: { # Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. # Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
644 &quot;failureThreshold&quot;: 42, # Number of consecutive failed checks required before considering the VM unhealthy.
645 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing a HTTP Liveness check. Example: &quot;myapp.appspot.com&quot;
646 &quot;initialDelay&quot;: &quot;A String&quot;, # The initial delay before starting to execute the checks.
647 &quot;timeout&quot;: &quot;A String&quot;, # Time before the check is considered failed.
648 &quot;successThreshold&quot;: 42, # Number of consecutive successful checks required before considering the VM healthy.
649 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
650 &quot;path&quot;: &quot;A String&quot;, # The request path.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700651 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700652 &quot;runtime&quot;: &quot;A String&quot;, # Desired runtime. Example: python27.
653 &quot;basicScaling&quot;: { # 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. # 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.
654 &quot;idleTimeout&quot;: &quot;A String&quot;, # Duration of time after the last request that an instance must wait before the instance is shut down.
655 &quot;maxInstances&quot;: 42, # Maximum number of instances to create for this version.
656 },
657 &quot;deployment&quot;: { # Code and application artifacts used to deploy a version to App Engine. # Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
658 &quot;container&quot;: { # 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. # The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
659 &quot;image&quot;: &quot;A String&quot;, # URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: &quot;gcr.io/my-project/image:tag&quot; or &quot;gcr.io/my-project/image@digest&quot;
660 },
661 &quot;zip&quot;: { # The zip file information for a zip deployment. # The zip file for this deployment, if this is a zip deployment.
662 &quot;sourceUrl&quot;: &quot;A String&quot;, # URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form &#x27;http(s)://storage.googleapis.com/&lt;bucket&gt;/&lt;object&gt;&#x27;.
663 &quot;filesCount&quot;: 42, # 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.
664 },
665 &quot;cloudBuildOptions&quot;: { # 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. # 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.
666 &quot;cloudBuildTimeout&quot;: &quot;A String&quot;, # The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
667 &quot;appYamlPath&quot;: &quot;A String&quot;, # 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.
668 },
669 &quot;files&quot;: { # 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.
670 &quot;a_key&quot;: { # Single source file that is part of the version to be deployed. Each source file that is deployed must be specified separately.
671 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the file.Defaults to the value from Google Cloud Storage.
672 &quot;sha1Sum&quot;: &quot;A String&quot;, # The SHA1 hash of the file, in hex.
673 &quot;sourceUrl&quot;: &quot;A String&quot;, # URL source to use to fetch this file. Must be a URL to a resource in Google Cloud Storage in the form &#x27;http(s)://storage.googleapis.com/&lt;bucket&gt;/&lt;object&gt;&#x27;.
674 },
675 },
676 },
677 &quot;versionUrl&quot;: &quot;A String&quot;, # Serving URL for this version. Example: &quot;https://myversion-dot-myservice-dot-myapp.appspot.com&quot;@OutputOnly
678 &quot;healthCheck&quot;: { # Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Only applicable for instances in App Engine flexible environment. # 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 GET requests if view=FULL is set.
679 &quot;restartThreshold&quot;: 42, # Number of consecutive failed health checks required before an instance is restarted.
680 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
681 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing an HTTP health check. Example: &quot;myapp.appspot.com&quot;
682 &quot;timeout&quot;: &quot;A String&quot;, # Time before the health check is considered failed.
683 &quot;unhealthyThreshold&quot;: 42, # Number of consecutive failed health checks required before removing traffic.
684 &quot;disableHealthCheck&quot;: True or False, # Whether to explicitly disable health checks for this instance.
685 &quot;healthyThreshold&quot;: 42, # Number of consecutive successful health checks required before receiving traffic.
686 },
687 &quot;network&quot;: { # Extra network settings. Only applicable in the App Engine flexible environment. # Extra network settings. Only applicable in the App Engine flexible environment.
688 &quot;name&quot;: &quot;A String&quot;, # Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
689 &quot;sessionAffinity&quot;: True or False, # Enable session affinity. Only applicable in the App Engine flexible environment.
690 &quot;instanceTag&quot;: &quot;A String&quot;, # Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
691 &quot;forwardedPorts&quot;: [ # List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
692 &quot;A String&quot;,
693 ],
694 &quot;subnetworkName&quot;: &quot;A String&quot;, # 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.
695 # If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range.
696 # If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network.
697 # If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
698 },
699 &quot;readinessCheck&quot;: { # Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation. # Configures readiness health checking for instances. Unhealthy instances are not put into the backend traffic rotation.Only returned in GET requests if view=FULL is set.
700 &quot;failureThreshold&quot;: 42, # Number of consecutive failed checks required before removing traffic.
701 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
702 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing a HTTP Readiness check. Example: &quot;myapp.appspot.com&quot;
703 &quot;successThreshold&quot;: 42, # Number of consecutive successful checks required before receiving traffic.
704 &quot;appStartTimeout&quot;: &quot;A String&quot;, # A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
705 &quot;timeout&quot;: &quot;A String&quot;, # Time before the check is considered failed.
706 &quot;path&quot;: &quot;A String&quot;, # The request path.
707 },
708 &quot;runtimeMainExecutablePath&quot;: &quot;A String&quot;, # The path or name of the app&#x27;s main executable.
709 &quot;entrypoint&quot;: { # The entrypoint for the application. # The entrypoint for the application.
710 &quot;shell&quot;: &quot;A String&quot;, # The format should be a shell command that can be fed to bash -c.
711 },
712 &quot;vm&quot;: True or False, # Whether to deploy this version in a container on a virtual machine.
713 &quot;manualScaling&quot;: { # A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. # A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time.
714 &quot;instances&quot;: 42, # Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
715 },
716 &quot;endpointsApiService&quot;: { # Cloud Endpoints (https://cloud.google.com/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 &quot;service&quot; resource in the Service Management API (https://cloud.google.com/service-management/overview). # Cloud Endpoints configuration.If endpoints_api_service is set, the Cloud Endpoints Extensible Service Proxy will be provided to serve the API implemented by the app.
717 &quot;disableTraceSampling&quot;: True or False, # Enable or disable trace sampling. By default, this is set to false for enabled.
718 &quot;name&quot;: &quot;A String&quot;, # Endpoints service name which is the name of the &quot;service&quot; resource in the Service Management API. For example &quot;myapi.endpoints.myproject.cloud.goog&quot;
719 &quot;configId&quot;: &quot;A String&quot;, # Endpoints service configuration ID as specified by the Service Management API. For example &quot;2016-09-19r1&quot;.By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
720 &quot;rolloutStrategy&quot;: &quot;A String&quot;, # Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
721 },
722 &quot;nobuildFilesRegex&quot;: &quot;A String&quot;, # Files that match this pattern will not be built into this version. Only applicable for Go runtimes.Only returned in GET requests if view=FULL is set.
723 &quot;inboundServices&quot;: [ # Before an application can receive email or XMPP messages, the application must be configured to enable the service.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700724 &quot;A String&quot;,
725 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700726 &quot;name&quot;: &quot;A String&quot;, # Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.@OutputOnly
727 &quot;vpcAccessConnector&quot;: { # VPC access connector specification. # Enables VPC connectivity for standard apps.
728 &quot;name&quot;: &quot;A String&quot;, # Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
729 },
730 &quot;handlers&quot;: [ # 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 GET requests if view=FULL is set.
731 { # 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.
732 &quot;authFailAction&quot;: &quot;A String&quot;, # Action to take when users access resources that require authentication. Defaults to redirect.
733 &quot;login&quot;: &quot;A String&quot;, # Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
734 &quot;script&quot;: { # Executes a script to handle the request that matches the URL pattern. # Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example &quot;script&quot;: &quot;auto&quot;.
735 &quot;scriptPath&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700736 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700737 &quot;urlRegex&quot;: &quot;A String&quot;, # 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.
738 &quot;apiEndpoint&quot;: { # Uses Google Cloud Endpoints to handle requests. # Uses API Endpoints to handle requests.
739 &quot;scriptPath&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
740 },
741 &quot;securityLevel&quot;: &quot;A String&quot;, # Security (HTTPS) enforcement for this URL.
742 &quot;staticFiles&quot;: { # 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. # Returns the contents of a file, such as an image, as the response.
743 &quot;path&quot;: &quot;A String&quot;, # 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.
744 &quot;expiration&quot;: &quot;A String&quot;, # Time a static file served by this handler should be cached by web proxies and browsers.
745 &quot;applicationReadable&quot;: True or False, # 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.
746 &quot;httpHeaders&quot;: { # HTTP headers to use for all responses from these URLs.
747 &quot;a_key&quot;: &quot;A String&quot;,
748 },
749 &quot;requireMatchingFile&quot;: True or False, # Whether this handler should match the request if the file referenced by the handler does not exist.
750 &quot;uploadPathRegex&quot;: &quot;A String&quot;, # Regular expression that matches the file paths for all files that should be referenced by this handler.
751 &quot;mimeType&quot;: &quot;A String&quot;, # MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file&#x27;s filename extension.
752 },
753 &quot;redirectHttpResponseCode&quot;: &quot;A String&quot;, # 30x code to use when performing redirects for the secure field. Defaults to 302.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700754 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700755 ],
756 &quot;diskUsageBytes&quot;: &quot;A String&quot;, # Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.@OutputOnly
757 &quot;betaSettings&quot;: { # Metadata settings that are supplied to this version to enable beta runtime features.
758 &quot;a_key&quot;: &quot;A String&quot;,
759 },
760 &quot;instanceClass&quot;: &quot;A String&quot;, # Instance class that is used to run this version. Valid values are:
761 # AutomaticScaling: F1, F2, F4, F4_1G
762 # ManualScaling or BasicScaling: B1, B2, B4, B8, B4_1GDefaults to F1 for AutomaticScaling and B1 for ManualScaling or BasicScaling.
763 &quot;runtimeChannel&quot;: &quot;A String&quot;, # The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
764 &quot;libraries&quot;: [ # Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
765 { # Third-party Python runtime library that is required by the application.
766 &quot;version&quot;: &quot;A String&quot;, # Version of the library to select, or &quot;latest&quot;.
767 &quot;name&quot;: &quot;A String&quot;, # Name of the library. Example: &quot;django&quot;.
768 },
769 ],
770 &quot;resources&quot;: { # Machine resources for a version. # Machine resources for this version. Only applicable in the App Engine flexible environment.
771 &quot;cpu&quot;: 3.14, # Number of CPU cores needed.
772 &quot;memoryGb&quot;: 3.14, # Memory (GB) needed.
773 &quot;diskGb&quot;: 3.14, # Disk size (GB) needed.
774 &quot;volumes&quot;: [ # User specified volumes.
775 { # Volumes mounted within the app container. Only applicable in the App Engine flexible environment.
776 &quot;name&quot;: &quot;A String&quot;, # Unique name for the volume.
777 &quot;sizeGb&quot;: 3.14, # Volume size in gigabytes.
778 &quot;volumeType&quot;: &quot;A String&quot;, # Underlying volume type, e.g. &#x27;tmpfs&#x27;.
779 },
780 ],
781 },
782 &quot;automaticScaling&quot;: { # Automatic scaling is based on request rate, response latencies, and other application metrics. # Automatic scaling is based on request rate, response latencies, and other application metrics.
783 &quot;cpuUtilization&quot;: { # Target scaling by CPU usage. # Target scaling by CPU usage.
784 &quot;targetUtilization&quot;: 3.14, # Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
785 &quot;aggregationWindowLength&quot;: &quot;A String&quot;, # Period of time over which CPU utilization is calculated.
786 },
787 &quot;minIdleInstances&quot;: 42, # Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
788 &quot;requestUtilization&quot;: { # Target scaling by request utilization. Only applicable in the App Engine flexible environment. # Target scaling by request utilization.
789 &quot;targetConcurrentRequests&quot;: 42, # Target number of concurrent requests.
790 &quot;targetRequestCountPerSecond&quot;: 42, # Target requests per second.
791 },
792 &quot;diskUtilization&quot;: { # Target scaling by disk usage. Only applicable in the App Engine flexible environment. # Target scaling by disk usage.
793 &quot;targetWriteOpsPerSecond&quot;: 42, # Target ops written per second.
794 &quot;targetWriteBytesPerSecond&quot;: 42, # Target bytes written per second.
795 &quot;targetReadOpsPerSecond&quot;: 42, # Target ops read per seconds.
796 &quot;targetReadBytesPerSecond&quot;: 42, # Target bytes read per second.
797 },
798 &quot;maxConcurrentRequests&quot;: 42, # Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
799 &quot;maxPendingLatency&quot;: &quot;A String&quot;, # Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
800 &quot;minTotalInstances&quot;: 42, # Minimum number of running instances that should be maintained for this version.
801 &quot;standardSchedulerSettings&quot;: { # Scheduler settings for standard environment. # Scheduler settings for standard environment.
802 &quot;targetCpuUtilization&quot;: 3.14, # Target CPU utilization ratio to maintain when scaling.
803 &quot;minInstances&quot;: 42, # Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
804 &quot;targetThroughputUtilization&quot;: 3.14, # Target throughput utilization ratio to maintain when scaling
805 &quot;maxInstances&quot;: 42, # Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
806 },
807 &quot;minPendingLatency&quot;: &quot;A String&quot;, # Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
808 &quot;maxTotalInstances&quot;: 42, # Maximum number of instances that should be started to handle requests for this version.
809 &quot;maxIdleInstances&quot;: 42, # Maximum number of idle instances that should be maintained for this version.
810 &quot;networkUtilization&quot;: { # Target scaling by network usage. Only applicable in the App Engine flexible environment. # Target scaling by network usage.
811 &quot;targetReceivedPacketsPerSecond&quot;: 42, # Target packets received per second.
812 &quot;targetSentPacketsPerSecond&quot;: 42, # Target packets sent per second.
813 &quot;targetSentBytesPerSecond&quot;: 42, # Target bytes sent per second.
814 &quot;targetReceivedBytesPerSecond&quot;: 42, # Target bytes received per second.
815 },
816 &quot;coolDownPeriod&quot;: &quot;A String&quot;, # The time period that the Autoscaler (https://cloud.google.com/compute/docs/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.
817 },
818 &quot;threadsafe&quot;: True or False, # Whether multiple requests can be dispatched to this version at once.
819 &quot;servingStatus&quot;: &quot;A String&quot;, # Current serving status of this version. Only the versions with a SERVING status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an invalid value. Defaults to SERVING.
820 &quot;env&quot;: &quot;A String&quot;, # App Engine execution environment for this version.Defaults to standard.
821 &quot;apiConfig&quot;: { # Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/) configuration for API handlers. # Serving configuration for Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/).Only returned in GET requests if view=FULL is set.
822 &quot;login&quot;: &quot;A String&quot;, # Level of login required to access this resource. Defaults to optional.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700823 &quot;authFailAction&quot;: &quot;A String&quot;, # Action to take when users access resources that require authentication. Defaults to redirect.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700824 &quot;securityLevel&quot;: &quot;A String&quot;, # Security (HTTPS) enforcement for this URL.
825 &quot;url&quot;: &quot;A String&quot;, # URL to serve the endpoint at.
826 &quot;script&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700827 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700828 &quot;zones&quot;: [ # The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
829 &quot;A String&quot;,
830 ],
831 &quot;createTime&quot;: &quot;A String&quot;, # Time that this version was created.@OutputOnly
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700832 },
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700833 ],
834 }</pre>
835</div>
836
837<div class="method">
838 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
839 <pre>Retrieves the next page of results.
840
841Args:
842 previous_request: The request for the previous page. (required)
843 previous_response: The response from the request for the previous page. (required)
844
845Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700846 A request object that you can call &#x27;execute()&#x27; on to request the next
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700847 page. Returns None if there are no more items in the collection.
848 </pre>
849</div>
850
851<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700852 <code class="details" id="patch">patch(appsId, servicesId, versionsId, body=None, updateMask=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700853 <pre>Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:Standard environment
854instance_class (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.instance_class)automatic scaling in the standard environment:
855automatic_scaling.min_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)
856automatic_scaling.max_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)
857automaticScaling.standard_scheduler_settings.max_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings)
858automaticScaling.standard_scheduler_settings.min_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings)
859automaticScaling.standard_scheduler_settings.target_cpu_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings)
860automaticScaling.standard_scheduler_settings.target_throughput_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings)basic scaling or manual scaling in the standard environment:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700861serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.serving_status)
862manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#manualscaling)Flexible environment
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700863serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.serving_status)automatic scaling in the flexible environment:
864automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)
865automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)
866automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700867automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)manual scaling in the flexible environment:
868manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#manualscaling)
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700869
870Args:
Jon Wayne Parrott692617a2017-01-06 09:58:29 -0800871 appsId: string, Part of `name`. Name of the resource to update. Example: apps/myapp/services/default/versions/1. (required)
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700872 servicesId: string, Part of `name`. See documentation of `appsId`. (required)
873 versionsId: string, Part of `name`. See documentation of `appsId`. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700874 body: object, The request body.
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -0700875 The object takes the form of:
876
877{ # A Version resource is a specific set of source code and configuration files that are deployed into a service.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700878 &quot;errorHandlers&quot;: [ # Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
879 { # Custom static error page to be served when an error occurs.
880 &quot;staticFile&quot;: &quot;A String&quot;, # Static file content to be served for this error.
881 &quot;mimeType&quot;: &quot;A String&quot;, # MIME type of file. Defaults to text/html.
882 &quot;errorCode&quot;: &quot;A String&quot;, # Error condition this handler applies to.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700883 },
884 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700885 &quot;createdBy&quot;: &quot;A String&quot;, # Email address of the user who created this version.@OutputOnly
886 &quot;id&quot;: &quot;A String&quot;, # Relative name of the version within the service. Example: v1. Version names can contain only lowercase letters, numbers, or hyphens. Reserved names: &quot;default&quot;, &quot;latest&quot;, and any name with the prefix &quot;ah-&quot;.
887 &quot;envVariables&quot;: { # Environment variables available to the application.Only returned in GET requests if view=FULL is set.
888 &quot;a_key&quot;: &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700889 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700890 &quot;defaultExpiration&quot;: &quot;A String&quot;, # Duration that static files should be cached by web proxies and browsers. Only applicable if the corresponding StaticFilesHandler (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StaticFilesHandler) does not specify its own expiration time.Only returned in GET requests if view=FULL is set.
891 &quot;runtimeApiVersion&quot;: &quot;A String&quot;, # 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/&lt;language&gt;/config/appref
892 &quot;livenessCheck&quot;: { # Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. # Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
893 &quot;failureThreshold&quot;: 42, # Number of consecutive failed checks required before considering the VM unhealthy.
894 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing a HTTP Liveness check. Example: &quot;myapp.appspot.com&quot;
895 &quot;initialDelay&quot;: &quot;A String&quot;, # The initial delay before starting to execute the checks.
896 &quot;timeout&quot;: &quot;A String&quot;, # Time before the check is considered failed.
897 &quot;successThreshold&quot;: 42, # Number of consecutive successful checks required before considering the VM healthy.
898 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
899 &quot;path&quot;: &quot;A String&quot;, # The request path.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700900 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700901 &quot;runtime&quot;: &quot;A String&quot;, # Desired runtime. Example: python27.
902 &quot;basicScaling&quot;: { # 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. # 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.
903 &quot;idleTimeout&quot;: &quot;A String&quot;, # Duration of time after the last request that an instance must wait before the instance is shut down.
904 &quot;maxInstances&quot;: 42, # Maximum number of instances to create for this version.
905 },
906 &quot;deployment&quot;: { # Code and application artifacts used to deploy a version to App Engine. # Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
907 &quot;container&quot;: { # 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. # The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
908 &quot;image&quot;: &quot;A String&quot;, # URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: &quot;gcr.io/my-project/image:tag&quot; or &quot;gcr.io/my-project/image@digest&quot;
909 },
910 &quot;zip&quot;: { # The zip file information for a zip deployment. # The zip file for this deployment, if this is a zip deployment.
911 &quot;sourceUrl&quot;: &quot;A String&quot;, # URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form &#x27;http(s)://storage.googleapis.com/&lt;bucket&gt;/&lt;object&gt;&#x27;.
912 &quot;filesCount&quot;: 42, # 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.
913 },
914 &quot;cloudBuildOptions&quot;: { # 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. # 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.
915 &quot;cloudBuildTimeout&quot;: &quot;A String&quot;, # The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
916 &quot;appYamlPath&quot;: &quot;A String&quot;, # 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.
917 },
918 &quot;files&quot;: { # 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.
919 &quot;a_key&quot;: { # Single source file that is part of the version to be deployed. Each source file that is deployed must be specified separately.
920 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the file.Defaults to the value from Google Cloud Storage.
921 &quot;sha1Sum&quot;: &quot;A String&quot;, # The SHA1 hash of the file, in hex.
922 &quot;sourceUrl&quot;: &quot;A String&quot;, # URL source to use to fetch this file. Must be a URL to a resource in Google Cloud Storage in the form &#x27;http(s)://storage.googleapis.com/&lt;bucket&gt;/&lt;object&gt;&#x27;.
923 },
924 },
925 },
926 &quot;versionUrl&quot;: &quot;A String&quot;, # Serving URL for this version. Example: &quot;https://myversion-dot-myservice-dot-myapp.appspot.com&quot;@OutputOnly
927 &quot;healthCheck&quot;: { # Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Only applicable for instances in App Engine flexible environment. # 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 GET requests if view=FULL is set.
928 &quot;restartThreshold&quot;: 42, # Number of consecutive failed health checks required before an instance is restarted.
929 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
930 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing an HTTP health check. Example: &quot;myapp.appspot.com&quot;
931 &quot;timeout&quot;: &quot;A String&quot;, # Time before the health check is considered failed.
932 &quot;unhealthyThreshold&quot;: 42, # Number of consecutive failed health checks required before removing traffic.
933 &quot;disableHealthCheck&quot;: True or False, # Whether to explicitly disable health checks for this instance.
934 &quot;healthyThreshold&quot;: 42, # Number of consecutive successful health checks required before receiving traffic.
935 },
936 &quot;network&quot;: { # Extra network settings. Only applicable in the App Engine flexible environment. # Extra network settings. Only applicable in the App Engine flexible environment.
937 &quot;name&quot;: &quot;A String&quot;, # Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
938 &quot;sessionAffinity&quot;: True or False, # Enable session affinity. Only applicable in the App Engine flexible environment.
939 &quot;instanceTag&quot;: &quot;A String&quot;, # Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
940 &quot;forwardedPorts&quot;: [ # List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
941 &quot;A String&quot;,
942 ],
943 &quot;subnetworkName&quot;: &quot;A String&quot;, # 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.
944 # If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range.
945 # If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network.
946 # If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
947 },
948 &quot;readinessCheck&quot;: { # Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation. # Configures readiness health checking for instances. Unhealthy instances are not put into the backend traffic rotation.Only returned in GET requests if view=FULL is set.
949 &quot;failureThreshold&quot;: 42, # Number of consecutive failed checks required before removing traffic.
950 &quot;checkInterval&quot;: &quot;A String&quot;, # Interval between health checks.
951 &quot;host&quot;: &quot;A String&quot;, # Host header to send when performing a HTTP Readiness check. Example: &quot;myapp.appspot.com&quot;
952 &quot;successThreshold&quot;: 42, # Number of consecutive successful checks required before receiving traffic.
953 &quot;appStartTimeout&quot;: &quot;A String&quot;, # A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
954 &quot;timeout&quot;: &quot;A String&quot;, # Time before the check is considered failed.
955 &quot;path&quot;: &quot;A String&quot;, # The request path.
956 },
957 &quot;runtimeMainExecutablePath&quot;: &quot;A String&quot;, # The path or name of the app&#x27;s main executable.
958 &quot;entrypoint&quot;: { # The entrypoint for the application. # The entrypoint for the application.
959 &quot;shell&quot;: &quot;A String&quot;, # The format should be a shell command that can be fed to bash -c.
960 },
961 &quot;vm&quot;: True or False, # Whether to deploy this version in a container on a virtual machine.
962 &quot;manualScaling&quot;: { # A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. # A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time.
963 &quot;instances&quot;: 42, # Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
964 },
965 &quot;endpointsApiService&quot;: { # Cloud Endpoints (https://cloud.google.com/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 &quot;service&quot; resource in the Service Management API (https://cloud.google.com/service-management/overview). # Cloud Endpoints configuration.If endpoints_api_service is set, the Cloud Endpoints Extensible Service Proxy will be provided to serve the API implemented by the app.
966 &quot;disableTraceSampling&quot;: True or False, # Enable or disable trace sampling. By default, this is set to false for enabled.
967 &quot;name&quot;: &quot;A String&quot;, # Endpoints service name which is the name of the &quot;service&quot; resource in the Service Management API. For example &quot;myapi.endpoints.myproject.cloud.goog&quot;
968 &quot;configId&quot;: &quot;A String&quot;, # Endpoints service configuration ID as specified by the Service Management API. For example &quot;2016-09-19r1&quot;.By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
969 &quot;rolloutStrategy&quot;: &quot;A String&quot;, # Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
970 },
971 &quot;nobuildFilesRegex&quot;: &quot;A String&quot;, # Files that match this pattern will not be built into this version. Only applicable for Go runtimes.Only returned in GET requests if view=FULL is set.
972 &quot;inboundServices&quot;: [ # Before an application can receive email or XMPP messages, the application must be configured to enable the service.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700973 &quot;A String&quot;,
974 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700975 &quot;name&quot;: &quot;A String&quot;, # Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.@OutputOnly
976 &quot;vpcAccessConnector&quot;: { # VPC access connector specification. # Enables VPC connectivity for standard apps.
977 &quot;name&quot;: &quot;A String&quot;, # Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
978 },
979 &quot;handlers&quot;: [ # 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 GET requests if view=FULL is set.
980 { # 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.
981 &quot;authFailAction&quot;: &quot;A String&quot;, # Action to take when users access resources that require authentication. Defaults to redirect.
982 &quot;login&quot;: &quot;A String&quot;, # Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
983 &quot;script&quot;: { # Executes a script to handle the request that matches the URL pattern. # Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example &quot;script&quot;: &quot;auto&quot;.
984 &quot;scriptPath&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700985 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700986 &quot;urlRegex&quot;: &quot;A String&quot;, # 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.
987 &quot;apiEndpoint&quot;: { # Uses Google Cloud Endpoints to handle requests. # Uses API Endpoints to handle requests.
988 &quot;scriptPath&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
989 },
990 &quot;securityLevel&quot;: &quot;A String&quot;, # Security (HTTPS) enforcement for this URL.
991 &quot;staticFiles&quot;: { # 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. # Returns the contents of a file, such as an image, as the response.
992 &quot;path&quot;: &quot;A String&quot;, # 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.
993 &quot;expiration&quot;: &quot;A String&quot;, # Time a static file served by this handler should be cached by web proxies and browsers.
994 &quot;applicationReadable&quot;: True or False, # 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.
995 &quot;httpHeaders&quot;: { # HTTP headers to use for all responses from these URLs.
996 &quot;a_key&quot;: &quot;A String&quot;,
997 },
998 &quot;requireMatchingFile&quot;: True or False, # Whether this handler should match the request if the file referenced by the handler does not exist.
999 &quot;uploadPathRegex&quot;: &quot;A String&quot;, # Regular expression that matches the file paths for all files that should be referenced by this handler.
1000 &quot;mimeType&quot;: &quot;A String&quot;, # MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file&#x27;s filename extension.
1001 },
1002 &quot;redirectHttpResponseCode&quot;: &quot;A String&quot;, # 30x code to use when performing redirects for the secure field. Defaults to 302.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -07001003 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001004 ],
1005 &quot;diskUsageBytes&quot;: &quot;A String&quot;, # Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.@OutputOnly
1006 &quot;betaSettings&quot;: { # Metadata settings that are supplied to this version to enable beta runtime features.
1007 &quot;a_key&quot;: &quot;A String&quot;,
1008 },
1009 &quot;instanceClass&quot;: &quot;A String&quot;, # Instance class that is used to run this version. Valid values are:
1010 # AutomaticScaling: F1, F2, F4, F4_1G
1011 # ManualScaling or BasicScaling: B1, B2, B4, B8, B4_1GDefaults to F1 for AutomaticScaling and B1 for ManualScaling or BasicScaling.
1012 &quot;runtimeChannel&quot;: &quot;A String&quot;, # The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
1013 &quot;libraries&quot;: [ # Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
1014 { # Third-party Python runtime library that is required by the application.
1015 &quot;version&quot;: &quot;A String&quot;, # Version of the library to select, or &quot;latest&quot;.
1016 &quot;name&quot;: &quot;A String&quot;, # Name of the library. Example: &quot;django&quot;.
1017 },
1018 ],
1019 &quot;resources&quot;: { # Machine resources for a version. # Machine resources for this version. Only applicable in the App Engine flexible environment.
1020 &quot;cpu&quot;: 3.14, # Number of CPU cores needed.
1021 &quot;memoryGb&quot;: 3.14, # Memory (GB) needed.
1022 &quot;diskGb&quot;: 3.14, # Disk size (GB) needed.
1023 &quot;volumes&quot;: [ # User specified volumes.
1024 { # Volumes mounted within the app container. Only applicable in the App Engine flexible environment.
1025 &quot;name&quot;: &quot;A String&quot;, # Unique name for the volume.
1026 &quot;sizeGb&quot;: 3.14, # Volume size in gigabytes.
1027 &quot;volumeType&quot;: &quot;A String&quot;, # Underlying volume type, e.g. &#x27;tmpfs&#x27;.
1028 },
1029 ],
1030 },
1031 &quot;automaticScaling&quot;: { # Automatic scaling is based on request rate, response latencies, and other application metrics. # Automatic scaling is based on request rate, response latencies, and other application metrics.
1032 &quot;cpuUtilization&quot;: { # Target scaling by CPU usage. # Target scaling by CPU usage.
1033 &quot;targetUtilization&quot;: 3.14, # Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
1034 &quot;aggregationWindowLength&quot;: &quot;A String&quot;, # Period of time over which CPU utilization is calculated.
1035 },
1036 &quot;minIdleInstances&quot;: 42, # Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
1037 &quot;requestUtilization&quot;: { # Target scaling by request utilization. Only applicable in the App Engine flexible environment. # Target scaling by request utilization.
1038 &quot;targetConcurrentRequests&quot;: 42, # Target number of concurrent requests.
1039 &quot;targetRequestCountPerSecond&quot;: 42, # Target requests per second.
1040 },
1041 &quot;diskUtilization&quot;: { # Target scaling by disk usage. Only applicable in the App Engine flexible environment. # Target scaling by disk usage.
1042 &quot;targetWriteOpsPerSecond&quot;: 42, # Target ops written per second.
1043 &quot;targetWriteBytesPerSecond&quot;: 42, # Target bytes written per second.
1044 &quot;targetReadOpsPerSecond&quot;: 42, # Target ops read per seconds.
1045 &quot;targetReadBytesPerSecond&quot;: 42, # Target bytes read per second.
1046 },
1047 &quot;maxConcurrentRequests&quot;: 42, # Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
1048 &quot;maxPendingLatency&quot;: &quot;A String&quot;, # Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
1049 &quot;minTotalInstances&quot;: 42, # Minimum number of running instances that should be maintained for this version.
1050 &quot;standardSchedulerSettings&quot;: { # Scheduler settings for standard environment. # Scheduler settings for standard environment.
1051 &quot;targetCpuUtilization&quot;: 3.14, # Target CPU utilization ratio to maintain when scaling.
1052 &quot;minInstances&quot;: 42, # Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
1053 &quot;targetThroughputUtilization&quot;: 3.14, # Target throughput utilization ratio to maintain when scaling
1054 &quot;maxInstances&quot;: 42, # Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
1055 },
1056 &quot;minPendingLatency&quot;: &quot;A String&quot;, # Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
1057 &quot;maxTotalInstances&quot;: 42, # Maximum number of instances that should be started to handle requests for this version.
1058 &quot;maxIdleInstances&quot;: 42, # Maximum number of idle instances that should be maintained for this version.
1059 &quot;networkUtilization&quot;: { # Target scaling by network usage. Only applicable in the App Engine flexible environment. # Target scaling by network usage.
1060 &quot;targetReceivedPacketsPerSecond&quot;: 42, # Target packets received per second.
1061 &quot;targetSentPacketsPerSecond&quot;: 42, # Target packets sent per second.
1062 &quot;targetSentBytesPerSecond&quot;: 42, # Target bytes sent per second.
1063 &quot;targetReceivedBytesPerSecond&quot;: 42, # Target bytes received per second.
1064 },
1065 &quot;coolDownPeriod&quot;: &quot;A String&quot;, # The time period that the Autoscaler (https://cloud.google.com/compute/docs/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.
1066 },
1067 &quot;threadsafe&quot;: True or False, # Whether multiple requests can be dispatched to this version at once.
1068 &quot;servingStatus&quot;: &quot;A String&quot;, # Current serving status of this version. Only the versions with a SERVING status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an invalid value. Defaults to SERVING.
1069 &quot;env&quot;: &quot;A String&quot;, # App Engine execution environment for this version.Defaults to standard.
1070 &quot;apiConfig&quot;: { # Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/) configuration for API handlers. # Serving configuration for Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/).Only returned in GET requests if view=FULL is set.
1071 &quot;login&quot;: &quot;A String&quot;, # Level of login required to access this resource. Defaults to optional.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -07001072 &quot;authFailAction&quot;: &quot;A String&quot;, # Action to take when users access resources that require authentication. Defaults to redirect.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001073 &quot;securityLevel&quot;: &quot;A String&quot;, # Security (HTTPS) enforcement for this URL.
1074 &quot;url&quot;: &quot;A String&quot;, # URL to serve the endpoint at.
1075 &quot;script&quot;: &quot;A String&quot;, # Path to the script from the application root directory.
Bu Sun Kim65020912020-05-20 12:08:20 -07001076 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001077 &quot;zones&quot;: [ # The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
1078 &quot;A String&quot;,
1079 ],
1080 &quot;createTime&quot;: &quot;A String&quot;, # Time that this version was created.@OutputOnly
1081 }
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -07001082
1083 updateMask: string, Standard field mask for the set of fields to be updated.
1084 x__xgafv: string, V1 error format.
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -04001085 Allowed values
1086 1 - v1 error format
1087 2 - v2 error format
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -07001088
1089Returns:
1090 An object of the form:
1091
1092 { # This resource represents a long-running operation that is the result of a network API call.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001093 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the name should be a resource name ending with operations/{unique_id}.
Bu Sun Kim65020912020-05-20 12:08:20 -07001094 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original method is standard Get/Create/Update, the response should be the resource. For other methods, the response should have the type XxxResponse, where Xxx is the original method name. For example, if the original method name is TakeSnapshot(), the inferred response type is TakeSnapshotResponse.
1095 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Dan O'Mearadd494642020-05-01 07:42:23 -07001096 },
Bu Sun Kim65020912020-05-20 12:08:20 -07001097 &quot;error&quot;: { # The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). Each Status message contains three pieces of data: error code, error message, and error details.You can find out more about this error model and how to work with it in the API Design Guide (https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
1098 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -07001099 {
Bu Sun Kim65020912020-05-20 12:08:20 -07001100 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -07001101 },
1102 ],
Bu Sun Kim65020912020-05-20 12:08:20 -07001103 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
1104 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
1105 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001106 &quot;done&quot;: True or False, # If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available.
1107 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
1108 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
1109 },
Jon Wayne Parrott7d5badb2016-08-16 12:44:29 -07001110 }</pre>
1111</div>
1112
1113</body></html>