Class: DatadogAPIClient::V2::AnalysisRuleResponse
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::AnalysisRuleResponse
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/analysis_rule_response.rb
Overview
The result of applying a single static analysis rule to the analyzed source code.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#errors ⇒ Object
readonly
A list of error messages encountered while executing the rule.
-
#execution_error ⇒ Object
An error message if the rule execution failed, or null if execution succeeded.
-
#execution_time_ms ⇒ Object
readonly
The time taken to execute the rule, in milliseconds.
-
#identifier ⇒ Object
readonly
The identifier of the rule that produced this response.
-
#output ⇒ Object
readonly
The raw output produced by the rule engine during execution.
-
#violations ⇒ Object
readonly
The list of violations found by this rule.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
42 43 44 |
# File 'lib/datadog_api_client/v2/models/analysis_rule_response.rb', line 42 def additional_properties @additional_properties end |
#errors ⇒ Object
A list of error messages encountered while executing the rule.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/analysis_rule_response.rb', line 25 def errors @errors end |
#execution_error ⇒ Object
An error message if the rule execution failed, or null if execution succeeded.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/analysis_rule_response.rb', line 28 def execution_error @execution_error end |
#execution_time_ms ⇒ Object
The time taken to execute the rule, in milliseconds.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/analysis_rule_response.rb', line 31 def execution_time_ms @execution_time_ms end |
#identifier ⇒ Object
The identifier of the rule that produced this response.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/analysis_rule_response.rb', line 34 def identifier @identifier end |
#output ⇒ Object
The raw output produced by the rule engine during execution.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/analysis_rule_response.rb', line 37 def output @output end |
#violations ⇒ Object
The list of violations found by this rule.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/analysis_rule_response.rb', line 40 def violations @violations end |