Skip to main content

authorized_domains

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

Overview

Nameauthorized_domains
TypeResource
Idgoogle.appengine.authorized_domains

Fields

The following fields are returned by SELECT queries:

Successful response

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprojectsId, locationsId, applicationsIdpageSize, pageTokenLists 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.

NameDatatypeDescription
applicationsIdstring
locationsIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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 }}';