datadog_api_client 1.10.0 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +715 -44
  4. data/.generator/schemas/v2/openapi.yaml +458 -44
  5. data/.generator/src/generator/formatter.py +14 -0
  6. data/.github/workflows/test_integration.yml +0 -7
  7. data/CHANGELOG.md +34 -0
  8. data/examples/v1/dashboards/CreateDashboard_1442588603.rb +61 -0
  9. data/examples/v1/dashboards/CreateDashboard_252716965.rb +52 -0
  10. data/examples/v1/dashboards/CreateDashboard_3882428227.rb +60 -0
  11. data/examples/v1/metrics/SubmitDistributionPoints.rb +22 -0
  12. data/examples/v1/metrics/SubmitDistributionPoints_3109558960.rb +25 -0
  13. data/examples/v1/organizations/DowngradeOrg.rb +5 -0
  14. data/examples/v1/organizations/UpdateOrg.rb +1 -0
  15. data/examples/v1/service-level-objectives/SearchSLO.rb +16 -0
  16. data/examples/v1/snapshots/GetGraphSnapshot.rb +2 -0
  17. data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +3 -0
  18. data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +3 -0
  19. data/examples/v1/synthetics/UpdateBrowserTest.rb +3 -0
  20. data/examples/v2/metrics/CreateTagConfiguration.rb +0 -3
  21. data/examples/v2/metrics/DeleteTagConfiguration.rb +0 -3
  22. data/examples/v2/metrics/ListTagConfigurationByName.rb +0 -3
  23. data/examples/v2/metrics/ListTagConfigurations.rb +0 -3
  24. data/examples/v2/metrics/ListTagConfigurations_103226315.rb +0 -3
  25. data/examples/v2/metrics/ListTagConfigurations_1799362914.rb +0 -3
  26. data/examples/v2/metrics/UpdateTagConfiguration.rb +0 -3
  27. data/examples/v2/opsgenie-integration/CreateOpsgenieService.rb +16 -0
  28. data/examples/v2/opsgenie-integration/DeleteOpsgenieService.rb +8 -0
  29. data/examples/v2/opsgenie-integration/GetOpsgenieService.rb +8 -0
  30. data/examples/v2/opsgenie-integration/ListOpsgenieServices.rb +5 -0
  31. data/examples/v2/opsgenie-integration/UpdateOpsgenieService.rb +21 -0
  32. data/examples/v2/security-monitoring/ListSecurityMonitoringSignals.rb +0 -3
  33. data/examples/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +0 -3
  34. data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +3 -0
  35. data/examples/v2/usage-metering/GetEstimatedCostByOrg.rb +5 -0
  36. data/examples/v2/usage-metering/GetEstimatedCostByOrg_1171921972.rb +9 -0
  37. data/examples/v2/usage-metering/GetEstimatedCostByOrg_627383212.rb +9 -0
  38. data/lib/datadog_api_client/v1/api/metrics_api.rb +81 -0
  39. data/lib/datadog_api_client/v1/api/organizations_api.rb +74 -1
  40. data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +2 -2
  41. data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +78 -4
  42. data/lib/datadog_api_client/v1/api/snapshots_api.rb +4 -0
  43. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +9 -5
  44. data/lib/datadog_api_client/v1/configuration.rb +51 -0
  45. data/lib/datadog_api_client/v1/models/distribution_point_item.rb +63 -0
  46. data/lib/datadog_api_client/v1/models/distribution_points_content_encoding.rb +26 -0
  47. data/lib/datadog_api_client/v1/models/distribution_points_payload.rb +124 -0
  48. data/lib/datadog_api_client/v1/models/distribution_points_series.rb +179 -0
  49. data/lib/datadog_api_client/v1/models/distribution_points_type.rb +26 -0
  50. data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_query.rb +64 -0
  51. data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_type.rb +26 -0
  52. data/lib/datadog_api_client/v1/models/distribution_widget_request.rb +21 -1
  53. data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stat_name.rb +1 -0
  54. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +2 -0
  55. data/lib/datadog_api_client/v1/models/ip_prefixes_synthetics_private_locations.rb +125 -0
  56. data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -1
  57. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +4 -0
  58. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +41 -1
  59. data/lib/datadog_api_client/v1/models/org_downgraded_response.rb +111 -0
  60. data/lib/datadog_api_client/v1/models/organization.rb +14 -4
  61. data/lib/datadog_api_client/v1/models/search_slo_response.rb +131 -0
  62. data/lib/datadog_api_client/v1/models/search_slo_response_data.rb +121 -0
  63. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes.rb +123 -0
  64. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets.rb +197 -0
  65. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets_object_int.rb +121 -0
  66. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets_object_string.rb +121 -0
  67. data/lib/datadog_api_client/v1/models/search_slo_response_links.rb +151 -0
  68. data/lib/datadog_api_client/v1/models/search_slo_response_meta.rb +111 -0
  69. data/lib/datadog_api_client/v1/models/search_slo_response_meta_page.rb +181 -0
  70. data/lib/datadog_api_client/v1/models/service_level_objective.rb +3 -3
  71. data/lib/datadog_api_client/v1/models/service_level_objective_query.rb +1 -1
  72. data/lib/datadog_api_client/v1/models/service_level_objective_request.rb +3 -3
  73. data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +1 -1
  74. data/lib/datadog_api_client/v1/models/slo_response_data.rb +1 -1
  75. data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +11 -0
  76. data/lib/datadog_api_client/v1/models/synthetics_browser_test.rb +11 -0
  77. data/lib/datadog_api_client/v1/models/synthetics_core_web_vitals.rb +2 -2
  78. data/lib/datadog_api_client/v1/models/synthetics_test_ci_options.rb +111 -0
  79. data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +11 -1
  80. data/lib/datadog_api_client/v1/models/usage_attribution_sort.rb +4 -0
  81. data/lib/datadog_api_client/v1/models/usage_attribution_supported_metrics.rb +4 -0
  82. data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +41 -1
  83. data/lib/datadog_api_client/v1/models/usage_billable_summary_keys.rb +474 -4
  84. data/lib/datadog_api_client/v1.rb +19 -0
  85. data/lib/datadog_api_client/v2/api/cloud_workload_security_api.rb +1 -1
  86. data/lib/datadog_api_client/v2/api/metrics_api.rb +0 -2
  87. data/lib/datadog_api_client/v2/api/opsgenie_integration_api.rb +395 -0
  88. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +76 -0
  89. data/lib/datadog_api_client/v2/configuration.rb +0 -7
  90. data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +10 -8
  91. data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +0 -2
  92. data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +0 -2
  93. data/lib/datadog_api_client/v2/models/opsgenie_service_create_attributes.rb +174 -0
  94. data/lib/datadog_api_client/v2/models/opsgenie_service_create_data.rb +145 -0
  95. data/lib/datadog_api_client/v2/models/opsgenie_service_create_request.rb +122 -0
  96. data/lib/datadog_api_client/v2/models/opsgenie_service_region_type.rb +28 -0
  97. data/lib/datadog_api_client/v2/models/opsgenie_service_response.rb +122 -0
  98. data/lib/datadog_api_client/v2/models/opsgenie_service_response_attributes.rb +132 -0
  99. data/lib/datadog_api_client/v2/models/opsgenie_service_response_data.rb +166 -0
  100. data/lib/datadog_api_client/v2/models/opsgenie_service_type.rb +26 -0
  101. data/lib/datadog_api_client/v2/models/opsgenie_service_update_attributes.rb +142 -0
  102. data/lib/datadog_api_client/v2/models/opsgenie_service_update_data.rb +166 -0
  103. data/lib/datadog_api_client/v2/models/opsgenie_service_update_request.rb +122 -0
  104. data/lib/datadog_api_client/v2/models/opsgenie_services_response.rb +124 -0
  105. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +30 -4
  106. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_method.rb +27 -0
  107. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_threshold.rb +27 -0
  108. data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +13 -1
  109. data/lib/datadog_api_client/v2.rb +15 -0
  110. data/lib/datadog_api_client/version.rb +1 -1
  111. metadata +51 -2
