Class: DatadogAPIClient::V2::MetricBulkTagConfigCreateAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::MetricBulkTagConfigCreateAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb
Overview
Optional parameters for bulk creating metric tag configurations.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#emails ⇒ Object
A list of account emails to notify when the configuration is applied.
-
#exclude_tags_mode ⇒ Object
When set to true, the configuration will exclude the configured tags and include any other submitted tags.
-
#include_actively_queried_tags_window ⇒ Object
readonly
When provided, all tags that have been actively queried are configured (and, therefore, remain queryable) for each metric that matches the given prefix.
-
#override_existing_configurations ⇒ Object
When set to true, the configuration overrides any existing configurations for the given metric with the new set of tags in this configuration request.
-
#tags ⇒ Object
A list of tag names to apply to the configuration.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
48 49 50 |
# File 'lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb', line 48 def additional_properties @additional_properties end |
#emails ⇒ Object
A list of account emails to notify when the configuration is applied.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb', line 25 def emails @emails end |
#exclude_tags_mode ⇒ Object
When set to true, the configuration will exclude the configured tags and include any other submitted tags. When set to false, the configuration will include the configured tags and exclude any other submitted tags. Defaults to false.
30 31 32 |
# File 'lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb', line 30 def @exclude_tags_mode end |
#include_actively_queried_tags_window ⇒ Object
When provided, all tags that have been actively queried are configured (and, therefore, remain queryable) for each metric that matches the given prefix. Minimum value is 1 second, and maximum value is 7,776,000 seconds (90 days).
36 37 38 |
# File 'lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb', line 36 def @include_actively_queried_tags_window end |
#override_existing_configurations ⇒ Object
When set to true, the configuration overrides any existing configurations for the given metric with the new set of tags in this configuration request. If false, old configurations are kept and are merged with the set of tags in this configuration request. Defaults to true.
43 44 45 |
# File 'lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb', line 43 def override_existing_configurations @override_existing_configurations end |
#tags ⇒ Object
A list of tag names to apply to the configuration.
46 47 48 |
# File 'lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb', line 46 def @tags end |