Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35090,10 +35090,10 @@ components:
type: object
DeploymentGatesEvaluationResultResponseAttributesGateStatus:
description: |-
The overall status of the gate evaluation.
The recorded result of a gate or rule evaluation.
- `in_progress`: The evaluation is still running.
- `pass`: All rules passed successfully and the deployment is allowed to proceed.
- `fail`: One or more rules did not pass; the deployment should not proceed.
- `pass`: All rules passed successfully.
- `fail`: One or more rules did not pass.
enum:
- in_progress
- pass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,9 @@ public DeploymentGatesEvaluationResultResponseAttributes gateStatus(
}

/**
* The overall status of the gate evaluation. - <code>in_progress</code>: The evaluation is still
* running. - <code>pass</code>: All rules passed successfully and the deployment is allowed to
* proceed. - <code>fail</code>: One or more rules did not pass; the deployment should not
* proceed.
* The recorded result of a gate or rule evaluation. - <code>in_progress</code>: The evaluation is
* still running. - <code>pass</code>: All rules passed successfully. - <code>fail</code>: One or
* more rules did not pass.
*
* @return gateStatus
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
import java.util.Set;

/**
* The overall status of the gate evaluation. - <code>in_progress</code>: The evaluation is still
* running. - <code>pass</code>: All rules passed successfully and the deployment is allowed to
* proceed. - <code>fail</code>: One or more rules did not pass; the deployment should not proceed.
* The recorded result of a gate or rule evaluation. - <code>in_progress</code>: The evaluation is
* still running. - <code>pass</code>: All rules passed successfully. - <code>fail</code>: One or
* more rules did not pass.
*/
@JsonSerialize(
using =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,9 @@ public DeploymentGatesRuleResponse status(
}

/**
* The overall status of the gate evaluation. - <code>in_progress</code>: The evaluation is still
* running. - <code>pass</code>: All rules passed successfully and the deployment is allowed to
* proceed. - <code>fail</code>: One or more rules did not pass; the deployment should not
* proceed.
* The recorded result of a gate or rule evaluation. - <code>in_progress</code>: The evaluation is
* still running. - <code>pass</code>: All rules passed successfully. - <code>fail</code>: One or
* more rules did not pass.
*
* @return status
*/
Expand Down
Loading