@@ -25,18 +25,111 @@ module DatadogAPIClient::V1
25
25
  # @!visibility private
26
26
  attr_accessor :_unparsed
27
27
 
28
+ # Response with properties for each aggregated usage type.
29
+ attr_accessor :apm_fargate_average
30
+
31
+ # Response with properties for each aggregated usage type.
32
+ attr_accessor :apm_fargate_sum
33
+
28
34
  # Response with properties for each aggregated usage type.
29
35
  attr_accessor :apm_host_sum
30
36
 
31
37
  # Response with properties for each aggregated usage type.
32
38
  attr_accessor :apm_host_top99p
33
39
 
40
+ # Response with properties for each aggregated usage type.
41
+ attr_accessor :apm_profiler_host_sum
42
+
43
+ # Response with properties for each aggregated usage type.
44
+ attr_accessor :apm_profiler_host_top99p
45
+
34
46
  # Response with properties for each aggregated usage type.
35
47
  attr_accessor :apm_trace_search_sum
36
48
 
49
+ # Response with properties for each aggregated usage type.
50
+ attr_accessor :application_security_host_sum
51
+
52
+ # Response with properties for each aggregated usage type.
53
+ attr_accessor :ci_pipeline_indexed_spans_sum
54
+
55
+ # Response with properties for each aggregated usage type.
56
+ attr_accessor :ci_pipeline_maximum
57
+
58
+ # Response with properties for each aggregated usage type.
59
+ attr_accessor :ci_pipeline_sum
60
+
61
+ # Response with properties for each aggregated usage type.
62
+ attr_accessor :ci_test_indexed_spans_sum
63
+
64
+ # Response with properties for each aggregated usage type.
65
+ attr_accessor :ci_testing_maximum
66
+
67
+ # Response with properties for each aggregated usage type.
68
+ attr_accessor :ci_testing_sum
69
+
70
+ # Response with properties for each aggregated usage type.
71
+ attr_accessor :cspm_container_sum
72
+
73
+ # Response with properties for each aggregated usage type.
74
+ attr_accessor :cspm_host_sum
75
+
76
+ # Response with properties for each aggregated usage type.
77
+ attr_accessor :cspm_host_top99p
78
+
79
+ # Response with properties for each aggregated usage type.
80
+ attr_accessor :custom_event_sum
81
+
82
+ # Response with properties for each aggregated usage type.
83
+ attr_accessor :cws_container_sum
84
+
85
+ # Response with properties for each aggregated usage type.
86
+ attr_accessor :cws_host_sum
87
+
88
+ # Response with properties for each aggregated usage type.
89
+ attr_accessor :cws_host_top99p
90
+
91
+ # Response with properties for each aggregated usage type.
92
+ attr_accessor :dbm_host_sum
93
+
94
+ # Response with properties for each aggregated usage type.
95
+ attr_accessor :dbm_host_top99p
96
+
97
+ # Response with properties for each aggregated usage type.
98
+ attr_accessor :dbm_normalized_queries_average
99
+
100
+ # Response with properties for each aggregated usage type.
101
+ attr_accessor :dbm_normalized_queries_sum
102
+
103
+ # Response with properties for each aggregated usage type.
104
+ attr_accessor :fargate_container_apm_and_profiler_average
105
+
106
+ # Response with properties for each aggregated usage type.
107
+ attr_accessor :fargate_container_apm_and_profiler_sum
108
+
37
109
  # Response with properties for each aggregated usage type.
38
110
  attr_accessor :fargate_container_average
39
111
 
112
+ # Response with properties for each aggregated usage type.
113
+ attr_accessor :fargate_container_profiler_average
114
+
115
+ # Response with properties for each aggregated usage type.
116
+ attr_accessor :fargate_container_profiler_sum
117
+
118
+ # Response with properties for each aggregated usage type.
119
+ attr_accessor :fargate_container_sum
120
+
121
+ # Response with properties for each aggregated usage type.
122
+ attr_accessor :incident_management_maximum
123
+
124
+ # Response with properties for each aggregated usage type.
125
+ attr_accessor :incident_management_sum
126
+
127
+ # Response with properties for each aggregated usage type.
128
+ attr_accessor :infra_and_apm_host_sum
129
+
130
+ # Response with properties for each aggregated usage type.
131
+ attr_accessor :infra_and_apm_host_top99p
132
+
40
133
  # Response with properties for each aggregated usage type.
41
134
  attr_accessor :infra_container_sum
42
135
 
@@ -46,12 +139,27 @@ module DatadogAPIClient::V1
46
139
  # Response with properties for each aggregated usage type.
47
140
  attr_accessor :infra_host_top99p
48
141
 
