list method
List tenants under the given agent project.
Requires read permission on the Agent project.
Request parameters:
parent
- Required. The parent resource name to list tenants for.
Value must have pattern ^projects/\[^/\]+$
.
pageSize
- The maximum number of results to return, capped at 1000. If
not specified, the default value is 20.
pageToken
- The pagination token from the response of a previous
request.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudIdentitytoolkitAdminV2ListTenantsResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<GoogleCloudIdentitytoolkitAdminV2ListTenantsResponse> list(
core.String parent, {
core.int? pageSize,
core.String? pageToken,
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if ($fields != null) 'fields': [$fields],
};
final _url = 'v2/' + core.Uri.encodeFull('$parent') + '/tenants';
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return GoogleCloudIdentitytoolkitAdminV2ListTenantsResponse.fromJson(
_response as core.Map<core.String, core.dynamic>);
}