authorized_domains
Creates, updates, deletes, gets or lists an authorized_domains
resource.
Overview
Name | authorized_domains |
Type | Resource |
Id | google.appengine.authorized_domains |
Fields
The following fields are returned by SELECT
queries:
- list
Successful response
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified domain name of the domain authorized for use. Example: example.com. |
name | string | Full path to the AuthorizedDomain resource in the API. Example: apps/myapp/authorizedDomains/example.com.@OutputOnly |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | projectsId , locationsId , applicationsId | pageSize , pageToken | Lists all domains the user is authorized to administer. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
applicationsId | string | |
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list
Lists all domains the user is authorized to administer.
SELECT
id,
name
FROM google.appengine.authorized_domains
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND applicationsId = '{{ applicationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';