Deletes a gradual rollout strategy. Any services still using it are detached first, which redeploys them without the rollout. Because that redeploys services, this also requires service update permission. Fails if a rollout is in progress on any of those services.
Required permission
Account > Platform > GradualRollouts > Delete
Path parameters
gradualRolloutStrategyId
string requiredID of the gradual rollout strategy
Response body
- {object}Response object.
data
{object} requiredResult data.
API
CLI
JS Client
DELETE /v1/gradual-rollout-strategies/{gradualRolloutStrategyId}
DELETE /v1/teams/{teamId}/gradual-rollout-strategies/{gradualRolloutStrategyId}
Example response
200 OK
The operation was performed successfully.
JSON
{
"data": {}
}Example response
403 Forbidden
The caller does not have permission to update services.
Example response
409 Conflict
A rollout is in progress on one or more services using this strategy.