list method
List all inbound SAML configurations for an Identity Toolkit project.
Request parameters:
parent
- The parent resource name, for example,
"projects/my-awesome-project".
Value must have pattern ^projects/\[^/\]+$
.
pageSize
- The maximum number of items to return.
pageToken
- The next_page_token value returned from a previous List
request, if any.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudIdentitytoolkitAdminV2ListInboundSamlConfigsResponse.
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<GoogleCloudIdentitytoolkitAdminV2ListInboundSamlConfigsResponse>
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') + '/inboundSamlConfigs';
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return GoogleCloudIdentitytoolkitAdminV2ListInboundSamlConfigsResponse
.fromJson(_response as core.Map<core.String, core.dynamic>);
}