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 @@ -33,10 +33,10 @@ class DeploymentGatesEvaluationResultResponseAttributes
# The unique identifier of the deployment gate.
attr_reader :gate_id

# 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.
attr_reader :gate_status

# The results of individual rule evaluations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
require 'time'

module DatadogAPIClient::V2
# 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.
class DeploymentGatesEvaluationResultResponseAttributesGateStatus
include BaseEnumModel

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ class DeploymentGatesRuleResponse
# The reason for the rule result, if applicable.
attr_accessor :reason

# 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.
attr_accessor :status

attr_accessor :additional_properties
Expand Down
Loading