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 @@ -29,10 +29,10 @@ export class DeploymentGatesEvaluationResultResponseAttributes {
*/
"gateId": string;
/**
* 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.
*/
"gateStatus": DeploymentGatesEvaluationResultResponseAttributesGateStatus;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import { UnparsedObject } from "../../datadog-api-client-common/util";

/**
* 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.
*/

export type DeploymentGatesEvaluationResultResponseAttributesGateStatus =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export class DeploymentGatesRuleResponse {
*/
"reason"?: string;
/**
* 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.
*/
"status"?: DeploymentGatesEvaluationResultResponseAttributesGateStatus;

Expand Down
Loading