Class: DatadogAPIClient::V2::CaseViewCreateAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::CaseViewCreateAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/case_view_create_attributes.rb
Overview
Attributes required to create a case view.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#name ⇒ Object
readonly
The name of the view.
-
#np_rule_id ⇒ Object
The identifier of a notification rule linked to this view.
-
#project_id ⇒ Object
readonly
The UUID of the project this view belongs to.
-
#query ⇒ Object
readonly
The query used to filter cases in this view.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
36 37 38 |
# File 'lib/datadog_api_client/v2/models/case_view_create_attributes.rb', line 36 def additional_properties @additional_properties end |
#name ⇒ Object
The name of the view.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/case_view_create_attributes.rb', line 25 def name @name end |
#np_rule_id ⇒ Object
The identifier of a notification rule linked to this view. When set, users subscribed to the view receive alerts for matching cases.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/case_view_create_attributes.rb', line 28 def np_rule_id @np_rule_id end |
#project_id ⇒ Object
The UUID of the project this view belongs to. Views are scoped to a single project.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/case_view_create_attributes.rb', line 31 def project_id @project_id end |
#query ⇒ Object
The query used to filter cases in this view.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/case_view_create_attributes.rb', line 34 def query @query end |