Class: DatadogAPIClient::V2::DeploymentGatesEvaluationResultResponseAttributes

Inherits:
Object
  • Object
show all
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

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

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_runObject

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_idObject

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_urlObject

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_idObject

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_statusObject

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

#rulesObject

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