getAuthorizers method
Describe an existing Authorizers resource.
May throw BadRequestException. May throw UnauthorizedException. May throw NotFoundException. May throw TooManyRequestsException.
Parameter restApiId
:
Required
The string identifier of the associated RestApi.
Parameter limit
:
The maximum number of returned results per page. The default value is 25
and the maximum value is 500.
Parameter position
:
The current pagination position in the paged result set.
Implementation
Future<Authorizers> getAuthorizers({
required String restApiId,
int? limit,
String? position,
}) async {
ArgumentError.checkNotNull(restApiId, 'restApiId');
final $query = <String, List<String>>{
if (limit != null) 'limit': [limit.toString()],
if (position != null) 'position': [position],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/restapis/${Uri.encodeComponent(restApiId)}/authorizers',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return Authorizers.fromJson(response);
}