deleteSuiteDefinition method
Deletes a Device Advisor test suite.
Requires permission to access the DeleteSuiteDefinition action.
May throw InternalServerException.
May throw ValidationException.
Parameter suiteDefinitionId :
Suite definition ID of the test suite to be deleted.
Implementation
Future<void> deleteSuiteDefinition({
required String suiteDefinitionId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/suiteDefinitions/${Uri.encodeComponent(suiteDefinitionId)}',
exceptionFnMap: _exceptionFns,
);
}