Cloud Run Admin API . projects . locations . authorizeddomains

Instance Methods

close()

Close httplib2 connections.

list(parent, pageToken=None, pageSize=None, x__xgafv=None)

List authorized domains.

list_next(previous_request, previous_response)

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
list(parent, pageToken=None, pageSize=None, x__xgafv=None)
List authorized domains.

Args:
  parent: string, Name of the parent Project resource. Example: `projects/myproject`. (required)
  pageToken: string, Continuation token for fetching the next page of results.
  pageSize: integer, Maximum results to return per page.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A list of Authorized Domains.
    "nextPageToken": "A String", # Continuation token for fetching the next page of results.
    "domains": [ # The authorized domains belonging to the user.
      { # A domain that a user has been authorized to administer. To authorize use of a domain, verify ownership via [Webmaster Central](https://www.google.com/webmasters/verification/home).
        "id": "A String", # Relative name of the domain authorized for use. Example: `example.com`.
        "name": "A String", # Deprecated Read only. Full path to the `AuthorizedDomain` resource in the API. Example: `projects/myproject/authorizedDomains/example.com`.
      },
    ],
  }
list_next(previous_request, previous_response)
Retrieves the next page of results.

Args:
  previous_request: The request for the previous page. (required)
  previous_response: The response from the request for the previous page. (required)

Returns:
  A request object that you can call 'execute()' on to request the next
  page. Returns None if there are no more items in the collection.