Class: DatadogAPIClient::V2::UpdateAppRequestDataAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::UpdateAppRequestDataAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb
Overview
App definition attributes to be updated, such as name, description, and components.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#components ⇒ Object
The new UI components that make up the app.
-
#description ⇒ Object
The new human-readable description for the app.
-
#name ⇒ Object
The new name of the app.
-
#queries ⇒ Object
The new array of queries, such as external actions and state variables, that the app uses.
-
#root_instance_name ⇒ Object
The new name of the root component of the app.
-
#tags ⇒ Object
The new list of tags for the app, which can be used to filter apps.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
permalink #additional_properties ⇒ Object
Returns the value of attribute additional_properties.
42 43 44 |
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 42 def additional_properties @additional_properties end |
permalink #components ⇒ Object
The new UI components that make up the app. If this field is set, all existing components are replaced with the new components under this field.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 25 def components @components end |
permalink #description ⇒ Object
The new human-readable description for the app.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 28 def description @description end |
permalink #name ⇒ Object
The new name of the app.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 31 def name @name end |
permalink #queries ⇒ Object
The new array of queries, such as external actions and state variables, that the app uses. If this field is set, all existing queries are replaced with the new queries under this field.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 34 def queries @queries end |
permalink #root_instance_name ⇒ Object
The new name of the root component of the app. This must be a ‘grid` component that contains all other components.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 37 def root_instance_name @root_instance_name end |
permalink #tags ⇒ Object
The new list of tags for the app, which can be used to filter apps. If this field is set, any existing tags not included in the request are removed.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/update_app_request_data_attributes.rb', line 40 def @tags end |