Google Cloud App Engine · Schema
Google Cloud App Engine Application
Represents an App Engine application resource, including its configuration, services, and serving status.
App EngineComputeGoogle CloudPaaSServerlessWeb Applications
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Full path to the Application resource in the API. |
| id | string | Identifier of the Application resource, equivalent to the project ID. |
| authDomain | string | Google Apps authentication domain that controls which users can access the application. |
| locationId | string | Location from which this application runs. |
| codeBucket | string | Google Cloud Storage bucket used to store application code. |
| defaultBucket | string | Google Cloud Storage bucket for default storage. |
| servingStatus | string | Current serving status of the application. |
| defaultHostname | string | Hostname used to reach this application. |
| gcrDomain | string | The Google Container Registry domain used for storing managed build docker images. |
| dispatchRules | array | HTTP path dispatch rules for requests to the application. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-search/google-cloud-app-engine/refs/heads/main/json-schema/appengine-application.json",
"title": "Google Cloud App Engine Application",
"description": "Represents an App Engine application resource, including its configuration, services, and serving status.",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Full path to the Application resource in the API."
},
"id": {
"type": "string",
"description": "Identifier of the Application resource, equivalent to the project ID."
},
"authDomain": {
"type": "string",
"description": "Google Apps authentication domain that controls which users can access the application."
},
"locationId": {
"type": "string",
"description": "Location from which this application runs."
},
"codeBucket": {
"type": "string",
"description": "Google Cloud Storage bucket used to store application code."
},
"defaultBucket": {
"type": "string",
"description": "Google Cloud Storage bucket for default storage."
},
"servingStatus": {
"type": "string",
"description": "Current serving status of the application.",
"enum": [
"UNSPECIFIED",
"SERVING",
"USER_DISABLED",
"SYSTEM_DISABLED"
]
},
"defaultHostname": {
"type": "string",
"description": "Hostname used to reach this application."
},
"gcrDomain": {
"type": "string",
"description": "The Google Container Registry domain used for storing managed build docker images."
},
"dispatchRules": {
"type": "array",
"description": "HTTP path dispatch rules for requests to the application.",
"items": {
"type": "object",
"properties": {
"domain": {
"type": "string"
},
"path": {
"type": "string"
},
"service": {
"type": "string"
}
}
}
}
},
"required": ["id"]
}