getMethod method
Describe an existing Method resource.
May throw UnauthorizedException. May throw NotFoundException. May throw TooManyRequestsException.
Parameter httpMethod
:
Required
Specifies the method request's HTTP method type.
Parameter resourceId
:
Required
The Resource identifier for the Method resource.
Parameter restApiId
:
Required
The string identifier of the associated RestApi.
Implementation
Future<Method> getMethod({
required String httpMethod,
required String resourceId,
required String restApiId,
}) async {
ArgumentError.checkNotNull(httpMethod, 'httpMethod');
ArgumentError.checkNotNull(resourceId, 'resourceId');
ArgumentError.checkNotNull(restApiId, 'restApiId');
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/restapis/${Uri.encodeComponent(restApiId)}/resources/${Uri.encodeComponent(resourceId)}/methods/${Uri.encodeComponent(httpMethod)}',
exceptionFnMap: _exceptionFns,
);
return Method.fromJson(response);
}