@@ -33,6 +33,8 @@ def create_bulk_tags_metrics_configuration(body, opts = {})
3333
3434 # Configure tags for multiple metrics.
3535 #
36+ # **Note**: This endpoint is deprecated. Use the `/api/v2/metrics/{metric_name}/tags` endpoint instead.
37+ #
3638 # Create and define a list of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
3739 # Metrics are selected by passing a metric name prefix. Use the Delete method of this API path to remove tag configurations.
3840 # Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
@@ -41,10 +43,13 @@ def create_bulk_tags_metrics_configuration(body, opts = {})
4143 # the same exclusion state, metric tag configurations do not support mixed inclusion and exclusion for tags on the same metric.
4244 # Can only be used with application keys of users with the `Manage Tags for Metrics` permission.
4345 #
46+ # @deprecated This API is deprecated.
47+ #
4448 # @param body [MetricBulkTagConfigCreateRequest]
4549 # @param opts [Hash] the optional parameters
4650 # @return [Array<(MetricBulkTagConfigResponse, Integer, Hash)>] MetricBulkTagConfigResponse data, response status code and response headers
4751 def create_bulk_tags_metrics_configuration_with_http_info ( body , opts = { } )
52+ warn "[DEPRECATION] `CreateBulkTagsMetricsConfiguration` is deprecated."
4853
4954 if @api_client . config . debugging
5055 @api_client . config . logger . debug 'Calling API: MetricsAPI.create_bulk_tags_metrics_configuration ...'
@@ -324,15 +329,20 @@ def delete_bulk_tags_metrics_configuration(body, opts = {})
324329
325330 # Delete tags for multiple metrics.
326331 #
332+ # **Note**: This endpoint is deprecated. Use the `/api/v2/metrics/{metric_name}/tags` endpoint instead.
333+ #
327334 # Delete all custom lists of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
328335 # Metrics are selected by passing a metric name prefix.
329336 # Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
330337 # Can only be used with application keys of users with the `Manage Tags for Metrics` permission.
331338 #
339+ # @deprecated This API is deprecated.
340+ #
332341 # @param body [MetricBulkTagConfigDeleteRequest]
333342 # @param opts [Hash] the optional parameters
334343 # @return [Array<(MetricBulkTagConfigResponse, Integer, Hash)>] MetricBulkTagConfigResponse data, response status code and response headers
335344 def delete_bulk_tags_metrics_configuration_with_http_info ( body , opts = { } )
345+ warn "[DEPRECATION] `DeleteBulkTagsMetricsConfiguration` is deprecated."
336346
337347 if @api_client . config . debugging
338348 @api_client . config . logger . debug 'Calling API: MetricsAPI.delete_bulk_tags_metrics_configuration ...'
0 commit comments