blob: 4924e0bd8a066a4b0dd807c19f89b8f73614e8c2 [file] [log] [blame]
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -04001<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_v1beta.html">App Engine Admin API</a> . <a href="appengine_v1beta.apps.html">apps</a></h1>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -040076<h2>Instance Methods</h2>
77<p class="toc_element">
Sai Cheemalapatie833b792017-03-24 15:06:46 -070078 <code><a href="appengine_v1beta.apps.authorizedCertificates.html">authorizedCertificates()</a></code>
79</p>
80<p class="firstline">Returns the authorizedCertificates Resource.</p>
81
82<p class="toc_element">
83 <code><a href="appengine_v1beta.apps.authorizedDomains.html">authorizedDomains()</a></code>
84</p>
85<p class="firstline">Returns the authorizedDomains Resource.</p>
86
87<p class="toc_element">
88 <code><a href="appengine_v1beta.apps.domainMappings.html">domainMappings()</a></code>
89</p>
90<p class="firstline">Returns the domainMappings Resource.</p>
91
92<p class="toc_element">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070093 <code><a href="appengine_v1beta.apps.firewall.html">firewall()</a></code>
94</p>
95<p class="firstline">Returns the firewall Resource.</p>
96
97<p class="toc_element">
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -040098 <code><a href="appengine_v1beta.apps.locations.html">locations()</a></code>
99</p>
100<p class="firstline">Returns the locations Resource.</p>
101
102<p class="toc_element">
103 <code><a href="appengine_v1beta.apps.operations.html">operations()</a></code>
104</p>
105<p class="firstline">Returns the operations Resource.</p>
106
107<p class="toc_element">
108 <code><a href="appengine_v1beta.apps.services.html">services()</a></code>
109</p>
110<p class="firstline">Returns the services Resource.</p>
111
112<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -0700113 <code><a href="#create">create(body=None, x__xgafv=None)</a></code></p>
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400114<p class="firstline">Creates an App Engine application for a Google Cloud Platform project. Required fields:</p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400115<p class="toc_element">
116 <code><a href="#get">get(appsId, x__xgafv=None)</a></code></p>
117<p class="firstline">Gets information about an application.</p>
118<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -0700119 <code><a href="#patch">patch(appsId, body=None, updateMask=None, x__xgafv=None)</a></code></p>
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400120<p class="firstline">Updates the specified Application resource. You can update the following fields:</p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400121<p class="toc_element">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700122 <code><a href="#repair">repair(appsId, body=None, x__xgafv=None)</a></code></p>
123<p class="firstline">Recreates the required App Engine features for the specified App Engine application, for example a Cloud Storage bucket or App Engine service account. Use this method if you receive an error message about a missing feature, for example, Error retrieving the App Engine service account. If you have deleted your App Engine service account, this will not be able to recreate it. Instead, you should attempt to use the IAM undelete API if possible at https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts/undelete?apix_params=%7B"name"%3A"projects%2F-%2FserviceAccounts%2Funique_id"%2C"resource"%3A%7B%7D%7D . If the deletion was recent, the numeric ID can be found in the Cloud Console Activity Log.</p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400124<h3>Method Details</h3>
125<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700126 <code class="details" id="create">create(body=None, x__xgafv=None)</code>
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400127 <pre>Creates an App Engine application for a Google Cloud Platform project. Required fields:
128id - The ID of the target Cloud Platform project.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700129location - The region (https://cloud.google.com/appengine/docs/locations) where you want the App Engine application located.For more information about App Engine applications, see Managing Projects, Applications, and Billing (https://cloud.google.com/appengine/docs/standard/python/console/).
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400130
131Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700132 body: object, The request body.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400133 The object takes the form of:
134
135{ # An Application resource contains the top-level configuration of an App Engine application.
Bu Sun Kim65020912020-05-20 12:08:20 -0700136 &quot;defaultHostname&quot;: &quot;A String&quot;, # Hostname used to reach this application, as resolved by App Engine.@OutputOnly
137 &quot;featureSettings&quot;: { # The feature specific settings to be used in the application. These define behaviors that are user configurable. # The feature specific settings to be used in the application.
138 &quot;useContainerOptimizedOs&quot;: True or False, # If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
139 &quot;splitHealthChecks&quot;: True or False, # Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to &#x27;readiness_check&#x27; and &#x27;liveness_check&#x27; values instead of &#x27;health_check&#x27; ones. Once the legacy &#x27;health_check&#x27; behavior is deprecated, and this value is always true, this setting can be removed.
140 },
141 &quot;authDomain&quot;: &quot;A String&quot;, # Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
142 &quot;iap&quot;: { # Identity-Aware Proxy
143 &quot;oauth2ClientId&quot;: &quot;A String&quot;, # OAuth2 client ID to use for the authentication flow.
144 &quot;oauth2ClientSecretSha256&quot;: &quot;A String&quot;, # Hex-encoded SHA-256 hash of the client secret.@OutputOnly
145 &quot;enabled&quot;: True or False, # Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
146 &quot;oauth2ClientSecret&quot;: &quot;A String&quot;, # OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
147 },
148 &quot;codeBucket&quot;: &quot;A String&quot;, # Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.@OutputOnly
149 &quot;defaultBucket&quot;: &quot;A String&quot;, # Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly
150 &quot;dispatchRules&quot;: [ # HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400151 { # Rules to match an HTTP request and dispatch that request to a service.
Bu Sun Kim65020912020-05-20 12:08:20 -0700152 &quot;path&quot;: &quot;A String&quot;, # Pathname within the host. Must start with a &quot;/&quot;. A single &quot;*&quot; can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
153 &quot;domain&quot;: &quot;A String&quot;, # Domain name to match against. The wildcard &quot;*&quot; is supported if specified before a period: &quot;*.&quot;.Defaults to matching all domains: &quot;*&quot;.
154 &quot;service&quot;: &quot;A String&quot;, # Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400155 },
156 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700157 &quot;gcrDomain&quot;: &quot;A String&quot;, # The Google Container Registry domain used for storing managed build docker images for this application.
158 &quot;name&quot;: &quot;A String&quot;, # Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly
159 &quot;databaseType&quot;: &quot;A String&quot;, # The type of the Cloud Firestore or Cloud Datastore database associated with this application.
160 &quot;defaultCookieExpiration&quot;: &quot;A String&quot;, # Cookie expiration policy for this application.
161 &quot;id&quot;: &quot;A String&quot;, # Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.
162 &quot;locationId&quot;: &quot;A String&quot;, # Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application&#x27;s end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
163 &quot;servingStatus&quot;: &quot;A String&quot;, # Serving status of this application.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400164 }
165
166 x__xgafv: string, V1 error format.
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400167 Allowed values
168 1 - v1 error format
169 2 - v2 error format
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400170
171Returns:
172 An object of the form:
173
174 { # This resource represents a long-running operation that is the result of a network API call.
Bu Sun Kim65020912020-05-20 12:08:20 -0700175 &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.
176 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
177 },
178 &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}.
179 &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.
180 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400181 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700182 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400183 },
184 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700185 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
186 &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.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400187 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700188 &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.
189 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400190 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700191 &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.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400192 }</pre>
193</div>
194
195<div class="method">
196 <code class="details" id="get">get(appsId, x__xgafv=None)</code>
197 <pre>Gets information about an application.
198
199Args:
200 appsId: string, Part of `name`. Name of the Application resource to get. Example: apps/myapp. (required)
201 x__xgafv: string, V1 error format.
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400202 Allowed values
203 1 - v1 error format
204 2 - v2 error format
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400205
206Returns:
207 An object of the form:
208
209 { # An Application resource contains the top-level configuration of an App Engine application.
Bu Sun Kim65020912020-05-20 12:08:20 -0700210 &quot;defaultHostname&quot;: &quot;A String&quot;, # Hostname used to reach this application, as resolved by App Engine.@OutputOnly
211 &quot;featureSettings&quot;: { # The feature specific settings to be used in the application. These define behaviors that are user configurable. # The feature specific settings to be used in the application.
212 &quot;useContainerOptimizedOs&quot;: True or False, # If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
213 &quot;splitHealthChecks&quot;: True or False, # Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to &#x27;readiness_check&#x27; and &#x27;liveness_check&#x27; values instead of &#x27;health_check&#x27; ones. Once the legacy &#x27;health_check&#x27; behavior is deprecated, and this value is always true, this setting can be removed.
214 },
215 &quot;authDomain&quot;: &quot;A String&quot;, # Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
216 &quot;iap&quot;: { # Identity-Aware Proxy
217 &quot;oauth2ClientId&quot;: &quot;A String&quot;, # OAuth2 client ID to use for the authentication flow.
218 &quot;oauth2ClientSecretSha256&quot;: &quot;A String&quot;, # Hex-encoded SHA-256 hash of the client secret.@OutputOnly
219 &quot;enabled&quot;: True or False, # Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
220 &quot;oauth2ClientSecret&quot;: &quot;A String&quot;, # OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
221 },
222 &quot;codeBucket&quot;: &quot;A String&quot;, # Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.@OutputOnly
223 &quot;defaultBucket&quot;: &quot;A String&quot;, # Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly
224 &quot;dispatchRules&quot;: [ # HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400225 { # Rules to match an HTTP request and dispatch that request to a service.
Bu Sun Kim65020912020-05-20 12:08:20 -0700226 &quot;path&quot;: &quot;A String&quot;, # Pathname within the host. Must start with a &quot;/&quot;. A single &quot;*&quot; can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
227 &quot;domain&quot;: &quot;A String&quot;, # Domain name to match against. The wildcard &quot;*&quot; is supported if specified before a period: &quot;*.&quot;.Defaults to matching all domains: &quot;*&quot;.
228 &quot;service&quot;: &quot;A String&quot;, # Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400229 },
230 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700231 &quot;gcrDomain&quot;: &quot;A String&quot;, # The Google Container Registry domain used for storing managed build docker images for this application.
232 &quot;name&quot;: &quot;A String&quot;, # Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly
233 &quot;databaseType&quot;: &quot;A String&quot;, # The type of the Cloud Firestore or Cloud Datastore database associated with this application.
234 &quot;defaultCookieExpiration&quot;: &quot;A String&quot;, # Cookie expiration policy for this application.
235 &quot;id&quot;: &quot;A String&quot;, # Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.
236 &quot;locationId&quot;: &quot;A String&quot;, # Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application&#x27;s end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
237 &quot;servingStatus&quot;: &quot;A String&quot;, # Serving status of this application.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400238 }</pre>
239</div>
240
241<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700242 <code class="details" id="patch">patch(appsId, body=None, updateMask=None, x__xgafv=None)</code>
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400243 <pre>Updates the specified Application resource. You can update the following fields:
244auth_domain - Google authentication domain for controlling user access to the application.
245default_cookie_expiration - Cookie expiration policy for the application.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400246
247Args:
248 appsId: string, Part of `name`. Name of the Application resource to update. Example: apps/myapp. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700249 body: object, The request body.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400250 The object takes the form of:
251
252{ # An Application resource contains the top-level configuration of an App Engine application.
Bu Sun Kim65020912020-05-20 12:08:20 -0700253 &quot;defaultHostname&quot;: &quot;A String&quot;, # Hostname used to reach this application, as resolved by App Engine.@OutputOnly
254 &quot;featureSettings&quot;: { # The feature specific settings to be used in the application. These define behaviors that are user configurable. # The feature specific settings to be used in the application.
255 &quot;useContainerOptimizedOs&quot;: True or False, # If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
256 &quot;splitHealthChecks&quot;: True or False, # Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to &#x27;readiness_check&#x27; and &#x27;liveness_check&#x27; values instead of &#x27;health_check&#x27; ones. Once the legacy &#x27;health_check&#x27; behavior is deprecated, and this value is always true, this setting can be removed.
257 },
258 &quot;authDomain&quot;: &quot;A String&quot;, # Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
259 &quot;iap&quot;: { # Identity-Aware Proxy
260 &quot;oauth2ClientId&quot;: &quot;A String&quot;, # OAuth2 client ID to use for the authentication flow.
261 &quot;oauth2ClientSecretSha256&quot;: &quot;A String&quot;, # Hex-encoded SHA-256 hash of the client secret.@OutputOnly
262 &quot;enabled&quot;: True or False, # Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
263 &quot;oauth2ClientSecret&quot;: &quot;A String&quot;, # OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
264 },
265 &quot;codeBucket&quot;: &quot;A String&quot;, # Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.@OutputOnly
266 &quot;defaultBucket&quot;: &quot;A String&quot;, # Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly
267 &quot;dispatchRules&quot;: [ # HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400268 { # Rules to match an HTTP request and dispatch that request to a service.
Bu Sun Kim65020912020-05-20 12:08:20 -0700269 &quot;path&quot;: &quot;A String&quot;, # Pathname within the host. Must start with a &quot;/&quot;. A single &quot;*&quot; can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
270 &quot;domain&quot;: &quot;A String&quot;, # Domain name to match against. The wildcard &quot;*&quot; is supported if specified before a period: &quot;*.&quot;.Defaults to matching all domains: &quot;*&quot;.
271 &quot;service&quot;: &quot;A String&quot;, # Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400272 },
273 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700274 &quot;gcrDomain&quot;: &quot;A String&quot;, # The Google Container Registry domain used for storing managed build docker images for this application.
275 &quot;name&quot;: &quot;A String&quot;, # Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly
276 &quot;databaseType&quot;: &quot;A String&quot;, # The type of the Cloud Firestore or Cloud Datastore database associated with this application.
277 &quot;defaultCookieExpiration&quot;: &quot;A String&quot;, # Cookie expiration policy for this application.
278 &quot;id&quot;: &quot;A String&quot;, # Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.
279 &quot;locationId&quot;: &quot;A String&quot;, # Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application&#x27;s end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
280 &quot;servingStatus&quot;: &quot;A String&quot;, # Serving status of this application.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400281 }
282
283 updateMask: string, Standard field mask for the set of fields to be updated.
284 x__xgafv: string, V1 error format.
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400285 Allowed values
286 1 - v1 error format
287 2 - v2 error format
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400288
289Returns:
290 An object of the form:
291
292 { # This resource represents a long-running operation that is the result of a network API call.
Bu Sun Kim65020912020-05-20 12:08:20 -0700293 &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.
294 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
295 },
296 &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}.
297 &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.
298 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400299 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700300 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400301 },
302 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700303 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
304 &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.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400305 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700306 &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.
307 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400308 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700309 &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.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400310 }</pre>
311</div>
312
313<div class="method">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700314 <code class="details" id="repair">repair(appsId, body=None, x__xgafv=None)</code>
Bu Sun Kim65020912020-05-20 12:08:20 -0700315 <pre>Recreates the required App Engine features for the specified App Engine application, for example a Cloud Storage bucket or App Engine service account. Use this method if you receive an error message about a missing feature, for example, Error retrieving the App Engine service account. If you have deleted your App Engine service account, this will not be able to recreate it. Instead, you should attempt to use the IAM undelete API if possible at https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts/undelete?apix_params=%7B&quot;name&quot;%3A&quot;projects%2F-%2FserviceAccounts%2Funique_id&quot;%2C&quot;resource&quot;%3A%7B%7D%7D . If the deletion was recent, the numeric ID can be found in the Cloud Console Activity Log.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400316
317Args:
318 appsId: string, Part of `name`. Name of the application to repair. Example: apps/myapp (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700319 body: object, The request body.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400320 The object takes the form of:
321
Bu Sun Kim65020912020-05-20 12:08:20 -0700322{ # Request message for &#x27;Applications.RepairApplication&#x27;.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400323 }
324
325 x__xgafv: string, V1 error format.
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400326 Allowed values
327 1 - v1 error format
328 2 - v2 error format
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400329
330Returns:
331 An object of the form:
332
333 { # This resource represents a long-running operation that is the result of a network API call.
Bu Sun Kim65020912020-05-20 12:08:20 -0700334 &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.
335 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
336 },
337 &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}.
338 &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.
339 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400340 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700341 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400342 },
343 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700344 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
345 &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.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400346 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700347 &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.
348 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400349 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700350 &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.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400351 }</pre>
352</div>
353
354</body></html>