You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
projectsId: string, Part of `name`. Name of the Application resource to get. Example: apps/myapp. (required)
95
+
locationsId: string, Part of `name`. See documentation of `projectsId`. (required)
96
+
applicationsId: string, Part of `name`. See documentation of `projectsId`. (required)
97
+
x__xgafv: string, V1 error format.
98
+
Allowed values
99
+
1 - v1 error format
100
+
2 - v2 error format
101
+
102
+
Returns:
103
+
An object of the form:
104
+
105
+
{ # An Application resource contains the top-level configuration of an App Engine application.
106
+
"authDomain": "A String", # Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
107
+
"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
108
+
"databaseType": "A String", # The type of the Cloud Firestore or Cloud Datastore database associated with this application.
109
+
"defaultBucket": "A String", # Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly
110
+
"defaultCookieExpiration": "A String", # Cookie expiration policy for this application.
111
+
"defaultHostname": "A String", # Hostname used to reach this application, as resolved by App Engine.@OutputOnly
112
+
"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.
113
+
{ # Rules to match an HTTP request and dispatch that request to a service.
114
+
"domain": "A String", # Domain name to match against. The wildcard "*" is supported if specified before a period: "*.".Defaults to matching all domains: "*".
115
+
"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.
116
+
"service": "A String", # Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
117
+
},
118
+
],
119
+
"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.
120
+
"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.
121
+
"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.
122
+
},
123
+
"gcrDomain": "A String", # The Google Container Registry domain used for storing managed build docker images for this application.
124
+
"iap": { # Identity-Aware Proxy
125
+
"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.
126
+
"oauth2ClientId": "A String", # OAuth2 client ID to use for the authentication flow.
127
+
"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
128
+
"oauth2ClientSecretSha256": "A String", # Hex-encoded SHA-256 hash of the client secret.@OutputOnly
129
+
},
130
+
"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.
131
+
"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).
132
+
"name": "A String", # Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly
133
+
"serviceAccount": "A String", # The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one.
134
+
"servingStatus": "A String", # Serving status of this application.
0 commit comments