datadog_api_client 2.16.0 → 2.17.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (182) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +654 -11
  4. data/.generator/schemas/v2/openapi.yaml +1268 -206
  5. data/.generator/src/generator/formatter.py +4 -0
  6. data/.generator/src/generator/openapi.py +2 -0
  7. data/.generator/src/generator/templates/api_client.j2 +3 -0
  8. data/.generator/src/generator/templates/inflector.j2 +1 -1
  9. data/.generator/src/generator/templates/model_base.j2 +4 -0
  10. data/CHANGELOG.md +29 -0
  11. data/Gemfile +1 -0
  12. data/LICENSE-3rdparty.csv +1 -0
  13. data/datadog_api_client.gemspec +2 -0
  14. data/examples/v1/aws-integration/CreateAWSAccount.rb +1 -1
  15. data/examples/v1/aws-integration/CreateAWSEventBridgeSource.rb +12 -0
  16. data/examples/v1/aws-integration/CreateAWSTagFilter.rb +1 -1
  17. data/examples/v1/aws-integration/CreateNewAWSExternalID.rb +1 -1
  18. data/examples/v1/aws-integration/DeleteAWSAccount.rb +1 -1
  19. data/examples/v1/aws-integration/DeleteAWSEventBridgeSource.rb +11 -0
  20. data/examples/v1/aws-integration/ListAWSEventBridgeSources.rb +5 -0
  21. data/examples/v1/azure-integration/CreateAzureIntegration.rb +1 -0
  22. data/examples/v1/azure-integration/DeleteAzureIntegration.rb +1 -0
  23. data/examples/v1/azure-integration/UpdateAzureHostFilters.rb +1 -0
  24. data/examples/v1/azure-integration/UpdateAzureIntegration.rb +1 -0
  25. data/examples/v1/dashboards/CreateDashboard_1213075383.rb +7 -0
  26. data/examples/v1/monitors/CreateMonitor_1539578087.rb +0 -1
  27. data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent.rb +3 -0
  28. data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent_129899466.rb +3 -0
  29. data/examples/v2/confluent-cloud/DeleteConfluentAccount.rb +4 -1
  30. data/examples/v2/confluent-cloud/DeleteConfluentResource.rb +5 -0
  31. data/examples/v2/containers/ListContainers.rb +8 -0
  32. data/examples/v2/containers/ListContainers_2175733917.rb +11 -0
  33. data/examples/v2/containers/ListContainers_931009654.rb +11 -0
  34. data/examples/v2/downtimes/ListMonitorDowntimes.rb +1 -1
  35. data/examples/v2/key-management/CreateCurrentUserApplicationKey.rb +2 -7
  36. data/examples/v2/key-management/DeleteApplicationKey.rb +4 -1
  37. data/examples/v2/key-management/DeleteCurrentUserApplicationKey.rb +4 -1
  38. data/examples/v2/powerpack/CreatePowerpack.rb +1 -0
  39. data/examples/v2/powerpack/UpdatePowerpack.rb +1 -0
  40. data/examples/v2/security-monitoring/MuteFindings.rb +29 -0
  41. data/examples/v2/service-definition/CreateOrUpdateServiceDefinitions.rb +1 -1
  42. data/examples/v2/service-scorecards/CreateScorecardOutcomesBatch.rb +27 -0
  43. data/examples/v2/service-scorecards/CreateScorecardRule.rb +19 -0
  44. data/examples/v2/service-scorecards/DeleteScorecardRule.rb +11 -0
  45. data/examples/v2/service-scorecards/ListScorecardOutcomes.rb +8 -0
  46. data/examples/v2/service-scorecards/ListScorecardOutcomes_2663454275.rb +13 -0
  47. data/examples/v2/service-scorecards/ListScorecardRules.rb +8 -0
  48. data/examples/v2/service-scorecards/ListScorecardRules_4057666343.rb +13 -0
  49. data/examples/v2/synthetics/SetOnDemandConcurrencyCap.rb +3 -1
  50. data/examples/v2/teams/ListTeams_3429963470.rb +12 -0
  51. data/examples/v2/usage-metering/GetUsageApplicationSecurityMonitoring.rb +4 -1
  52. data/examples/v2/usage-metering/GetUsageLambdaTracedInvocations.rb +4 -1
  53. data/examples/v2/usage-metering/GetUsageObservabilityPipelines.rb +4 -1
  54. data/examples/v2/users/GetUser.rb +5 -2
  55. data/lib/datadog_api_client/api_client.rb +3 -0
  56. data/lib/datadog_api_client/configuration.rb +8 -1
  57. data/lib/datadog_api_client/inflector.rb +76 -9
  58. data/lib/datadog_api_client/v1/api/aws_integration_api.rb +194 -0
  59. data/lib/datadog_api_client/v1/api/monitors_api.rb +5 -1
  60. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +3 -3
  61. data/lib/datadog_api_client/v1/model_base.rb +4 -0
  62. data/lib/datadog_api_client/v1/models/aws_account.rb +2 -1
  63. data/lib/datadog_api_client/v1/models/aws_event_bridge_account_configuration.rb +105 -0
  64. data/lib/datadog_api_client/v1/models/aws_event_bridge_create_request.rb +112 -0
  65. data/lib/datadog_api_client/v1/models/aws_event_bridge_create_response.rb +110 -0
  66. data/lib/datadog_api_client/v1/models/aws_event_bridge_create_status.rb +26 -0
  67. data/lib/datadog_api_client/v1/models/aws_event_bridge_delete_request.rb +100 -0
  68. data/lib/datadog_api_client/v1/models/aws_event_bridge_delete_response.rb +80 -0
  69. data/lib/datadog_api_client/v1/models/aws_event_bridge_delete_status.rb +26 -0
  70. data/lib/datadog_api_client/v1/models/aws_event_bridge_list_response.rb +92 -0
  71. data/lib/datadog_api_client/v1/models/aws_event_bridge_source.rb +90 -0
  72. data/lib/datadog_api_client/v1/models/azure_account.rb +12 -1
  73. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +21 -0
  74. data/lib/datadog_api_client/v1/models/monitor_options.rb +1 -1
  75. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +42 -0
  76. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +421 -1
  77. data/lib/datadog_api_client/v1/models/toplist_widget_definition.rb +11 -1
  78. data/lib/datadog_api_client/v1/models/toplist_widget_display.rb +63 -0
  79. data/lib/datadog_api_client/v1/models/toplist_widget_flat.rb +98 -0
  80. data/lib/datadog_api_client/v1/models/toplist_widget_flat_type.rb +26 -0
  81. data/lib/datadog_api_client/v1/models/toplist_widget_legend.rb +28 -0
  82. data/lib/datadog_api_client/v1/models/toplist_widget_scaling.rb +27 -0
  83. data/lib/datadog_api_client/v1/models/toplist_widget_stacked.rb +119 -0
  84. data/lib/datadog_api_client/v1/models/toplist_widget_stacked_type.rb +26 -0
  85. data/lib/datadog_api_client/v1/models/toplist_widget_style.rb +90 -0
  86. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +11 -1
  87. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +11 -1
  88. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +11 -1
  89. data/lib/datadog_api_client/v2/api/ci_visibility_pipelines_api.rb +6 -0
  90. data/lib/datadog_api_client/v2/api/containers_api.rb +129 -0
  91. data/lib/datadog_api_client/v2/api/key_management_api.rb +8 -0
  92. data/lib/datadog_api_client/v2/api/metrics_api.rb +6 -3
  93. data/lib/datadog_api_client/v2/api/roles_api.rb +2 -0
  94. data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +66 -72
  95. data/lib/datadog_api_client/v2/api/service_scorecards_api.rb +457 -0
  96. data/lib/datadog_api_client/v2/api/teams_api.rb +2 -0
  97. data/lib/datadog_api_client/v2/model_base.rb +4 -0
  98. data/lib/datadog_api_client/v2/models/{mute_finding_request.rb → bulk_mute_findings_request.rb} +6 -6
  99. data/lib/datadog_api_client/v2/models/{mute_finding_request_attributes.rb → bulk_mute_findings_request_attributes.rb} +5 -5
  100. data/lib/datadog_api_client/v2/models/{mute_finding_request_data.rb → bulk_mute_findings_request_data.rb} +28 -7
  101. data/lib/datadog_api_client/v2/models/bulk_mute_findings_request_meta.rb +82 -0
  102. data/lib/datadog_api_client/v2/models/bulk_mute_findings_request_meta_findings.rb +80 -0
  103. data/lib/datadog_api_client/v2/models/{mute_finding_request_properties.rb → bulk_mute_findings_request_properties.rb} +6 -6
  104. data/lib/datadog_api_client/v2/models/{mute_finding_response.rb → bulk_mute_findings_response.rb} +5 -5
  105. data/lib/datadog_api_client/v2/models/bulk_mute_findings_response_data.rb +90 -0
  106. data/lib/datadog_api_client/v2/models/{mute_finding_response_data.rb → container.rb} +9 -9
  107. data/lib/datadog_api_client/v2/models/container_attributes.rb +183 -0
  108. data/lib/datadog_api_client/v2/models/container_group.rb +110 -0
  109. data/lib/datadog_api_client/v2/models/container_group_attributes.rb +90 -0
  110. data/lib/datadog_api_client/v2/models/container_group_relationships.rb +80 -0
  111. data/lib/datadog_api_client/v2/models/container_group_relationships_link.rb +92 -0
  112. data/lib/datadog_api_client/v2/models/container_group_relationships_links.rb +80 -0
  113. data/lib/datadog_api_client/v2/models/container_group_type.rb +26 -0
  114. data/lib/datadog_api_client/v2/models/container_item.rb +63 -0
  115. data/lib/datadog_api_client/v2/models/container_meta.rb +80 -0
  116. data/lib/datadog_api_client/v2/models/container_meta_page.rb +160 -0
  117. data/lib/datadog_api_client/v2/models/container_meta_page_type.rb +26 -0
  118. data/lib/datadog_api_client/v2/models/container_type.rb +26 -0
  119. data/lib/datadog_api_client/v2/models/containers_response.rb +102 -0
  120. data/lib/datadog_api_client/v2/models/containers_response_links.rb +130 -0
  121. data/lib/datadog_api_client/v2/models/create_rule_request.rb +80 -0
  122. data/lib/datadog_api_client/v2/models/create_rule_request_data.rb +90 -0
  123. data/lib/datadog_api_client/v2/models/create_rule_response.rb +80 -0
  124. data/lib/datadog_api_client/v2/models/create_rule_response_data.rb +110 -0
  125. data/lib/datadog_api_client/v2/models/list_rules_response.rb +92 -0
  126. data/lib/datadog_api_client/v2/models/list_rules_response_data_item.rb +110 -0
  127. data/lib/datadog_api_client/v2/models/list_rules_response_links.rb +80 -0
  128. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb +13 -1
  129. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_status_attributes.rb +12 -1
  130. data/lib/datadog_api_client/v2/models/metric_tag_configuration_attributes.rb +13 -1
  131. data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +13 -1
  132. data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +13 -1
  133. data/lib/datadog_api_client/v2/models/outcome_type.rb +26 -0
  134. data/lib/datadog_api_client/v2/models/outcomes_batch_attributes.rb +82 -0
  135. data/lib/datadog_api_client/v2/models/outcomes_batch_request.rb +80 -0
  136. data/lib/datadog_api_client/v2/models/outcomes_batch_request_data.rb +90 -0
  137. data/lib/datadog_api_client/v2/models/outcomes_batch_request_item.rb +150 -0
  138. data/lib/datadog_api_client/v2/models/outcomes_batch_response.rb +121 -0
  139. data/lib/datadog_api_client/v2/models/outcomes_batch_response_attributes.rb +120 -0
  140. data/lib/datadog_api_client/v2/models/outcomes_batch_response_meta.rb +90 -0
  141. data/lib/datadog_api_client/v2/models/outcomes_batch_type.rb +26 -0
  142. data/lib/datadog_api_client/v2/models/outcomes_response.rb +104 -0
  143. data/lib/datadog_api_client/v2/models/outcomes_response_data_item.rb +110 -0
  144. data/lib/datadog_api_client/v2/models/outcomes_response_included_item.rb +100 -0
  145. data/lib/datadog_api_client/v2/models/outcomes_response_included_rule_attributes.rb +90 -0
  146. data/lib/datadog_api_client/v2/models/outcomes_response_links.rb +80 -0
  147. data/lib/datadog_api_client/v2/models/powerpack_group_widget.rb +14 -4
  148. data/lib/datadog_api_client/v2/models/relationship_to_outcome.rb +80 -0
  149. data/lib/datadog_api_client/v2/models/relationship_to_outcome_data.rb +90 -0
  150. data/lib/datadog_api_client/v2/models/relationship_to_rule.rb +80 -0
  151. data/lib/datadog_api_client/v2/models/relationship_to_rule_data.rb +80 -0
  152. data/lib/datadog_api_client/v2/models/relationship_to_rule_data_object.rb +90 -0
  153. data/lib/datadog_api_client/v2/models/rule_attributes.rb +160 -0
  154. data/lib/datadog_api_client/v2/models/rule_outcome_relationships.rb +80 -0
  155. data/lib/datadog_api_client/v2/models/rule_type.rb +26 -0
  156. data/lib/datadog_api_client/v2/models/scorecard_type.rb +26 -0
  157. data/lib/datadog_api_client/v2/models/security_monitoring_signal_attributes.rb +7 -7
  158. data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb +11 -1
  159. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2.rb +8 -8
  160. data/lib/datadog_api_client/v2/models/state.rb +28 -0
  161. data/lib/datadog_api_client/v2/models/teams_field.rb +40 -0
  162. data/lib/datadog_api_client/v2/models/user_team_permission_attributes.rb +1 -1
  163. data/lib/datadog_api_client/v2/models/widget_live_span.rb +40 -0
  164. data/lib/datadog_api_client/version.rb +1 -1
  165. metadata +113 -25
  166. data/examples/v2/confluent-cloud/DeleteConfluentAccount_2919241291.rb +0 -8
  167. data/examples/v2/downtimes/ListMonitorDowntimes_128979780.rb +0 -5
  168. data/examples/v2/key-management/CreateCurrentUserApplicationKey_1999509896.rb +0 -14
  169. data/examples/v2/key-management/DeleteApplicationKey_771691550.rb +0 -8
  170. data/examples/v2/key-management/DeleteCurrentUserApplicationKey_1266687064.rb +0 -8
  171. data/examples/v2/key-management/GetCurrentUserApplicationKey_1060640890.rb +0 -8
  172. data/examples/v2/key-management/ListApplicationKeys_2237010090.rb +0 -5
  173. data/examples/v2/key-management/ListCurrentUserApplicationKeys_1503860964.rb +0 -5
  174. data/examples/v2/security-monitoring/UpdateFinding.rb +0 -23
  175. data/examples/v2/synthetics/GetOnDemandConcurrencyCap_2633566918.rb +0 -5
  176. data/examples/v2/synthetics/SetOnDemandConcurrencyCap_2850884405.rb +0 -9
  177. data/examples/v2/usage-metering/GetUsageApplicationSecurityMonitoring_3959166796.rb +0 -8
  178. data/examples/v2/usage-metering/GetUsageLambdaTracedInvocations_1436752065.rb +0 -8
  179. data/examples/v2/usage-metering/GetUsageObservabilityPipelines_970725512.rb +0 -8
  180. data/examples/v2/users/GetUser_3047557953.rb +0 -8
  181. data/lib/datadog_api_client/v2/models/mute_finding_response_attributes.rb +0 -191
  182. data/lib/datadog_api_client/v2/models/mute_finding_response_properties.rb +0 -114
