Class: DatadogAPIClient::V1::DashboardTemplateVariable
- Inherits:
-
Object
- Object
- DatadogAPIClient::V1::DashboardTemplateVariable
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v1/models/dashboard_template_variable.rb
Overview
Template variable.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#available_values ⇒ Object
The list of values that the template variable drop-down is limited to.
-
#default ⇒ Object
(deprecated) The default value for the template variable on dashboard load.
-
#defaults ⇒ Object
One or many default values for template variables on load.
-
#name ⇒ Object
readonly
The name of the variable.
-
#prefix ⇒ Object
The tag prefix associated with the variable.
-
#type ⇒ Object
The type of variable.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
39 40 41 |
# File 'lib/datadog_api_client/v1/models/dashboard_template_variable.rb', line 39 def additional_properties @additional_properties end |
#available_values ⇒ Object
The list of values that the template variable drop-down is limited to.
25 26 27 |
# File 'lib/datadog_api_client/v1/models/dashboard_template_variable.rb', line 25 def available_values @available_values end |
#default ⇒ Object
(deprecated) The default value for the template variable on dashboard load. Cannot be used in conjunction with defaults.
28 29 30 |
# File 'lib/datadog_api_client/v1/models/dashboard_template_variable.rb', line 28 def default @default end |
#defaults ⇒ Object
One or many default values for template variables on load. If more than one default is specified, they will be unioned together with OR. Cannot be used in conjunction with default.
31 32 33 |
# File 'lib/datadog_api_client/v1/models/dashboard_template_variable.rb', line 31 def defaults @defaults end |
#name ⇒ Object
The name of the variable.
34 35 36 |
# File 'lib/datadog_api_client/v1/models/dashboard_template_variable.rb', line 34 def name @name end |
#prefix ⇒ Object
The tag prefix associated with the variable. Only tags with this prefix appear in the variable drop-down.
37 38 39 |
# File 'lib/datadog_api_client/v1/models/dashboard_template_variable.rb', line 37 def prefix @prefix end |
#type ⇒ Object
The type of variable. This is to differentiate between filter variables (interpolated in query) and group by variables (interpolated into group by).
40 41 42 |
# File 'lib/datadog_api_client/v1/models/dashboard_template_variable.rb', line 40 def type @type end |