• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<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
75<h1><a href="appengine_v1beta.html">App Engine Admin API</a> . <a href="appengine_v1beta.apps.html">apps</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <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">
93  <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">
98  <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">
113  <code><a href="#create">create(body, x__xgafv=None)</a></code></p>
114<p class="firstline">Creates an App Engine application for a Google Cloud Platform project. Required fields:</p>
115<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">
119  <code><a href="#patch">patch(appsId, body, updateMask=None, x__xgafv=None)</a></code></p>
120<p class="firstline">Updates the specified Application resource. You can update the following fields:</p>
121<p class="toc_element">
122  <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>
124<h3>Method Details</h3>
125<div class="method">
126    <code class="details" id="create">create(body, x__xgafv=None)</code>
127  <pre>Creates an App Engine application for a Google Cloud Platform project. Required fields:
128id - The ID of the target Cloud Platform project.
129location - 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/).
130
131Args:
132  body: object, The request body. (required)
133    The object takes the form of:
134
135{ # An Application resource contains the top-level configuration of an App Engine application.
136    "defaultHostname": "A String", # Hostname used to reach this application, as resolved by App Engine.@OutputOnly
137    "name": "A String", # Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly
138    "gcrDomain": "A String", # The Google Container Registry domain used for storing managed build docker images for this application.
139    "codeBucket": "A String", # 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
140    "defaultBucket": "A String", # Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly
141    "dispatchRules": [ # 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.
142      { # Rules to match an HTTP request and dispatch that request to a service.
143        "path": "A String", # Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
144        "domain": "A String", # Domain name to match against. The wildcard "*" is supported if specified before a period: "*.".Defaults to matching all domains: "*".
145        "service": "A String", # Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
146      },
147    ],
148    "defaultCookieExpiration": "A String", # Cookie expiration policy for this application.
149    "servingStatus": "A String", # Serving status of this application.
150    "locationId": "A String", # 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's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
151    "featureSettings": { # 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.
152      "useContainerOptimizedOs": 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.
153      "splitHealthChecks": 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 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
154    },
155    "id": "A String", # 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.
156    "authDomain": "A String", # Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
157    "iap": { # Identity-Aware Proxy
158      "oauth2ClientInfo": { # InputOnly OAuth client info required to generate client id to be used for IAP.
159        "applicationName": "A String", # Application name to be used in OAuth consent screen.
160        "clientName": "A String", # Nameof the client to be generated. Optional - If not provided, the name will be autogenerated by the backend.
161        "developerEmailAddress": "A String", # Developer's information to be used in OAuth consent screen.
162      },
163      "oauth2ClientSecretSha256": "A String", # Hex-encoded SHA-256 hash of the client secret.@OutputOnly
164      "enabled": 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.
165      "oauth2ClientSecret": "A String", # 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
166      "oauth2ClientId": "A String", # OAuth2 client ID to use for the authentication flow.
167    },
168  }
169
170  x__xgafv: string, V1 error format.
171    Allowed values
172      1 - v1 error format
173      2 - v2 error format
174
175Returns:
176  An object of the form:
177
178    { # This resource represents a long-running operation that is the result of a network API call.
179    "metadata": { # 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.
180      "a_key": "", # Properties of the object. Contains field @type with type URL.
181    },
182    "error": { # 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.
183      "message": "A String", # 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.
184      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
185      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
186        {
187          "a_key": "", # Properties of the object. Contains field @type with type URL.
188        },
189      ],
190    },
191    "done": 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.
192    "response": { # 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.
193      "a_key": "", # Properties of the object. Contains field @type with type URL.
194    },
195    "name": "A String", # 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}.
196  }</pre>
197</div>
198
199<div class="method">
200    <code class="details" id="get">get(appsId, x__xgafv=None)</code>
201  <pre>Gets information about an application.
202
203Args:
204  appsId: string, Part of `name`. Name of the Application resource to get. Example: apps/myapp. (required)
205  x__xgafv: string, V1 error format.
206    Allowed values
207      1 - v1 error format
208      2 - v2 error format
209
210Returns:
211  An object of the form:
212
213    { # An Application resource contains the top-level configuration of an App Engine application.
214      "defaultHostname": "A String", # Hostname used to reach this application, as resolved by App Engine.@OutputOnly
215      "name": "A String", # Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly
216      "gcrDomain": "A String", # The Google Container Registry domain used for storing managed build docker images for this application.
217      "codeBucket": "A String", # 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
218      "defaultBucket": "A String", # Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly
219      "dispatchRules": [ # 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.
220        { # Rules to match an HTTP request and dispatch that request to a service.
221          "path": "A String", # Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
222          "domain": "A String", # Domain name to match against. The wildcard "*" is supported if specified before a period: "*.".Defaults to matching all domains: "*".
223          "service": "A String", # Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
224        },
225      ],
226      "defaultCookieExpiration": "A String", # Cookie expiration policy for this application.
227      "servingStatus": "A String", # Serving status of this application.
228      "locationId": "A String", # 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's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
229      "featureSettings": { # 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.
230        "useContainerOptimizedOs": 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.
231        "splitHealthChecks": 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 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
232      },
233      "id": "A String", # 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.
234      "authDomain": "A String", # Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
235      "iap": { # Identity-Aware Proxy
236        "oauth2ClientInfo": { # InputOnly OAuth client info required to generate client id to be used for IAP.
237          "applicationName": "A String", # Application name to be used in OAuth consent screen.
238          "clientName": "A String", # Nameof the client to be generated. Optional - If not provided, the name will be autogenerated by the backend.
239          "developerEmailAddress": "A String", # Developer's information to be used in OAuth consent screen.
240        },
241        "oauth2ClientSecretSha256": "A String", # Hex-encoded SHA-256 hash of the client secret.@OutputOnly
242        "enabled": 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.
243        "oauth2ClientSecret": "A String", # 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
244        "oauth2ClientId": "A String", # OAuth2 client ID to use for the authentication flow.
245      },
246    }</pre>
247</div>
248
249<div class="method">
250    <code class="details" id="patch">patch(appsId, body, updateMask=None, x__xgafv=None)</code>
251  <pre>Updates the specified Application resource. You can update the following fields:
252auth_domain - Google authentication domain for controlling user access to the application.
253default_cookie_expiration - Cookie expiration policy for the application.
254
255Args:
256  appsId: string, Part of `name`. Name of the Application resource to update. Example: apps/myapp. (required)
257  body: object, The request body. (required)
258    The object takes the form of:
259
260{ # An Application resource contains the top-level configuration of an App Engine application.
261    "defaultHostname": "A String", # Hostname used to reach this application, as resolved by App Engine.@OutputOnly
262    "name": "A String", # Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly
263    "gcrDomain": "A String", # The Google Container Registry domain used for storing managed build docker images for this application.
264    "codeBucket": "A String", # 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
265    "defaultBucket": "A String", # Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly
266    "dispatchRules": [ # 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.
267      { # Rules to match an HTTP request and dispatch that request to a service.
268        "path": "A String", # Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
269        "domain": "A String", # Domain name to match against. The wildcard "*" is supported if specified before a period: "*.".Defaults to matching all domains: "*".
270        "service": "A String", # Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
271      },
272    ],
273    "defaultCookieExpiration": "A String", # Cookie expiration policy for this application.
274    "servingStatus": "A String", # Serving status of this application.
275    "locationId": "A String", # 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's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
276    "featureSettings": { # 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.
277      "useContainerOptimizedOs": 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.
278      "splitHealthChecks": 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 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
279    },
280    "id": "A String", # 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.
281    "authDomain": "A String", # Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
282    "iap": { # Identity-Aware Proxy
283      "oauth2ClientInfo": { # InputOnly OAuth client info required to generate client id to be used for IAP.
284        "applicationName": "A String", # Application name to be used in OAuth consent screen.
285        "clientName": "A String", # Nameof the client to be generated. Optional - If not provided, the name will be autogenerated by the backend.
286        "developerEmailAddress": "A String", # Developer's information to be used in OAuth consent screen.
287      },
288      "oauth2ClientSecretSha256": "A String", # Hex-encoded SHA-256 hash of the client secret.@OutputOnly
289      "enabled": 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.
290      "oauth2ClientSecret": "A String", # 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
291      "oauth2ClientId": "A String", # OAuth2 client ID to use for the authentication flow.
292    },
293  }
294
295  updateMask: string, Standard field mask for the set of fields to be updated.
296  x__xgafv: string, V1 error format.
297    Allowed values
298      1 - v1 error format
299      2 - v2 error format
300
301Returns:
302  An object of the form:
303
304    { # This resource represents a long-running operation that is the result of a network API call.
305    "metadata": { # 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.
306      "a_key": "", # Properties of the object. Contains field @type with type URL.
307    },
308    "error": { # 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.
309      "message": "A String", # 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.
310      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
311      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
312        {
313          "a_key": "", # Properties of the object. Contains field @type with type URL.
314        },
315      ],
316    },
317    "done": 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.
318    "response": { # 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.
319      "a_key": "", # Properties of the object. Contains field @type with type URL.
320    },
321    "name": "A String", # 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}.
322  }</pre>
323</div>
324
325<div class="method">
326    <code class="details" id="repair">repair(appsId, body=None, x__xgafv=None)</code>
327  <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"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.
328
329Args:
330  appsId: string, Part of `name`. Name of the application to repair. Example: apps/myapp (required)
331  body: object, The request body.
332    The object takes the form of:
333
334{ # Request message for 'Applications.RepairApplication'.
335  }
336
337  x__xgafv: string, V1 error format.
338    Allowed values
339      1 - v1 error format
340      2 - v2 error format
341
342Returns:
343  An object of the form:
344
345    { # This resource represents a long-running operation that is the result of a network API call.
346    "metadata": { # 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.
347      "a_key": "", # Properties of the object. Contains field @type with type URL.
348    },
349    "error": { # 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.
350      "message": "A String", # 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.
351      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
352      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
353        {
354          "a_key": "", # Properties of the object. Contains field @type with type URL.
355        },
356      ],
357    },
358    "done": 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.
359    "response": { # 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.
360      "a_key": "", # Properties of the object. Contains field @type with type URL.
361    },
362    "name": "A String", # 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}.
363  }</pre>
364</div>
365
366</body></html>