142
+ # Response with properties for each aggregated usage type.
143
+ attr_accessor :ingested_spans_sum
144
+
145
+ # Response with properties for each aggregated usage type.
146
+ attr_accessor :ingested_timeseries_average
147
+
148
+ # Response with properties for each aggregated usage type.
149
+ attr_accessor :ingested_timeseries_sum
150
+
151
+ # Response with properties for each aggregated usage type.
152
+ attr_accessor :iot_sum
153
+
49
154
  # Response with properties for each aggregated usage type.
50
155
  attr_accessor :iot_top99p
51
156
 
52
157
  # Response with properties for each aggregated usage type.
53
158
  attr_accessor :lambda_function_average
54
159
 
160
+ # Response with properties for each aggregated usage type.
161
+ attr_accessor :lambda_function_sum
162
+
55
163
  # Response with properties for each aggregated usage type.
56
164
  attr_accessor :logs_indexed_15day_sum
57
165
 
@@ -61,6 +169,9 @@ module DatadogAPIClient::V1
61
169
  # Response with properties for each aggregated usage type.
62
170
  attr_accessor :logs_indexed_30day_sum
63
171
 
172
+ # Response with properties for each aggregated usage type.
173
+ attr_accessor :logs_indexed_360day_sum
174
+
64
175
  # Response with properties for each aggregated usage type.
65
176
  attr_accessor :logs_indexed_3day_sum
66
177
 
@@ -85,6 +196,9 @@ module DatadogAPIClient::V1
85
196
  # Response with properties for each aggregated usage type.
86
197
  attr_accessor :logs_ingested_sum
87
198
 
199
+ # Response with properties for each aggregated usage type.
200
+ attr_accessor :network_device_sum
201
+
88
202
  # Response with properties for each aggregated usage type.
89
203
  attr_accessor :network_device_top99p
90
204
 
@@ -97,21 +211,45 @@ module DatadogAPIClient::V1
97
211
  # Response with properties for each aggregated usage type.
98
212
  attr_accessor :npm_host_top99p
99
213
 
214
+ # Response with properties for each aggregated usage type.
215
+ attr_accessor :observability_pipeline_sum
216
+
217
+ # Response with properties for each aggregated usage type.
218
+ attr_accessor :online_archive_sum
219
+
100
220
  # Response with properties for each aggregated usage type.
101
221
  attr_accessor :prof_container_sum
102
222
 
223
+ # Response with properties for each aggregated usage type.
224
+ attr_accessor :prof_host_sum
225
+
103
226
  # Response with properties for each aggregated usage type.
104
227
  attr_accessor :prof_host_top99p
105
228
 
229
+ # Response with properties for each aggregated usage type.
230
+ attr_accessor :rum_lite_sum
231
+
232
+ # Response with properties for each aggregated usage type.
233
+ attr_accessor :rum_replay_sum
234
+
106
235
  # Response with properties for each aggregated usage type.
107
236
  attr_accessor :rum_sum
108
237
 
238
+ # Response with properties for each aggregated usage type.
239
+ attr_accessor :rum_units_sum
240
+
241
+ # Response with properties for each aggregated usage type.
242
+ attr_accessor :sensitive_data_scanner_sum
243
+
109
244
  # Response with properties for each aggregated usage type.
110
245
  attr_accessor :serverless_invocation_sum
111
246
 
112
247
  # Response with properties for each aggregated usage type.
113
248
  attr_accessor :siem_sum
114
249
 
250
+ # Response with properties for each aggregated usage type.
251
+ attr_accessor :standard_timeseries_average
252
+
115
253
  # Response with properties for each aggregated usage type.
116
254
  attr_accessor :synthetics_api_tests_sum
117
255
 
@@ -121,22 +259,62 @@ module DatadogAPIClient::V1
121
259
  # Response with properties for each aggregated usage type.
122
260
  attr_accessor :timeseries_average
123
261
 
262
+ # Response with properties for each aggregated usage type.
263
+ attr_accessor :timeseries_sum
264
+
124
265
  # Attribute mapping from ruby-style variable name to JSON key.
125
266
  # @!visibility private
126
267
  def self.attribute_map
