deleteDeploymentStrategy method

Future<void> deleteDeploymentStrategy({
  1. required String deploymentStrategyId,
})

Deletes a deployment strategy.

May throw BadRequestException. May throw InternalServerException. May throw ResourceNotFoundException.

Parameter deploymentStrategyId : The ID of the deployment strategy you want to delete.

Implementation

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