deleteFoundationModelAgreement method
Delete the model access agreement for the specified model.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter modelId :
Model Id of the model access to delete.
Implementation
Future<void> deleteFoundationModelAgreement({
required String modelId,
}) async {
final $payload = <String, dynamic>{
'modelId': modelId,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/delete-foundation-model-agreement',
exceptionFnMap: _exceptionFns,
);
}