@@ -56,7 +56,7 @@ components:
56
56
  type: string
57
57
  account_id:
58
58
  description: Your AWS Account ID without dashes.
59
- example: '1234567'
59
+ example: '123456789012'
60
60
  type: string
61
61
  account_specific_namespace_rules:
62
62
  additionalProperties:
@@ -80,7 +80,9 @@ components:
80
80
  example: true
81
81
  type: boolean
82
82
  excluded_regions:
83
- description: An array of AWS regions to exclude from metrics collection.
83
+ description: 'An array of [AWS regions](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints)
84
+
85
+ to exclude from metrics collection.'
84
86
  example:
85
87
  - us-east-1
86
88
  - us-west-2
@@ -116,7 +118,7 @@ components:
116
118
  example:
117
119
  - $KEY:$VALUE
118
120
  items:
119
- description: The list of the the host_tags.
121
+ description: The list of the host_tags.
120
122
  type: string
121
123
  type: array
122
124
  metrics_collection_enabled:
@@ -171,7 +173,7 @@ components:
171
173
  type: string
172
174
  account_id:
173
175
  description: Your AWS Account ID without dashes.
174
- example: '1234567'
176
+ example: '123456789012'
175
177
  type: string
176
178
  role_name:
177
179
  description: Your Datadog role delegation name.
