Cloud Run API . projects . locations . authorizeddomains

Instance Methods

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

RPC to list authorized domains.

list_next(previous_request, previous_response)

Retrieves the next page of results.

Method Details

list(parent, pageToken=None, x__xgafv=None, pageSize=None)
RPC to list authorized domains.

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

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).
        "name": "A String", # Read only. Full path to the `AuthorizedDomain` resource in the API.
            # Example: `apps/myapp/authorizedDomains/example.com`.
        "id": "A String", # Relative name of the domain authorized for use. Example: `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.