deleteFramework method

Future<void> deleteFramework({
  1. required String frameworkName,
})

Deletes the framework specified by a framework name.

May throw ConflictException. May throw InvalidParameterValueException. May throw MissingParameterValueException. May throw ResourceNotFoundException. May throw ServiceUnavailableException.

Parameter frameworkName : The unique name of a framework.

Implementation

Future<void> deleteFramework({
  required String frameworkName,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/audit/frameworks/${Uri.encodeComponent(frameworkName)}',
    exceptionFnMap: _exceptionFns,
  );
}