@@ -187,6 +189,136 @@ components:
187
189
  $ref: '#/components/schemas/AWSAccount'
188
190
  type: array
189
191
  type: object
192
+ AWSEventBridgeAccountConfiguration:
193
+ description: The EventBridge configuration for one AWS account.
194
+ properties:
195
+ accountId:
196
+ description: Your AWS Account ID without dashes.
197
+ example: '123456789012'
198
+ type: string
199
+ eventHubs:
200
+ description: Array of AWS event sources associated with this account.
201
+ items:
202
+ $ref: '#/components/schemas/AWSEventBridgeSource'
203
+ type: array
204
+ tags:
205
+ description: 'Array of tags (in the form `key:value`) which are added to
206
+ all hosts
207
+
208
+ and metrics reporting through the main AWS integration.'
209
+ example:
210
+ - $KEY:$VALUE
211
+ items:
212
+ description: The list of the host_tags.
213
+ type: string
214
+ type: array
215
+ type: object
216
+ AWSEventBridgeCreateRequest:
217
+ description: An object used to create an EventBridge source.
218
+ properties:
219
+ account_id:
220
+ description: Your AWS Account ID without dashes.
221
+ example: '123456789012'
222
+ type: string
223
+ create_event_bus:
224
+ description: 'True if Datadog should create the event bus in addition to
225
+ the event
226
+
227
+ source. Requires the `events:CreateEventBus` permission.'
228
+ example: true
229
+ type: boolean
230
+ event_generator_name:
231
+ description: 'The given part of the event source name, which is then combined
232
+ with an
233
+
234
+ assigned suffix to form the full name.'
235
+ example: app-alerts
236
+ type: string
237
+ region:
238
+ description: The event source's [AWS region](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints).
239
+ example: us-east-1
240
+ type: string
241
+ type: object
242
+ AWSEventBridgeCreateResponse:
243
+ description: A created EventBridge source.
244
+ properties:
245
+ event_source_name:
246
+ description: The event source name.
247
+ example: app-alerts-zyxw3210
248
+ type: string
249
+ has_bus:
250
+ description: True if the event bus was created in addition to the source.
251
+ example: true
252
+ type: boolean
253
+ region:
254
+ description: The event source's [AWS region](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints).
255
+ example: us-east-1
256
+ type: string
257
+ status:
258
+ $ref: '#/components/schemas/AWSEventBridgeCreateStatus'
259
+ type: object
260
+ AWSEventBridgeCreateStatus:
261
+ description: The event source status "created".
262
+ enum:
263
+ - created
264
+ example: created
265
+ type: string
266
+ x-enum-varnames:
267
+ - CREATED
268
+ AWSEventBridgeDeleteRequest:
269
+ description: An object used to delete an EventBridge source.
270
+ properties:
271
+ account_id:
272
+ description: Your AWS Account ID without dashes.
273
+ example: '123456789012'
274
+ type: string
275
+ event_generator_name:
276
+ description: The event source name.
277
+ example: app-alerts-zyxw3210
278
+ type: string
279
+ region:
280
+ description: The event source's [AWS region](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints).
281
+ example: us-east-1
282
+ type: string
283
+ type: object
284
+ AWSEventBridgeDeleteResponse:
285
+ description: An indicator of the successful deletion of an EventBridge source.
286
+ properties:
287
+ status:
288
+ $ref: '#/components/schemas/AWSEventBridgeDeleteStatus'
289
+ type: object
290
+ AWSEventBridgeDeleteStatus:
291
+ description: The event source status "empty".
292
+ enum:
293
+ - empty
294
+ example: empty
295
+ type: string
296
+ x-enum-varnames:
297
+ - EMPTY
298
+ AWSEventBridgeListResponse:
299
+ description: An object describing the EventBridge configuration for multiple
300
+ accounts.
301
+ properties:
302
+ accounts:
303
+ description: List of accounts with their event sources.
304
+ items:
305
+ $ref: '#/components/schemas/AWSEventBridgeAccountConfiguration'
306
+ type: array
307
+ isInstalled:
308
+ description: True if the EventBridge sub-integration is enabled for your
309
+ organization.
310
+ type: boolean
311
+ type: object
312
+ AWSEventBridgeSource:
313
+ description: An EventBridge source.
314
+ properties:
315
+ name:
316
+ description: The event source name.
317
+ type: string
318
+ region:
319
+ description: The event source's [AWS region](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints).
320
+ type: string
321
+ type: object
190
322
  AWSLogsAsyncError:
