Identity Toolkit API . defaultSupportedIdps

Instance Methods

close()

Close httplib2 connections.

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

List all default supported Idps.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
list(pageSize=None, pageToken=None, x__xgafv=None)
List all default supported Idps.

Args:
  pageSize: integer, The maximum number of items to return.
  pageToken: string, The next_page_token value returned from a previous List request, if any.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response for ListDefaultSupportedIdps
  "defaultSupportedIdps": [ # The set of configs.
    { # Standard Identity Toolkit-trusted IDPs.
      "description": "A String", # Description of the Idp
      "idpId": "A String", # Id the of Idp
    },
  ],
  "nextPageToken": "A String", # Token to retrieve the next page of results, or empty if there are no more results in the list.
}
list_next()
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.