127
268
  {
269
+ :'apm_fargate_average' => :'apm_fargate_average',
270
+ :'apm_fargate_sum' => :'apm_fargate_sum',
128
271
  :'apm_host_sum' => :'apm_host_sum',
129
272
  :'apm_host_top99p' => :'apm_host_top99p',
273
+ :'apm_profiler_host_sum' => :'apm_profiler_host_sum',
274
+ :'apm_profiler_host_top99p' => :'apm_profiler_host_top99p',
130
275
  :'apm_trace_search_sum' => :'apm_trace_search_sum',
276
+ :'application_security_host_sum' => :'application_security_host_sum',
277
+ :'ci_pipeline_indexed_spans_sum' => :'ci_pipeline_indexed_spans_sum',
278
+ :'ci_pipeline_maximum' => :'ci_pipeline_maximum',
279
+ :'ci_pipeline_sum' => :'ci_pipeline_sum',
280
+ :'ci_test_indexed_spans_sum' => :'ci_test_indexed_spans_sum',
281
+ :'ci_testing_maximum' => :'ci_testing_maximum',
282
+ :'ci_testing_sum' => :'ci_testing_sum',
283
+ :'cspm_container_sum' => :'cspm_container_sum',
284
+ :'cspm_host_sum' => :'cspm_host_sum',
285
+ :'cspm_host_top99p' => :'cspm_host_top99p',
286
+ :'custom_event_sum' => :'custom_event_sum',
287
+ :'cws_container_sum' => :'cws_container_sum',
288
+ :'cws_host_sum' => :'cws_host_sum',
289
+ :'cws_host_top99p' => :'cws_host_top99p',
290
+ :'dbm_host_sum' => :'dbm_host_sum',
291
+ :'dbm_host_top99p' => :'dbm_host_top99p',
292
+ :'dbm_normalized_queries_average' => :'dbm_normalized_queries_average',
293
+ :'dbm_normalized_queries_sum' => :'dbm_normalized_queries_sum',
294
+ :'fargate_container_apm_and_profiler_average' => :'fargate_container_apm_and_profiler_average',
295
+ :'fargate_container_apm_and_profiler_sum' => :'fargate_container_apm_and_profiler_sum',
131
296
  :'fargate_container_average' => :'fargate_container_average',
297
+ :'fargate_container_profiler_average' => :'fargate_container_profiler_average',
298
+ :'fargate_container_profiler_sum' => :'fargate_container_profiler_sum',
299
+ :'fargate_container_sum' => :'fargate_container_sum',
300
+ :'incident_management_maximum' => :'incident_management_maximum',
301
+ :'incident_management_sum' => :'incident_management_sum',
302
+ :'infra_and_apm_host_sum' => :'infra_and_apm_host_sum',
303
+ :'infra_and_apm_host_top99p' => :'infra_and_apm_host_top99p',
132
304
  :'infra_container_sum' => :'infra_container_sum',
133
305
  :'infra_host_sum' => :'infra_host_sum',
134
306
  :'infra_host_top99p' => :'infra_host_top99p',
307
+ :'ingested_spans_sum' => :'ingested_spans_sum',
308
+ :'ingested_timeseries_average' => :'ingested_timeseries_average',
309
+ :'ingested_timeseries_sum' => :'ingested_timeseries_sum',
310
+ :'iot_sum' => :'iot_sum',
135
311
  :'iot_top99p' => :'iot_top99p',
136
312
  :'lambda_function_average' => :'lambda_function_average',
313
+ :'lambda_function_sum' => :'lambda_function_sum',
137
314
  :'logs_indexed_15day_sum' => :'logs_indexed_15day_sum',
138
315
  :'logs_indexed_180day_sum' => :'logs_indexed_180day_sum',
139
316
  :'logs_indexed_30day_sum' => :'logs_indexed_30day_sum',
317
+ :'logs_indexed_360day_sum' => :'logs_indexed_360day_sum',
140
318
  :'logs_indexed_3day_sum' => :'logs_indexed_3day_sum',
141
319
  :'logs_indexed_45day_sum' => :'logs_indexed_45day_sum',
142
320
  :'logs_indexed_60day_sum' => :'logs_indexed_60day_sum',
@@ -145,18 +323,28 @@ module DatadogAPIClient::V1
145
323
  :'logs_indexed_custom_retention_sum' => :'logs_indexed_custom_retention_sum',
146
324
  :'logs_indexed_sum' => :'logs_indexed_sum',
147
325
  :'logs_ingested_sum' => :'logs_ingested_sum',
326
+ :'network_device_sum' => :'network_device_sum',
148
327
  :'network_device_top99p' => :'network_device_top99p',
149
328
  :'npm_flow_sum' => :'npm_flow_sum',
150
329
  :'npm_host_sum' => :'npm_host_sum',
151
330
  :'npm_host_top99p' => :'npm_host_top99p',
331
+ :'observability_pipeline_sum' => :'observability_pipeline_sum',
332
+ :'online_archive_sum' => :'online_archive_sum',
152
333
  :'prof_container_sum' => :'prof_container_sum',
334
+ :'prof_host_sum' => :'prof_host_sum',
153
335
  :'prof_host_top99p' => :'prof_host_top99p',
336
+ :'rum_lite_sum' => :'rum_lite_sum',
337
+ :'rum_replay_sum' => :'rum_replay_sum',
154
338
  :'rum_sum' => :'rum_sum',
339
+ :'rum_units_sum' => :'rum_units_sum',
340
+ :'sensitive_data_scanner_sum' => :'sensitive_data_scanner_sum',
155
341
  :'serverless_invocation_sum' => :'serverless_invocation_sum',
156
342
  :'siem_sum' => :'siem_sum',
343
+ :'standard_timeseries_average' => :'standard_timeseries_average',
157
344
  :'synthetics_api_tests_sum' => :'synthetics_api_tests_sum',
158
345
  :'synthetics_browser_checks_sum' => :'synthetics_browser_checks_sum',
159
- :'timeseries_average' => :'timeseries_average'
346
+ :'timeseries_average' => :'timeseries_average',
347
+ :'timeseries_sum' => :'timeseries_sum'
160
348
  }
161
349
  end
162
350
 
@@ -170,18 +358,55 @@ module DatadogAPIClient::V1
170
358
  # @!visibility private
171
359
  def self.openapi_types