191
323
  description: Description of errors.
192
324
  properties:
@@ -323,7 +455,7 @@ components:
323
455
  properties:
324
456
  account_id:
325
457
  description: Your AWS Account ID without dashes.
326
- example: '1234567'
458
+ example: '123456789012'
327
459
  type: string
328
460
  namespace:
329
461
  $ref: '#/components/schemas/AWSNamespace'
@@ -667,6 +799,14 @@ components:
667
799
  description: Your Azure web application secret key.
668
800
  example: testingx./Sw*g/Y33t..R1cH+hScMDt
669
801
  type: string
802
+ container_app_filters:
803
+ description: 'Limit the Azure container apps that are pulled into Datadog
804
+ using tags.
805
+
806
+ Only container apps that match one of the defined tags are imported into
807
+ Datadog.'
808
+ example: key:value,filter:example
809
+ type: string
670
810
  cspm_enabled:
671
811
  description: Enable Cloud Security Management Misconfigurations for your
672
812
  organization.
@@ -3901,11 +4041,15 @@ components:
3901
4041
  - appsec_fargate_usage
3902
4042
  - appsec_usage
3903
4043
  - browser_usage
4044
+ - ci_pipeline_indexed_spans_usage
4045
+ - ci_test_indexed_spans_usage
3904
4046
  - ci_visibility_itr_usage
4047
+ - cloud_siem_usage
3905
4048
  - container_excl_agent_usage
3906
4049
  - container_usage
3907
4050
  - cspm_containers_usage
3908
4051
  - cspm_hosts_usage
4052
+ - custom_event_usage
3909
4053
  - custom_ingested_timeseries_usage
3910
4054
  - custom_timeseries_usage
3911
4055
  - cws_containers_usage
@@ -3919,8 +4063,22 @@ components:
3919
4063
  - estimated_rum_sessions_usage
3920
4064
  - fargate_usage
3921
4065
  - functions_usage
4066
+ - indexed_spans_usage
3922
4067
  - infra_host_usage
4068
+ - ingested_logs_bytes_usage
4069
+ - ingested_spans_bytes_usage
3923
4070
  - invocations_usage
4071
+ - lambda_traced_invocations_usage
4072
+ - logs_indexed_15day_usage
4073
+ - logs_indexed_180day_usage
4074
+ - logs_indexed_30day_usage
4075
+ - logs_indexed_360day_usage
4076
+ - logs_indexed_3day_usage
4077
+ - logs_indexed_45day_usage
4078
+ - logs_indexed_60day_usage
4079
+ - logs_indexed_7day_usage
4080
+ - logs_indexed_90day_usage
4081
+ - logs_indexed_custom_retention_usage
3924
4082
  - mobile_app_testing_usage
3925
4083
  - ndm_netflow_usage
3926
4084
  - npm_host_usage
@@ -3928,8 +4086,11 @@ components:
3928
4086
  - profiled_container_usage
3929
4087
  - profiled_fargate_usage
3930
4088
  - profiled_host_usage
4089
+ - rum_browser_mobile_sessions_usage
4090
+ - rum_replay_sessions_usage
3931
4091
  - sds_scanned_bytes_usage
3932
4092
  - serverless_apps_usage
4093
+ - siem_ingested_bytes_usage
3933
4094
  - snmp_usage
3934
4095
  - universal_service_monitoring_usage
3935
4096
  - vuln_management_hosts_usage
@@ -3942,11 +4103,15 @@ components:
3942
4103
  - APPSEC_FARGATE_USAGE
3943
4104
  - APPSEC_USAGE
3944
4105
  - BROWSER_USAGE
4106
+ - CI_PIPELINE_INDEXED_SPANS_USAGE
4107
+ - CI_TEST_INDEXED_SPANS_USAGE
3945
4108
  - CI_VISIBILITY_ITR_USAGE
4109
+ - CLOUD_SIEM_USAGE
3946
4110
  - CONTAINER_EXCL_AGENT_USAGE
3947
4111
  - CONTAINER_USAGE
3948
4112
  - CSPM_CONTAINERS_USAGE
3949
4113
  - CSPM_HOSTS_USAGE
4114
+ - CUSTOM_EVENT_USAGE
3950
4115
  - CUSTOM_INGESTED_TIMESERIES_USAGE
3951
4116
  - CUSTOM_TIMESERIES_USAGE
3952
4117
  - CWS_CONTAINERS_USAGE
@@ -3960,8 +4125,22 @@ components:
3960
4125
  - ESTIMATED_RUM_SESSIONS_USAGE
3961
4126
  - FARGATE_USAGE
3962
4127
  - FUNCTIONS_USAGE
4128
+ - INDEXED_SPANS_USAGE
3963
4129
  - INFRA_HOST_USAGE
4130
+ - INGESTED_LOGS_BYTES_USAGE
4131
+ - INGESTED_SPANS_BYTES_USAGE
3964
4132
  - INVOCATIONS_USAGE
4133
+ - LAMBDA_TRACED_INVOCATIONS_USAGE
4134
+ - LOGS_INDEXED_15DAY_USAGE
4135
+ - LOGS_INDEXED_180DAY_USAGE
4136
+ - LOGS_INDEXED_30DAY_USAGE
4137
+ - LOGS_INDEXED_360DAY_USAGE
4138
+ - LOGS_INDEXED_3DAY_USAGE
4139
+ - LOGS_INDEXED_45DAY_USAGE
4140
+ - LOGS_INDEXED_60DAY_USAGE
4141
+ - LOGS_INDEXED_7DAY_USAGE
4142
+ - LOGS_INDEXED_90DAY_USAGE
4143
+ - LOGS_INDEXED_CUSTOM_RETENTION_USAGE
3965
4144
  - MOBILE_APP_TESTING_USAGE
3966
4145
  - NDM_NETFLOW_USAGE
3967
4146
  - NPM_HOST_USAGE
@@ -3969,8 +4148,11 @@ components:
3969
4148
  - PROFILED_CONTAINER_USAGE
3970
4149
  - PROFILED_FARGATE_USAGE
3971
4150
  - PROFILED_HOST_USAGE
4151
+ - RUM_BROWSER_MOBILE_SESSIONS_USAGE
4152
+ - RUM_REPLAY_SESSIONS_USAGE
3972
4153
  - SDS_SCANNED_BYTES_USAGE
3973
4154
  - SERVERLESS_APPS_USAGE
4155
+ - SIEM_INGESTED_BYTES_USAGE
3974
4156
  - SNMP_USAGE
3975
4157
  - UNIVERSAL_SERVICE_MONITORING_USAGE
3976
4158
  - VULN_MANAGEMENT_HOSTS_USAGE
