updateResource method
Changes information about a Resource resource.
May throw BadRequestException.
May throw ConflictException.
May throw NotFoundException.
May throw TooManyRequestsException.
May throw UnauthorizedException.
Parameter resourceId :
The identifier of the Resource resource.
Parameter restApiId :
The string identifier of the associated RestApi.
Parameter patchOperations :
For more information about supported patch operations, see Patch
Operations.
Implementation
Future<Resource> updateResource({
required String resourceId,
required String restApiId,
List<PatchOperation>? patchOperations,
}) async {
final $payload = <String, dynamic>{
if (patchOperations != null) 'patchOperations': patchOperations,
};
final response = await _protocol.send(
payload: $payload,
method: 'PATCH',
requestUri:
'/restapis/${Uri.encodeComponent(restApiId)}/resources/${Uri.encodeComponent(resourceId)}',
exceptionFnMap: _exceptionFns,
);
return Resource.fromJson(response);
}