Class: DatadogAPIClient::V2::DeploymentGatesEvaluationResultResponseAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::DeploymentGatesEvaluationResultResponseAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/deployment_gates_evaluation_result_response_attributes.rb
Overview
Attributes for a deployment gate evaluation result response.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#dry_run ⇒ Object
readonly
Whether the gate was evaluated in dry-run mode.
-
#evaluation_id ⇒ Object
readonly
The unique identifier of the gate evaluation.
-
#evaluation_url ⇒ Object
readonly
A URL to view the evaluation details in the Datadog UI.
-
#gate_id ⇒ Object
readonly
The unique identifier of the deployment gate.
-
#gate_status ⇒ Object
readonly
The overall status of the gate evaluation.
-
#rules ⇒ Object
readonly
The results of individual rule evaluations.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
45 46 47 |
# File 'lib/datadog_api_client/v2/models/deployment_gates_evaluation_result_response_attributes.rb', line 45 def additional_properties @additional_properties end |
#dry_run ⇒ Object
Whether the gate was evaluated in dry-run mode.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/deployment_gates_evaluation_result_response_attributes.rb', line 25 def dry_run @dry_run end |
#evaluation_id ⇒ Object
The unique identifier of the gate evaluation.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/deployment_gates_evaluation_result_response_attributes.rb', line 28 def evaluation_id @evaluation_id end |
#evaluation_url ⇒ Object
A URL to view the evaluation details in the Datadog UI.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/deployment_gates_evaluation_result_response_attributes.rb', line 31 def evaluation_url @evaluation_url end |
#gate_id ⇒ Object
The unique identifier of the deployment gate.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/deployment_gates_evaluation_result_response_attributes.rb', line 34 def gate_id @gate_id end |
#gate_status ⇒ Object
The overall status of the gate 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.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/deployment_gates_evaluation_result_response_attributes.rb', line 40 def gate_status @gate_status end |
#rules ⇒ Object
The results of individual rule evaluations.
43 44 45 |
# File 'lib/datadog_api_client/v2/models/deployment_gates_evaluation_result_response_attributes.rb', line 43 def rules @rules end |