@@ -6769,9 +6951,8 @@ components:
6769
6951
  type: string
6770
6952
  type: array
6771
6953
  notify_no_data:
6772
- default: false
6773
6954
  description: A Boolean indicating whether this monitor notifies when data
6774
- stops reporting.
6955
+ stops reporting. Defaults to `false`.
6775
6956
  type: boolean
6776
6957
  on_missing_data:
6777
6958
  $ref: '#/components/schemas/OnMissingDataOption'
@@ -7505,6 +7686,8 @@ components:
7505
7686
  - browser_percentage
7506
7687
  - ci_visibility_itr_usage
7507
7688
  - ci_visibility_itr_percentage
7689
+ - cloud_siem_usage
7690
+ - cloud_siem_percentage
7508
7691
  - container_excl_agent_usage
7509
7692
  - container_excl_agent_percentage
7510
7693
  - container_usage
@@ -7541,6 +7724,8 @@ components:
7541
7724
  - infra_host_percentage
7542
7725
  - invocations_usage
7543
7726
  - invocations_percentage
7727
+ - lambda_traced_invocations_usage
7728
+ - lambda_traced_invocations_percentage
7544
7729
  - mobile_app_testing_percentage
7545
7730
  - mobile_app_testing_usage
7546
7731
  - ndm_netflow_usage
@@ -7567,6 +7752,44 @@ components:
7567
7752
  - vuln_management_hosts_percentage
7568
7753
  - sds_scanned_bytes_usage
7569
7754
  - sds_scanned_bytes_percentage
7755
+ - ci_test_indexed_spans_usage
7756
+ - ci_test_indexed_spans_percentage
7757
+ - ingested_logs_bytes_usage
7758
+ - ingested_logs_bytes_percentage
7759
+ - ci_pipeline_indexed_spans_usage
7760
+ - ci_pipeline_indexed_spans_percentage
7761
+ - indexed_spans_usage
7762
+ - indexed_spans_percentage
7763
+ - custom_event_usage
7764
+ - custom_event_percentage
7765
+ - logs_indexed_custom_retention_usage
7766
+ - logs_indexed_custom_retention_percentage
7767
+ - logs_indexed_360day_usage
7768
+ - logs_indexed_360day_percentage
7769
+ - logs_indexed_180day_usage
7770
+ - logs_indexed_180day_percentage
7771
+ - logs_indexed_90day_usage
7772
+ - logs_indexed_90day_percentage
7773
+ - logs_indexed_60day_usage
7774
+ - logs_indexed_60day_percentage
7775
+ - logs_indexed_45day_usage
7776
+ - logs_indexed_45day_percentage
7777
+ - logs_indexed_30day_usage
7778
+ - logs_indexed_30day_percentage
7779
+ - logs_indexed_15day_usage
7780
+ - logs_indexed_15day_percentage
7781
+ - logs_indexed_7day_usage
7782
+ - logs_indexed_7day_percentage
7783
+ - logs_indexed_3day_usage
7784
+ - logs_indexed_3day_percentage
7785
+ - rum_replay_sessions_usage
7786
+ - rum_replay_sessions_percentage
7787
+ - rum_browser_mobile_sessions_usage
7788
+ - rum_browser_mobile_sessions_percentage
7789
+ - ingested_spans_bytes_usage
7790
+ - ingested_spans_bytes_percentage
7791
+ - siem_ingested_bytes_usage
7792
+ - siem_ingested_bytes_percentage
7570
7793
  - '*'
7571
7794
  type: string
7572
7795
  x-enum-varnames:
@@ -7586,6 +7809,8 @@ components:
7586
7809
  - BROWSER_PERCENTAGE
7587
7810
  - CI_VISIBILITY_ITR_USAGE
7588
7811
  - CI_VISIBILITY_ITR_PERCENTAGE
7812
+ - CLOUD_SIEM_USAGE
7813
+ - CLOUD_SIEM_PERCENTAGE
7589
7814
  - CONTAINER_EXCL_AGENT_USAGE
7590
7815
  - CONTAINER_EXCL_AGENT_PERCENTAGE
7591
7816
  - CONTAINER_USAGE
@@ -7622,6 +7847,8 @@ components:
7622
7847
  - INFRA_HOST_PERCENTAGE
7623
7848
  - INVOCATIONS_USAGE
7624
7849
  - INVOCATIONS_PERCENTAGE
7850
+ - LAMBDA_TRACED_INVOCATIONS_USAGE
7851
+ - LAMBDA_TRACED_INVOCATIONS_PERCENTAGE
7625
7852
  - MOBILE_APP_TESTING_USAGE
7626
7853
  - MOBILE_APP_TESTING_PERCENTAGE
7627
7854
  - NDM_NETFLOW_USAGE
@@ -7648,6 +7875,44 @@ components:
7648
7875
  - VULN_MANAGEMENT_HOSTS_PERCENTAGE
7649
7876
  - SDS_SCANNED_BYTES_USAGE
7650
7877
  - SDS_SCANNED_BYTES_PERCENTAGE
7878
+ - CI_TEST_INDEXED_SPANS_USAGE
7879
+ - CI_TEST_INDEXED_SPANS_PERCENTAGE
7880
+ - INGESTED_LOGS_BYTES_USAGE
7881
+ - INGESTED_LOGS_BYTES_PERCENTAGE
7882
+ - CI_PIPELINE_INDEXED_SPANS_USAGE
7883
+ - CI_PIPELINE_INDEXED_SPANS_PERCENTAGE
7884
+ - INDEXED_SPANS_USAGE
7885
+ - INDEXED_SPANS_PERCENTAGE
7886
+ - CUSTOM_EVENT_USAGE
7887
+ - CUSTOM_EVENT_PERCENTAGE
7888
+ - LOGS_INDEXED_CUSTOM_RETENTION_USAGE
7889
+ - LOGS_INDEXED_CUSTOM_RETENTION_PERCENTAGE
7890
+ - LOGS_INDEXED_360DAY_USAGE
7891
+ - LOGS_INDEXED_360DAY_PERCENTAGE
7892
+ - LOGS_INDEXED_180DAY_USAGE
7893
+ - LOGS_INDEXED_180DAY_PERCENTAGE
7894
+ - LOGS_INDEXED_90DAY_USAGE
7895
+ - LOGS_INDEXED_90DAY_PERCENTAGE
7896
+ - LOGS_INDEXED_60DAY_USAGE
7897
+ - LOGS_INDEXED_60DAY_PERCENTAGE
7898
+ - LOGS_INDEXED_45DAY_USAGE
7899
+ - LOGS_INDEXED_45DAY_PERCENTAGE
7900
+ - LOGS_INDEXED_30DAY_USAGE
7901
+ - LOGS_INDEXED_30DAY_PERCENTAGE
7902
+ - LOGS_INDEXED_15DAY_USAGE
7903
+ - LOGS_INDEXED_15DAY_PERCENTAGE
7904
+ - LOGS_INDEXED_7DAY_USAGE
7905
+ - LOGS_INDEXED_7DAY_PERCENTAGE
7906
+ - LOGS_INDEXED_3DAY_USAGE
7907
+ - LOGS_INDEXED_3DAY_PERCENTAGE
7908
+ - RUM_REPLAY_SESSIONS_USAGE
7909
+ - RUM_REPLAY_SESSIONS_PERCENTAGE
7910
+ - RUM_BROWSER_MOBILE_SESSIONS_USAGE
7911
+ - RUM_BROWSER_MOBILE_SESSIONS_PERCENTAGE
7912
+ - INGESTED_SPANS_BYTES_USAGE
7913
+ - INGESTED_SPANS_BYTES_PERCENTAGE
7914
+ - SIEM_INGESTED_BYTES_USAGE
7915
+ - SIEM_INGESTED_BYTES_PERCENTAGE
7651
7916
  - ALL
