authorized_domains
Creates, updates, deletes, gets or lists a authorized_domains
resource.
Overview
Name | authorized_domains |
Type | Resource |
Id | google.appengine.authorized_domains |
Fields
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | applicationsId, locationsId, projectsId | Lists all domains the user is authorized to administer. |
SELECT
examples
Lists all domains the user is authorized to administer.
SELECT
id,
name
FROM google.appengine.authorized_domains
WHERE applicationsId = '{{ applicationsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';