172
360
  {
361
+ :'apm_fargate_average' => :'UsageBillableSummaryBody',
362
+ :'apm_fargate_sum' => :'UsageBillableSummaryBody',
173
363
  :'apm_host_sum' => :'UsageBillableSummaryBody',
174
364
  :'apm_host_top99p' => :'UsageBillableSummaryBody',
365
+ :'apm_profiler_host_sum' => :'UsageBillableSummaryBody',
366
+ :'apm_profiler_host_top99p' => :'UsageBillableSummaryBody',
175
367
  :'apm_trace_search_sum' => :'UsageBillableSummaryBody',
368
+ :'application_security_host_sum' => :'UsageBillableSummaryBody',
369
+ :'ci_pipeline_indexed_spans_sum' => :'UsageBillableSummaryBody',
370
+ :'ci_pipeline_maximum' => :'UsageBillableSummaryBody',
371
+ :'ci_pipeline_sum' => :'UsageBillableSummaryBody',
372
+ :'ci_test_indexed_spans_sum' => :'UsageBillableSummaryBody',
373
+ :'ci_testing_maximum' => :'UsageBillableSummaryBody',
374
+ :'ci_testing_sum' => :'UsageBillableSummaryBody',
375
+ :'cspm_container_sum' => :'UsageBillableSummaryBody',
376
+ :'cspm_host_sum' => :'UsageBillableSummaryBody',
377
+ :'cspm_host_top99p' => :'UsageBillableSummaryBody',
378
+ :'custom_event_sum' => :'UsageBillableSummaryBody',
379
+ :'cws_container_sum' => :'UsageBillableSummaryBody',
380
+ :'cws_host_sum' => :'UsageBillableSummaryBody',
381
+ :'cws_host_top99p' => :'UsageBillableSummaryBody',
382
+ :'dbm_host_sum' => :'UsageBillableSummaryBody',
383
+ :'dbm_host_top99p' => :'UsageBillableSummaryBody',
384
+ :'dbm_normalized_queries_average' => :'UsageBillableSummaryBody',
385
+ :'dbm_normalized_queries_sum' => :'UsageBillableSummaryBody',
386
+ :'fargate_container_apm_and_profiler_average' => :'UsageBillableSummaryBody',
387
+ :'fargate_container_apm_and_profiler_sum' => :'UsageBillableSummaryBody',
176
388
  :'fargate_container_average' => :'UsageBillableSummaryBody',
389
+ :'fargate_container_profiler_average' => :'UsageBillableSummaryBody',
390
+ :'fargate_container_profiler_sum' => :'UsageBillableSummaryBody',
391
+ :'fargate_container_sum' => :'UsageBillableSummaryBody',
392
+ :'incident_management_maximum' => :'UsageBillableSummaryBody',
393
+ :'incident_management_sum' => :'UsageBillableSummaryBody',
394
+ :'infra_and_apm_host_sum' => :'UsageBillableSummaryBody',
395
+ :'infra_and_apm_host_top99p' => :'UsageBillableSummaryBody',
177
396
  :'infra_container_sum' => :'UsageBillableSummaryBody',
178
397
  :'infra_host_sum' => :'UsageBillableSummaryBody',
179
398
  :'infra_host_top99p' => :'UsageBillableSummaryBody',
399
+ :'ingested_spans_sum' => :'UsageBillableSummaryBody',
400
+ :'ingested_timeseries_average' => :'UsageBillableSummaryBody',
401
+ :'ingested_timeseries_sum' => :'UsageBillableSummaryBody',
402
+ :'iot_sum' => :'UsageBillableSummaryBody',
180
403
  :'iot_top99p' => :'UsageBillableSummaryBody',
181
404
  :'lambda_function_average' => :'UsageBillableSummaryBody',
405
+ :'lambda_function_sum' => :'UsageBillableSummaryBody',
182
406
  :'logs_indexed_15day_sum' => :'UsageBillableSummaryBody',
183
407
  :'logs_indexed_180day_sum' => :'UsageBillableSummaryBody',
184
408
  :'logs_indexed_30day_sum' => :'UsageBillableSummaryBody',
409
+ :'logs_indexed_360day_sum' => :'UsageBillableSummaryBody',
185
410
  :'logs_indexed_3day_sum' => :'UsageBillableSummaryBody',
186
411
  :'logs_indexed_45day_sum' => :'UsageBillableSummaryBody',
187
412
  :'logs_indexed_60day_sum' => :'UsageBillableSummaryBody',
@@ -190,18 +415,28 @@ module DatadogAPIClient::V1
190
415
  :'logs_indexed_custom_retention_sum' => :'UsageBillableSummaryBody',
191
416
  :'logs_indexed_sum' => :'UsageBillableSummaryBody',
192
417
  :'logs_ingested_sum' => :'UsageBillableSummaryBody',
418
+ :'network_device_sum' => :'UsageBillableSummaryBody',
193
419
  :'network_device_top99p' => :'UsageBillableSummaryBody',
194
420
  :'npm_flow_sum' => :'UsageBillableSummaryBody',
195
421
  :'npm_host_sum' => :'UsageBillableSummaryBody',
196
422
  :'npm_host_top99p' => :'UsageBillableSummaryBody',
423
+ :'observability_pipeline_sum' => :'UsageBillableSummaryBody',
424
+ :'online_archive_sum' => :'UsageBillableSummaryBody',
197
425
  :'prof_container_sum' => :'UsageBillableSummaryBody',
426
+ :'prof_host_sum' => :'UsageBillableSummaryBody',
198
427
  :'prof_host_top99p' => :'UsageBillableSummaryBody',
428
+ :'rum_lite_sum' => :'UsageBillableSummaryBody',
429
+ :'rum_replay_sum' => :'UsageBillableSummaryBody',
199
430
  :'rum_sum' => :'UsageBillableSummaryBody',
431
+ :'rum_units_sum' => :'UsageBillableSummaryBody',
432
+ :'sensitive_data_scanner_sum' => :'UsageBillableSummaryBody',
200
433
  :'serverless_invocation_sum' => :'UsageBillableSummaryBody',
201
434
  :'siem_sum' => :'UsageBillableSummaryBody',
435
+ :'standard_timeseries_average' => :'UsageBillableSummaryBody',
202
436
  :'synthetics_api_tests_sum' => :'UsageBillableSummaryBody',
203
437
  :'synthetics_browser_checks_sum' => :'UsageBillableSummaryBody',
204
- :'timeseries_average' => :'UsageBillableSummaryBody'
438
+ :'timeseries_average' => :'UsageBillableSummaryBody',
439
+ :'timeseries_sum' => :'UsageBillableSummaryBody'
205
440
  }
206
441
  end
207
442
 
@@ -228,6 +463,14 @@ module DatadogAPIClient::V1
228
463
  h[k.to_sym] = v
229
464
  }
230
465
 
466
+ if attributes.key?(:'apm_fargate_average')
467
+ self.apm_fargate_average = attributes[:'apm_fargate_average']
468
+ end
469
+
470
+ if attributes.key?(:'apm_fargate_sum')
471
+ self.apm_fargate_sum = attributes[:'apm_fargate_sum']
472
+ end
473
+
231
474
  if attributes.key?(:'apm_host_sum')
232
475
  self.apm_host_sum = attributes[:'apm_host_sum']
233
476
  end
@@ -236,14 +479,130 @@ module DatadogAPIClient::V1
236
479
  self.apm_host_top99p = attributes[:'apm_host_top99p']
237
480
  end
238
481
 
482
+ if attributes.key?(:'apm_profiler_host_sum')
483
+ self.apm_profiler_host_sum = attributes[:'apm_profiler_host_sum']
484
+ end
485
+
486
+ if attributes.key?(:'apm_profiler_host_top99p')
487
+ self.apm_profiler_host_top99p = attributes[:'apm_profiler_host_top99p']
488
+ end
489
+
239
490
  if attributes.key?(:'apm_trace_search_sum')
240
491
  self.apm_trace_search_sum = attributes[:'apm_trace_search_sum']
241
492
  end
242
493
 
494
+ if attributes.key?(:'application_security_host_sum')
495
+ self.application_security_host_sum = attributes[:'application_security_host_sum']
496
+ end
497
+
498
+ if attributes.key?(:'ci_pipeline_indexed_spans_sum')
499
+ self.ci_pipeline_indexed_spans_sum = attributes[:'ci_pipeline_indexed_spans_sum']
500
+ end
501
+
502
+ if attributes.key?(:'ci_pipeline_maximum')
503
+ self.ci_pipeline_maximum = attributes[:'ci_pipeline_maximum']
504
+ end
505
+
506
+ if attributes.key?(:'ci_pipeline_sum')
507
+ self.ci_pipeline_sum = attributes[:'ci_pipeline_sum']
508
+ end
509
+
510
+ if attributes.key?(:'ci_test_indexed_spans_sum')
511
+ self.ci_test_indexed_spans_sum = attributes[:'ci_test_indexed_spans_sum']
512
+ end
513
+
514
+ if attributes.key?(:'ci_testing_maximum')
515
+ self.ci_testing_maximum = attributes[:'ci_testing_maximum']
516
+ end
517
+
518
+ if attributes.key?(:'ci_testing_sum')
519
+ self.ci_testing_sum = attributes[:'ci_testing_sum']
520
+ end
521
+
522
+ if attributes.key?(:'cspm_container_sum')
523
+ self.cspm_container_sum = attributes[:'cspm_container_sum']
524
+ end
525
+
526
+ if attributes.key?(:'cspm_host_sum')
527
+ self.cspm_host_sum = attributes[:'cspm_host_sum']
528
+ end
529
+
530
+ if attributes.key?(:'cspm_host_top99p')
531
+ self.cspm_host_top99p = attributes[:'cspm_host_top99p']
532
+ end
533
+
534
+ if attributes.key?(:'custom_event_sum')
535
+ self.custom_event_sum = attributes[:'custom_event_sum']
536
+ end
537
+
538
+ if attributes.key?(:'cws_container_sum')
539
+ self.cws_container_sum = attributes[:'cws_container_sum']
540
+ end
541
+
542
+ if attributes.key?(:'cws_host_sum')
543
+ self.cws_host_sum = attributes[:'cws_host_sum']
544
+ end
545
+
546
+ if attributes.key?(:'cws_host_top99p')
547
+ self.cws_host_top99p = attributes[:'cws_host_top99p']
548
+ end
549
+
550
+ if attributes.key?(:'dbm_host_sum')
551
+ self.dbm_host_sum = attributes[:'dbm_host_sum']
552
+ end
553
+
554
+ if attributes.key?(:'dbm_host_top99p')
555
+ self.dbm_host_top99p = attributes[:'dbm_host_top99p']
556
+ end
557
+
558
+ if attributes.key?(:'dbm_normalized_queries_average')
559
+ self.dbm_normalized_queries_average = attributes[:'dbm_normalized_queries_average']
560
+ end
561
+
562
+ if attributes.key?(:'dbm_normalized_queries_sum')
563
+ self.dbm_normalized_queries_sum = attributes[:'dbm_normalized_queries_sum']
564
+ end
565
+
566
+ if attributes.key?(:'fargate_container_apm_and_profiler_average')
567
+ self.fargate_container_apm_and_profiler_average = attributes[:'fargate_container_apm_and_profiler_average']
568
+ end
569
+
570
+ if attributes.key?(:'fargate_container_apm_and_profiler_sum')
571
+ self.fargate_container_apm_and_profiler_sum = attributes[:'fargate_container_apm_and_profiler_sum']
572
+ end
573
+
243
574
  if attributes.key?(:'fargate_container_average')
244
575
  self.fargate_container_average = attributes[:'fargate_container_average']
245
576
  end
246
577
 
578
+ if attributes.key?(:'fargate_container_profiler_average')
579
+ self.fargate_container_profiler_average = attributes[:'fargate_container_profiler_average']
580
+ end
581
+
582
+ if attributes.key?(:'fargate_container_profiler_sum')
583
+ self.fargate_container_profiler_sum = attributes[:'fargate_container_profiler_sum']
584
+ end
585
+
586
+ if attributes.key?(:'fargate_container_sum')
587
+ self.fargate_container_sum = attributes[:'fargate_container_sum']
588
+ end
589
+
590
+ if attributes.key?(:'incident_management_maximum')
591
+ self.incident_management_maximum = attributes[:'incident_management_maximum']
592
+ end
593
+
594
+ if attributes.key?(:'incident_management_sum')
595
+ self.incident_management_sum = attributes[:'incident_management_sum']
596
+ end
597
+
598
+ if attributes.key?(:'infra_and_apm_host_sum')
599
+ self.infra_and_apm_host_sum = attributes[:'infra_and_apm_host_sum']
600
+ end
601
+
602
+ if attributes.key?(:'infra_and_apm_host_top99p')
603
+ self.infra_and_apm_host_top99p = attributes[:'infra_and_apm_host_top99p']
604
+ end
605
+
247
606
  if attributes.key?(:'infra_container_sum')
248
607
  self.infra_container_sum = attributes[:'infra_container_sum']
249
608
  end
@@ -256,6 +615,22 @@ module DatadogAPIClient::V1
256
615
  self.infra_host_top99p = attributes[:'infra_host_top99p']
257
616
  end
258
617
 
618
+ if attributes.key?(:'ingested_spans_sum')
619
+ self.ingested_spans_sum = attributes[:'ingested_spans_sum']
620
+ end
621
+
622
+ if attributes.key?(:'ingested_timeseries_average')
623
+ self.ingested_timeseries_average = attributes[:'ingested_timeseries_average']
624
+ end
625
+
626
+ if attributes.key?(:'ingested_timeseries_sum')
627
+ self.ingested_timeseries_sum = attributes[:'ingested_timeseries_sum']
628
+ end
629
+
630
+ if attributes.key?(:'iot_sum')
631
+ self.iot_sum = attributes[:'iot_sum']
632
+ end
633
+
259
634
  if attributes.key?(:'iot_top99p')
260
635
  self.iot_top99p = attributes[:'iot_top99p']
261
636
  end
@@ -264,6 +639,10 @@ module DatadogAPIClient::V1
264
639
  self.lambda_function_average = attributes[:'lambda_function_average']
265
640
  end
266
641
 
642
+ if attributes.key?(:'lambda_function_sum')
643
+ self.lambda_function_sum = attributes[:'lambda_function_sum']
644
+ end
645
+
267
646
  if attributes.key?(:'logs_indexed_15day_sum')
268
647
  self.logs_indexed_15day_sum = attributes[:'logs_indexed_15day_sum']
269
648
  end
@@ -276,6 +655,10 @@ module DatadogAPIClient::V1
276
655
  self.logs_indexed_30day_sum = attributes[:'logs_indexed_30day_sum']
277
656
  end
278
657
 
658
+ if attributes.key?(:'logs_indexed_360day_sum')
659
+ self.logs_indexed_360day_sum = attributes[:'logs_indexed_360day_sum']
660
+ end
661
+
279
662
  if attributes.key?(:'logs_indexed_3day_sum')
280
663
  self.logs_indexed_3day_sum = attributes[:'logs_indexed_3day_sum']
281
664
  end
@@ -308,6 +691,10 @@ module DatadogAPIClient::V1
308
691
  self.logs_ingested_sum = attributes[:'logs_ingested_sum']
309
692
  end
310
693
 
694
+ if attributes.key?(:'network_device_sum')
695
+ self.network_device_sum = attributes[:'network_device_sum']
696
+ end
697
+
311
698
  if attributes.key?(:'network_device_top99p')
312
699
  self.network_device_top99p = attributes[:'network_device_top99p']
313
700
  end
@@ -324,18 +711,46 @@ module DatadogAPIClient::V1
324
711
  self.npm_host_top99p = attributes[:'npm_host_top99p']
325
712
  end
326
713
 
714
+ if attributes.key?(:'observability_pipeline_sum')
715
+ self.observability_pipeline_sum = attributes[:'observability_pipeline_sum']
716
+ end
717
+
718
+ if attributes.key?(:'online_archive_sum')
719
+ self.online_archive_sum = attributes[:'online_archive_sum']
720
+ end
721
+
327
722
  if attributes.key?(:'prof_container_sum')
328
723
  self.prof_container_sum = attributes[:'prof_container_sum']
329
724
  end
330
725
 
726
+ if attributes.key?(:'prof_host_sum')
727
+ self.prof_host_sum = attributes[:'prof_host_sum']
728
+ end
729
+
331
730
  if attributes.key?(:'prof_host_top99p')
332
731
  self.prof_host_top99p = attributes[:'prof_host_top99p']
333
732
  end
334
733
 
734
+ if attributes.key?(:'rum_lite_sum')
735
+ self.rum_lite_sum = attributes[:'rum_lite_sum']
736
+ end
737
+
738
+ if attributes.key?(:'rum_replay_sum')
739
+ self.rum_replay_sum = attributes[:'rum_replay_sum']
740
+ end
741
+
335
742
  if attributes.key?(:'rum_sum')
336
743
  self.rum_sum = attributes[:'rum_sum']
337
744
  end
338
745
 
746
+ if attributes.key?(:'rum_units_sum')
747
+ self.rum_units_sum = attributes[:'rum_units_sum']
748
+ end
749
+
750
+ if attributes.key?(:'sensitive_data_scanner_sum')
751
+ self.sensitive_data_scanner_sum = attributes[:'sensitive_data_scanner_sum']
752
+ end
753
+
339
754
  if attributes.key?(:'serverless_invocation_sum')
340
755
  self.serverless_invocation_sum = attributes[:'serverless_invocation_sum']
341
756
  end
@@ -344,6 +759,10 @@ module DatadogAPIClient::V1
344
759
  self.siem_sum = attributes[:'siem_sum']
345
760
  end
346
761
 
762
+ if attributes.key?(:'standard_timeseries_average')
763
+ self.standard_timeseries_average = attributes[:'standard_timeseries_average']
764
+ end
765
+
347
766
  if attributes.key?(:'synthetics_api_tests_sum')
348
767
  self.synthetics_api_tests_sum = attributes[:'synthetics_api_tests_sum']
349
768
  end
@@ -355,6 +774,10 @@ module DatadogAPIClient::V1
355
774
  if attributes.key?(:'timeseries_average')
356
775
  self.timeseries_average = attributes[:'timeseries_average']
357
776
  end
777
+
778
+ if attributes.key?(:'timeseries_sum')
779
+ self.timeseries_sum = attributes[:'timeseries_sum']
780
+ end
358
781
  end
359
782
 
360
783
  # Check to see if the all the properties in the model are valid
@@ -370,18 +793,55 @@ module DatadogAPIClient::V1
370
793
  def ==(o)
371
794
  return true if self.equal?(o)
372
795
  self.class == o.class &&
796
+ apm_fargate_average == o.apm_fargate_average &&
797
+ apm_fargate_sum == o.apm_fargate_sum &&
373
798
  apm_host_sum == o.apm_host_sum &&
374
799
  apm_host_top99p == o.apm_host_top99p &&
800
+ apm_profiler_host_sum == o.apm_profiler_host_sum &&
801
+ apm_profiler_host_top99p == o.apm_profiler_host_top99p &&
375
802
  apm_trace_search_sum == o.apm_trace_search_sum &&
803
+ application_security_host_sum == o.application_security_host_sum &&
804
+ ci_pipeline_indexed_spans_sum == o.ci_pipeline_indexed_spans_sum &&
805
+ ci_pipeline_maximum == o.ci_pipeline_maximum &&
806
+ ci_pipeline_sum == o.ci_pipeline_sum &&
807
+ ci_test_indexed_spans_sum == o.ci_test_indexed_spans_sum &&
808
+ ci_testing_maximum == o.ci_testing_maximum &&
809
+ ci_testing_sum == o.ci_testing_sum &&
810
+ cspm_container_sum == o.cspm_container_sum &&
811
+ cspm_host_sum == o.cspm_host_sum &&
812
+ cspm_host_top99p == o.cspm_host_top99p &&
813
+ custom_event_sum == o.custom_event_sum &&
814
+ cws_container_sum == o.cws_container_sum &&
815
+ cws_host_sum == o.cws_host_sum &&
816
+ cws_host_top99p == o.cws_host_top99p &&
817
+ dbm_host_sum == o.dbm_host_sum &&
818
+ dbm_host_top99p == o.dbm_host_top99p &&
819
+ dbm_normalized_queries_average == o.dbm_normalized_queries_average &&
820
+ dbm_normalized_queries_sum == o.dbm_normalized_queries_sum &&
821
+ fargate_container_apm_and_profiler_average == o.fargate_container_apm_and_profiler_average &&
822
+ fargate_container_apm_and_profiler_sum == o.fargate_container_apm_and_profiler_sum &&
376
823
  fargate_container_average == o.fargate_container_average &&
824
+ fargate_container_profiler_average == o.fargate_container_profiler_average &&
825
+ fargate_container_profiler_sum == o.fargate_container_profiler_sum &&
826
+ fargate_container_sum == o.fargate_container_sum &&
827
+ incident_management_maximum == o.incident_management_maximum &&
828
+ incident_management_sum == o.incident_management_sum &&
829
+ infra_and_apm_host_sum == o.infra_and_apm_host_sum &&
830
+ infra_and_apm_host_top99p == o.infra_and_apm_host_top99p &&
377
831
  infra_container_sum == o.infra_container_sum &&
378
832
  infra_host_sum == o.infra_host_sum &&
379
833
  infra_host_top99p == o.infra_host_top99p &&
834
+ ingested_spans_sum == o.ingested_spans_sum &&
835
+ ingested_timeseries_average == o.ingested_timeseries_average &&
836
+ ingested_timeseries_sum == o.ingested_timeseries_sum &&
837
+ iot_sum == o.iot_sum &&
380
838
  iot_top99p == o.iot_top99p &&
381
839
  lambda_function_average == o.lambda_function_average &&
840
+ lambda_function_sum == o.lambda_function_sum &&
382
841
  logs_indexed_15day_sum == o.logs_indexed_15day_sum &&
383
842
  logs_indexed_180day_sum == o.logs_indexed_180day_sum &&
384
843
  logs_indexed_30day_sum == o.logs_indexed_30day_sum &&
844
+ logs_indexed_360day_sum == o.logs_indexed_360day_sum &&
385
845
  logs_indexed_3day_sum == o.logs_indexed_3day_sum &&
386
846
  logs_indexed_45day_sum == o.logs_indexed_45day_sum &&
387
847
  logs_indexed_60day_sum == o.logs_indexed_60day_sum &&
@@ -390,18 +850,28 @@ module DatadogAPIClient::V1
390
850
  logs_indexed_custom_retention_sum == o.logs_indexed_custom_retention_sum &&
391
851
  logs_indexed_sum == o.logs_indexed_sum &&
392
852
  logs_ingested_sum == o.logs_ingested_sum &&
853
+ network_device_sum == o.network_device_sum &&
393
854
  network_device_top99p == o.network_device_top99p &&
394
855
  npm_flow_sum == o.npm_flow_sum &&
395
856
  npm_host_sum == o.npm_host_sum &&
396
857
  npm_host_top99p == o.npm_host_top99p &&
858
+ observability_pipeline_sum == o.observability_pipeline_sum &&
859
+ online_archive_sum == o.online_archive_sum &&
397
860
  prof_container_sum == o.prof_container_sum &&
861
+ prof_host_sum == o.prof_host_sum &&
398
862
  prof_host_top99p == o.prof_host_top99p &&
863
+ rum_lite_sum == o.rum_lite_sum &&
864
+ rum_replay_sum == o.rum_replay_sum &&
399
865
  rum_sum == o.rum_sum &&
866
+ rum_units_sum == o.rum_units_sum &&
867
+ sensitive_data_scanner_sum == o.sensitive_data_scanner_sum &&
400
868
  serverless_invocation_sum == o.serverless_invocation_sum &&
401
869
  siem_sum == o.siem_sum &&
870
+ standard_timeseries_average == o.standard_timeseries_average &&
402
871
  synthetics_api_tests_sum == o.synthetics_api_tests_sum &&
403
872
  synthetics_browser_checks_sum == o.synthetics_browser_checks_sum &&
404
- timeseries_average == o.timeseries_average
873
+ timeseries_average == o.timeseries_average &&
874
+ timeseries_sum == o.timeseries_sum
405
875
  end
406
876
 
407
877
  # @see the `==` method
@@ -415,7 +885,7 @@ module DatadogAPIClient::V1
415
885
  # @return [Integer] Hash code
416
886
  # @!visibility private
417
887
  def hash
418
- [apm_host_sum, apm_host_top99p, apm_trace_search_sum, fargate_container_average, infra_container_sum, infra_host_sum, infra_host_top99p, iot_top99p, lambda_function_average, logs_indexed_15day_sum, logs_indexed_180day_sum, logs_indexed_30day_sum, logs_indexed_3day_sum, logs_indexed_45day_sum, logs_indexed_60day_sum, logs_indexed_7day_sum, logs_indexed_90day_sum, logs_indexed_custom_retention_sum, logs_indexed_sum, logs_ingested_sum, network_device_top99p, npm_flow_sum, npm_host_sum, npm_host_top99p, prof_container_sum, prof_host_top99p, rum_sum, serverless_invocation_sum, siem_sum, synthetics_api_tests_sum, synthetics_browser_checks_sum, timeseries_average].hash
888
+ [apm_fargate_average, apm_fargate_sum, apm_host_sum, apm_host_top99p, apm_profiler_host_sum, apm_profiler_host_top99p, apm_trace_search_sum, application_security_host_sum, ci_pipeline_indexed_spans_sum, ci_pipeline_maximum, ci_pipeline_sum, ci_test_indexed_spans_sum, ci_testing_maximum, ci_testing_sum, cspm_container_sum, cspm_host_sum, cspm_host_top99p, custom_event_sum, cws_container_sum, cws_host_sum, cws_host_top99p, dbm_host_sum, dbm_host_top99p, dbm_normalized_queries_average, dbm_normalized_queries_sum, fargate_container_apm_and_profiler_average, fargate_container_apm_and_profiler_sum, fargate_container_average, fargate_container_profiler_average, fargate_container_profiler_sum, fargate_container_sum, incident_management_maximum, incident_management_sum, infra_and_apm_host_sum, infra_and_apm_host_top99p, infra_container_sum, infra_host_sum, infra_host_top99p, ingested_spans_sum, ingested_timeseries_average, ingested_timeseries_sum, iot_sum, iot_top99p, lambda_function_average, lambda_function_sum, logs_indexed_15day_sum, logs_indexed_180day_sum, logs_indexed_30day_sum, logs_indexed_360day_sum, logs_indexed_3day_sum, logs_indexed_45day_sum, logs_indexed_60day_sum, logs_indexed_7day_sum, logs_indexed_90day_sum, logs_indexed_custom_retention_sum, logs_indexed_sum, logs_ingested_sum, network_device_sum, network_device_top99p, npm_flow_sum, npm_host_sum, npm_host_top99p, observability_pipeline_sum, online_archive_sum, prof_container_sum, prof_host_sum, prof_host_top99p, rum_lite_sum, rum_replay_sum, rum_sum, rum_units_sum, sensitive_data_scanner_sum, serverless_invocation_sum, siem_sum, standard_timeseries_average, synthetics_api_tests_sum, synthetics_browser_checks_sum, timeseries_average, timeseries_sum].hash
419
889
  end
420
890
  end
421
891
  end