7652
7917
  MonthlyUsageAttributionValues:
7653
7918
  description: Fields in Usage Summary by tag(s).
@@ -7712,6 +7977,22 @@ components:
7712
7977
  description: The synthetic browser test usage by tag(s).
7713
7978
  format: double
7714
7979
  type: number
7980
+ ci_pipeline_indexed_spans_percentage:
7981
+ description: The percentage of CI Pipeline Indexed Spans usage by tag(s).
7982
+ format: double
7983
+ type: number
7984
+ ci_pipeline_indexed_spans_usage:
7985
+ description: The total CI Pipeline Indexed Spans usage by tag(s).
7986
+ format: double
7987
+ type: number
7988
+ ci_test_indexed_spans_percentage:
7989
+ description: The percentage of CI Test Indexed Spans usage by tag(s).
7990
+ format: double
7991
+ type: number
7992
+ ci_test_indexed_spans_usage:
7993
+ description: The total CI Test Indexed Spans usage by tag(s).
7994
+ format: double
7995
+ type: number
7715
7996
  ci_visibility_itr_percentage:
7716
7997
  description: The percentage of Git committers for Intelligent Test Runner
7717
7998
  usage by tag(s).
@@ -7721,6 +8002,16 @@ components:
7721
8002
  description: The Git committers for Intelligent Test Runner usage by tag(s).
7722
8003
  format: double
7723
8004
  type: number
8005
+ cloud_siem_percentage:
8006
+ description: The percentage of Cloud Security Information and Event Management
8007
+ usage by tag(s).
8008
+ format: double
8009
+ type: number
8010
+ cloud_siem_usage:
8011
+ description: The Cloud Security Information and Event Management usage by
8012
+ tag(s).
8013
+ format: double
8014
+ type: number
7724
8015
  container_excl_agent_percentage:
7725
8016
  description: The percentage of container usage without the Datadog Agent
7726
8017
  by tag(s).
@@ -7756,6 +8047,14 @@ components:
7756
8047
  description: The Cloud Security Management Pro host usage by tag(s).
7757
8048
  format: double
7758
8049
  type: number
8050
+ custom_event_percentage:
8051
+ description: The percentage of Custom Events usage by tag(s).
8052
+ format: double
8053
+ type: number
8054
+ custom_event_usage:
8055
+ description: The total Custom Events usage by tag(s).
8056
+ format: double
8057
+ type: number
7759
8058
  custom_ingested_timeseries_percentage:
7760
8059
  description: The percentage of ingested custom metrics usage by tag(s).
7761
8060
  format: double
@@ -7861,6 +8160,14 @@ components:
7861
8160
  description: The Lambda function usage by tag(s).
7862
8161
  format: double
7863
8162
  type: number
8163
+ indexed_spans_percentage:
8164
+ description: The percentage of APM Indexed Spans usage by tag(s).
8165
+ format: double
8166
+ type: number
8167
+ indexed_spans_usage:
8168
+ description: The total APM Indexed Spans usage by tag(s).
8169
+ format: double
8170
+ type: number
7864
8171
  infra_host_percentage:
7865
8172
  description: The percentage of infrastructure host usage by tag(s).
7866
8173
  format: double
@@ -7869,6 +8176,22 @@ components:
7869
8176
  description: The infrastructure host usage by tag(s).
7870
8177
  format: double
7871
8178
  type: number
8179
+ ingested_logs_bytes_percentage:
8180
+ description: The percentage of Ingested Logs usage by tag(s).
8181
+ format: double
8182
+ type: number
8183
+ ingested_logs_bytes_usage:
8184
+ description: The total Ingested Logs usage by tag(s).
8185
+ format: double
8186
+ type: number
8187
+ ingested_spans_bytes_percentage:
8188
+ description: The percentage of APM Ingested Spans usage by tag(s).
8189
+ format: double
8190
+ type: number
8191
+ ingested_spans_bytes_usage:
8192
+ description: The total APM Ingested Spans usage by tag(s).
8193
+ format: double
8194
+ type: number
7872
8195
  invocations_percentage:
7873
8196
  description: The percentage of Lambda invocation usage by tag(s).
7874
8197
  format: double
@@ -7877,6 +8200,102 @@ components:
7877
8200
  description: The Lambda invocation usage by tag(s).
7878
8201
  format: double
7879
8202
  type: number
8203
+ lambda_traced_invocations_percentage:
8204
+ description: The percentage of Serverless APM usage by tag(s).
8205
+ format: double
8206
+ type: number
8207
+ lambda_traced_invocations_usage:
8208
+ description: The Serverless APM usage by tag(s).
8209
+ format: double
8210
+ type: number
8211
+ logs_indexed_15day_percentage:
8212
+ description: The percentage of Indexed Logs (15-day Retention) usage by
8213
+ tag(s).
8214
+ format: double
8215
+ type: number
8216
+ logs_indexed_15day_usage:
8217
+ description: The total Indexed Logs (15-day Retention) usage by tag(s).
8218
+ format: double
8219
+ type: number
8220
+ logs_indexed_180day_percentage:
8221
+ description: The percentage of Indexed Logs (180-day Retention) usage by
8222
+ tag(s).
8223
+ format: double
8224
+ type: number
8225
+ logs_indexed_180day_usage:
8226
+ description: The total Indexed Logs (180-day Retention) usage by tag(s).
8227
+ format: double
8228
+ type: number
8229
+ logs_indexed_30day_percentage:
8230
+ description: The percentage of Indexed Logs (30-day Retention) usage by
8231
+ tag(s).
8232
+ format: double
8233
+ type: number
8234
+ logs_indexed_30day_usage:
8235
+ description: The total Indexed Logs (30-day Retention) usage by tag(s).
8236
+ format: double
8237
+ type: number
8238
+ logs_indexed_360day_percentage:
8239
+ description: The percentage of Indexed Logs (360-day Retention) usage by
8240
+ tag(s).
8241
+ format: double
8242
+ type: number
8243
+ logs_indexed_360day_usage:
8244
+ description: The total Indexed Logs (360-day Retention) usage by tag(s).
8245
+ format: double
8246
+ type: number
8247
+ logs_indexed_3day_percentage:
8248
+ description: The percentage of Indexed Logs (3-day Retention) usage by tag(s).
8249
+ format: double
8250
+ type: number
8251
+ logs_indexed_3day_usage:
8252
+ description: The total Indexed Logs (3-day Retention) usage by tag(s).
8253
+ format: double
8254
+ type: number
8255
+ logs_indexed_45day_percentage:
8256
+ description: The percentage of Indexed Logs (45-day Retention) usage by
8257
+ tag(s).
8258
+ format: double
8259
+ type: number
8260
+ logs_indexed_45day_usage:
8261
+ description: The total Indexed Logs (45-day Retention) usage by tag(s).
8262
+ format: double
8263
+ type: number
8264
+ logs_indexed_60day_percentage:
8265
+ description: The percentage of Indexed Logs (60-day Retention) usage by
8266
+ tag(s).
8267
+ format: double
8268
+ type: number
8269
+ logs_indexed_60day_usage:
8270
+ description: The total Indexed Logs (60-day Retention) usage by tag(s).
8271
+ format: double
8272
+ type: number
8273
+ logs_indexed_7day_percentage:
8274
+ description: The percentage of Indexed Logs (7-day Retention) usage by tag(s).
8275
+ format: double
8276
+ type: number
8277
+ logs_indexed_7day_usage:
8278
+ description: The total Indexed Logs (7-day Retention) usage by tag(s).
8279
+ format: double
8280
+ type: number
8281
+ logs_indexed_90day_percentage:
8282
+ description: The percentage of Indexed Logs (90-day Retention) usage by
8283
+ tag(s).
8284
+ format: double
8285
+ type: number
8286
+ logs_indexed_90day_usage:
8287
+ description: The total Indexed Logs (90-day Retention) usage by tag(s).
8288
+ format: double
8289
+ type: number
8290
+ logs_indexed_custom_retention_percentage:
8291
+ description: The percentage of Indexed Logs (Custom Retention) usage by
8292
+ tag(s).
8293
+ format: double
8294
+ type: number
8295
+ logs_indexed_custom_retention_usage:
8296
+ description: The total Indexed Logs (Custom Retention) usage by tag(s).
8297
+ format: double
8298
+ type: number
7880
8299
  mobile_app_testing_percentage:
7881
8300
  description: The percentage of Synthetic mobile application test usage by
7882
8301
  tag(s).
@@ -7935,6 +8354,22 @@ components:
7935
8354
  description: The profiled hosts usage by tag(s).
7936
8355
  format: double
7937
8356
  type: number
8357
+ rum_browser_mobile_sessions_percentage:
8358
+ description: The percentage of RUM Browser and Mobile usage by tag(s).
8359
+ format: double
8360
+ type: number
8361
+ rum_browser_mobile_sessions_usage:
8362
+ description: The total RUM Browser and Mobile usage by tag(s).
8363
+ format: double
8364
+ type: number
8365
+ rum_replay_sessions_percentage:
8366
+ description: The percentage of RUM Replay Sessions usage by tag(s).
8367
+ format: double
8368
+ type: number
8369
+ rum_replay_sessions_usage:
8370
+ description: The total RUM Replay Sessions usage by tag(s).
8371
+ format: double
8372
+ type: number
7938
8373
  sds_scanned_bytes_percentage:
7939
8374
  description: The percentage of Sensitive Data Scanner usage by tag(s).
7940
8375
  format: double
@@ -7951,6 +8386,14 @@ components:
7951
8386
  description: The total Serverless Apps usage by tag(s).
7952
8387
  format: double
7953
8388
  type: number
8389
+ siem_ingested_bytes_percentage:
8390
+ description: The percentage of SIEM usage by tag(s).
8391
+ format: double
8392
+ type: number
8393
+ siem_ingested_bytes_usage:
8394
+ description: The total SIEM usage by tag(s).
8395
+ format: double
8396
+ type: number
7954
8397
  snmp_percentage:
7955
8398
  description: The percentage of network device usage by tag(s).
7956
8399
  format: double
@@ -15654,6 +16097,8 @@ components:
15654
16097
  items:
15655
16098
  $ref: '#/components/schemas/ToplistWidgetRequest'
15656
16099
  type: array
16100
+ style:
16101
+ $ref: '#/components/schemas/ToplistWidgetStyle'
15657
16102
  time:
15658
16103
  $ref: '#/components/schemas/WidgetTime'
15659
16104
  title:
@@ -15679,6 +16124,40 @@ components:
15679
16124
  type: string
15680
16125
  x-enum-varnames:
15681
16126
  - TOPLIST
16127
+ ToplistWidgetDisplay:
16128
+ description: Top list widget display options.
16129
+ oneOf:
16130
+ - $ref: '#/components/schemas/ToplistWidgetStacked'
16131
+ - $ref: '#/components/schemas/ToplistWidgetFlat'
16132
+ ToplistWidgetFlat:
16133
+ description: Top list widget flat display.
16134
+ properties:
16135
+ type:
16136
+ $ref: '#/components/schemas/ToplistWidgetFlatType'
16137
+ required:
16138
+ - type
16139
+ type: object
16140
+ ToplistWidgetFlatType:
16141
+ default: flat
16142
+ description: Top list widget flat display type.
16143
+ enum:
16144
+ - flat
16145
+ example: flat
16146
+ type: string
16147
+ x-enum-varnames:
16148
+ - FLAT
16149
+ ToplistWidgetLegend:
16150
+ description: Top list widget stacked legend behavior.
16151
+ enum:
16152
+ - automatic
16153
+ - inline
16154
+ - none
16155
+ example: automatic
16156
+ type: string
16157
+ x-enum-varnames:
16158
+ - AUTOMATIC
16159
+ - INLINE
16160
+ - NONE
15682
16161
  ToplistWidgetRequest:
15683
16162
  description: Updated top list widget.
15684
16163
  properties:
@@ -15728,6 +16207,43 @@ components:
15728
16207
  style:
15729
16208
  $ref: '#/components/schemas/WidgetRequestStyle'
15730
16209
  type: object
16210
+ ToplistWidgetScaling:
16211
+ description: Top list widget scaling definition.
16212
+ enum:
16213
+ - absolute
16214
+ - relative
16215
+ type: string
16216
+ x-enum-varnames:
16217
+ - ABSOLUTE
16218
+ - RELATIVE
16219
+ ToplistWidgetStacked:
16220
+ description: Top list widget stacked display options.
16221
+ properties:
16222
+ legend:
16223
+ $ref: '#/components/schemas/ToplistWidgetLegend'
16224
+ type:
16225
+ $ref: '#/components/schemas/ToplistWidgetStackedType'
16226
+ required:
16227
+ - type
16228
+ - legend
16229
+ type: object
16230
+ ToplistWidgetStackedType:
16231
+ default: stacked
16232
+ description: Top list widget stacked display type.
16233
+ enum:
16234
+ - stacked
16235
+ example: stacked
16236
+ type: string
16237
+ x-enum-varnames:
16238
+ - STACKED
16239
+ ToplistWidgetStyle:
16240
+ description: Style customization for a top list widget.
16241
+ properties:
16242
+ display:
16243
+ $ref: '#/components/schemas/ToplistWidgetDisplay'
16244
+ scaling:
16245
+ $ref: '#/components/schemas/ToplistWidgetScaling'
16246
+ type: object
15731
16247
  TopologyMapWidgetDefinition:
15732
16248
  description: This widget displays a topology of nodes and edges for different
15733
16249
  data sources. It replaces the service map widget.
@@ -18022,6 +18538,11 @@ components:
18022
18538
  for the given date and given organization.
18023
18539
  format: int64
18024
18540
  type: integer
18541
+ cloud_siem_events_sum:
18542
+ description: Shows the sum of all Cloud Security Information and Event Management
18543
+ events over all hours in the current date for the given org.
18544
+ format: int64
18545
+ type: integer
18025
18546
  container_avg:
18026
18547
  description: Shows the average of all distinct containers over all hours
18027
18548
  in the current date for all organizations.
@@ -18543,6 +19064,11 @@ components:
18543
19064
  for the given date and given org.
18544
19065
  format: int64
18545
19066
  type: integer
19067
+ cloud_siem_events_sum:
19068
+ description: Shows the sum of all Cloud Security Information and Event Management
19069
+ events over all hours in the current date for the given org.
19070
+ format: int64
19071
+ type: integer
18546
19072
  container_avg:
18547
19073
  description: Shows the average of all distinct containers over all hours
18548
19074
  in the current date for the given org.
@@ -19071,6 +19597,11 @@ components:
19071
19597
  all cloud providers.
19072
19598
  format: int64
19073
19599
  type: integer
19600
+ cloud_siem_events_agg_sum:
19601
+ description: Shows the sum of all Cloud Security Information and Event Management
19602
+ events over all hours in the current months for all organizations.
19603
+ format: int64
19604
+ type: integer
19074
19605
  container_avg_sum:
19075
19606
  description: Shows the average of all distinct containers over all hours
19076
19607
  in the current months for all organizations.
@@ -23348,6 +23879,111 @@ paths:
23348
23879
  summary: List namespace rules
23349
23880
  tags:
23350
23881
  - AWS Integration
23882
+ /api/v1/integration/aws/event_bridge:
23883
+ delete:
23884
+ description: Delete an Amazon EventBridge source.
23885
+ operationId: DeleteAWSEventBridgeSource
23886
+ requestBody:
23887
+ content:
23888
+ application/json:
23889
+ schema:
23890
+ $ref: '#/components/schemas/AWSEventBridgeDeleteRequest'
23891
+ description: Delete the Amazon EventBridge source with the given name, region,
23892
+ and associated AWS account.
23893
+ required: true
23894
+ responses:
23895
+ '200':
23896
+ content:
23897
+ application/json:
23898
+ schema:
23899
+ $ref: '#/components/schemas/AWSEventBridgeDeleteResponse'
23900
+ description: OK
23901
+ '400':
23902
+ content:
23903
+ application/json:
23904
+ schema:
23905
+ $ref: '#/components/schemas/APIErrorResponse'
23906
+ description: Bad Request
23907
+ '403':
23908
+ content:
23909
+ application/json:
23910
+ schema:
23911
+ $ref: '#/components/schemas/APIErrorResponse'
23912
+ description: Authentication Error
23913
+ '429':
23914
+ $ref: '#/components/responses/TooManyRequestsResponse'
23915
+ summary: Delete an Amazon EventBridge source
23916
+ tags:
23917
+ - AWS Integration
23918
+ x-codegen-request-body-name: body
23919
+ get:
23920
+ description: Get all Amazon EventBridge sources.
23921
+ operationId: ListAWSEventBridgeSources
23922
+ parameters: []
23923
+ responses:
23924
+ '200':
23925
+ content:
23926
+ application/json:
23927
+ schema:
23928
+ $ref: '#/components/schemas/AWSEventBridgeListResponse'
23929
+ description: OK
23930
+ '400':
23931
+ content:
23932
+ application/json:
23933
+ schema:
23934
+ $ref: '#/components/schemas/APIErrorResponse'
23935
+ description: Bad Request
23936
+ '403':
23937
+ content:
23938
+ application/json:
23939
+ schema:
23940
+ $ref: '#/components/schemas/APIErrorResponse'
23941
+ description: Authentication Error
23942
+ '429':
23943
+ $ref: '#/components/responses/TooManyRequestsResponse'
23944
+ security:
23945
+ - apiKeyAuth: []
23946
+ appKeyAuth: []
23947
+ - AuthZ: []
23948
+ summary: Get all Amazon EventBridge sources
23949
+ tags:
23950
+ - AWS Integration
23951
+ post:
23952
+ description: Create an Amazon EventBridge source.
23953
+ operationId: CreateAWSEventBridgeSource
23954
+ requestBody:
23955
+ content:
23956
+ application/json:
23957
+ schema:
23958
+ $ref: '#/components/schemas/AWSEventBridgeCreateRequest'
23959
+ description: Create an Amazon EventBridge source for an AWS account with a
23960
+ given name and region.
23961
+ required: true
23962
+ responses:
23963
+ '200':
23964
+ content:
23965
+ application/json:
23966
+ schema:
23967
+ $ref: '#/components/schemas/AWSEventBridgeCreateResponse'
23968
+ description: OK
23969
+ '400':
23970
+ content:
23971
+ application/json:
23972
+ schema:
23973
+ $ref: '#/components/schemas/APIErrorResponse'
23974
+ description: Bad Request
23975
+ '403':
23976
+ content:
23977
+ application/json:
23978
+ schema:
23979
+ $ref: '#/components/schemas/APIErrorResponse'
23980
+ description: Authentication Error
23981
+ '429':
23982
+ $ref: '#/components/responses/TooManyRequestsResponse'
23983
+ summary: Create an Amazon EventBridge source
23984
+ tags:
23985
+ - AWS Integration
23986
+ x-codegen-request-body-name: body
23351
23987
  /api/v1/integration/aws/filtering:
23352
23988
  delete:
23353
23989
  description: Delete a tag filtering entry.
@@ -25626,9 +26262,13 @@ paths:
25626
26262
  - database-monitoring: `database-monitoring alert`
25627
26263
 
25628
26264
 
25629
- **Note**: Synthetic monitors are created through the Synthetics API. See the
25630
- [Synthetics API] (https://docs.datadoghq.com/api/latest/synthetics/) documentation
25631
- for more information.
26265
+ **Notes**:
26266
+
26267
+ - Synthetic monitors are created through the Synthetics API. See the [Synthetics
26268
+ API] (https://docs.datadoghq.com/api/latest/synthetics/) documentation for
26269
+ more information.
26270
+
26271
+ - Log monitors require an unscoped App Key.
25632
26272
 
25633
26273
 
25634
26274
  #### Query Types
@@ -26213,7 +26853,10 @@ paths:
26213
26853
  - Monitors
26214
26854
  /api/v1/monitor/validate:
26215
26855
  post:
26216
- description: Validate the monitor provided in the request.
26856
+ description: 'Validate the monitor provided in the request.
26857
+
26858
+
26859
+ **Note**: Log monitors require an unscoped App Key.'
26217
26860
  operationId: ValidateMonitor
26218
26861
  requestBody:
26219
26862
  content: