Skip to main content

authorized_domains

Creates, updates, deletes, gets or lists a authorized_domains resource.

Overview

Nameauthorized_domains
TypeResource
Idgoogle.appengine.authorized_domains

Fields

NameDatatypeDescription
idstringFully qualified domain name of the domain authorized for use. Example: example.com.
namestringFull path to the AuthorizedDomain resource in the API. Example: apps/myapp/authorizedDomains/example.com.@OutputOnly

Methods

NameAccessible byRequired ParamsDescription
listSELECTapplicationsId, locationsId, projectsIdLists 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 }}';