datadog_api_client 1.9.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (440) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +1486 -273
  4. data/.generator/schemas/v2/openapi.yaml +2348 -146
  5. data/.generator/src/generator/cli.py +57 -40
  6. data/.generator/src/generator/formatter.py +20 -1
  7. data/.generator/src/generator/openapi.py +15 -9
  8. data/.generator/src/generator/templates/api.j2 +14 -13
  9. data/.generator/src/generator/templates/api_client.j2 +64 -15
  10. data/.generator/src/generator/templates/configuration.j2 +12 -8
  11. data/.generator/src/generator/templates/example.j2 +1 -1
  12. data/.generator/src/generator/templates/inflector.j2 +28 -0
  13. data/.generator/src/generator/templates/model_base.j2 +2 -2
  14. data/.generator/src/generator/templates/model_generic.j2 +42 -3
  15. data/.generator/src/generator/templates/model_oneof.j2 +1 -1
  16. data/.generator/src/generator/templates/package.j2 +7 -12
  17. data/.github/workflows/approved_status.yml +0 -2
  18. data/.github/workflows/codeql-analysis.yml +49 -0
  19. data/.github/workflows/docs.yml +1 -1
  20. data/.github/workflows/prepare_release.yml +16 -4
  21. data/.github/workflows/publish.yml +1 -1
  22. data/.github/workflows/release.yml +1 -1
  23. data/.github/workflows/test.yml +4 -6
  24. data/.github/workflows/test_integration.yml +1 -8
  25. data/.pre-commit-config.yaml +3 -12
  26. data/CHANGELOG.md +91 -0
  27. data/Gemfile +1 -0
  28. data/Makefile +2 -3
  29. data/README.md +16 -0
  30. data/check-examples.sh +0 -2
  31. data/datadog_api_client.gemspec +2 -0
  32. data/examples/v1/aws-integration/UpdateAWSAccount.rb +8 -4
  33. data/examples/v1/dashboards/CreateDashboard_1442588603.rb +61 -0
  34. data/examples/v1/dashboards/CreateDashboard_252716965.rb +52 -0
  35. data/examples/v1/dashboards/CreateDashboard_3882428227.rb +60 -0
  36. data/examples/v1/downtimes/CreateDowntime_1393233946.rb +3 -0
  37. data/examples/v1/downtimes/CreateDowntime_2908359488.rb +4 -0
  38. data/examples/v1/downtimes/CreateDowntime_3059354445.rb +4 -0
  39. data/examples/v1/downtimes/UpdateDowntime.rb +1 -0
  40. data/examples/v1/events/ListEvents.rb +1 -1
  41. data/examples/v1/metrics/SubmitDistributionPoints.rb +22 -0
  42. data/examples/v1/metrics/SubmitDistributionPoints_3109558960.rb +25 -0
  43. data/examples/v1/monitors/CreateMonitor_1969035628.rb +52 -0
  44. data/examples/v1/monitors/CreateMonitor_2520912138.rb +22 -0
  45. data/examples/v1/organizations/DowngradeOrg.rb +5 -0
  46. data/examples/v1/organizations/UpdateOrg.rb +1 -0
  47. data/examples/v1/security-monitoring/AddSecurityMonitoringSignalToIncident.rb +9 -0
  48. data/examples/v1/security-monitoring/EditSecurityMonitoringSignalAssignee.rb +9 -0
  49. data/examples/v1/security-monitoring/EditSecurityMonitoringSignalState.rb +10 -0
  50. data/examples/v1/service-level-objective-corrections/CreateSLOCorrection.rb +0 -3
  51. data/examples/v1/service-level-objective-corrections/CreateSLOCorrection_1326388368.rb +0 -3
  52. data/examples/v1/service-level-objective-corrections/DeleteSLOCorrection.rb +0 -3
  53. data/examples/v1/service-level-objective-corrections/GetSLOCorrection.rb +0 -3
  54. data/examples/v1/service-level-objective-corrections/ListSLOCorrection.rb +0 -3
  55. data/examples/v1/service-level-objective-corrections/UpdateSLOCorrection.rb +0 -3
  56. data/examples/v1/service-level-objectives/GetSLOCorrections.rb +0 -3
  57. data/examples/v1/service-level-objectives/GetSLOHistory.rb +1 -1
  58. data/examples/v1/service-level-objectives/SearchSLO.rb +16 -0
  59. data/examples/v1/snapshots/GetGraphSnapshot.rb +2 -0
  60. data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +8 -0
  61. data/examples/v1/synthetics/CreateSyntheticsAPITest_1402674167.rb +44 -0
  62. data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +67 -0
  63. data/examples/v1/synthetics/GetAPITestLatestResults.rb +1 -1
  64. data/examples/v1/synthetics/GetAPITestResult.rb +1 -1
  65. data/examples/v1/synthetics/GetBrowserTestLatestResults.rb +1 -1
  66. data/examples/v1/synthetics/GetBrowserTestResult.rb +1 -1
  67. data/examples/v1/synthetics/UpdateBrowserTest.rb +8 -0
  68. data/examples/v1/usage-metering/GetDailyCustomReports.rb +1 -1
  69. data/examples/v1/usage-metering/GetHourlyUsageAttribution.rb +1 -4
  70. data/examples/v1/usage-metering/GetMonthlyCustomReports.rb +1 -1
  71. data/examples/v1/usage-metering/GetMonthlyUsageAttribution.rb +1 -4
  72. data/examples/v1/usage-metering/{GetMonthlyUsageAttribution_3738504447.rb → GetMonthlyUsageAttribution_3849653599.rb} +1 -1
  73. data/examples/v1/usage-metering/GetSpecifiedDailyCustomReports.rb +1 -1
  74. data/examples/v1/usage-metering/GetSpecifiedMonthlyCustomReports.rb +1 -1
  75. data/examples/v1/usage-metering/GetUsageAttribution.rb +2 -2
  76. data/examples/v1/usage-metering/GetUsageCIApp.rb +2 -5
  77. data/examples/v1/usage-metering/GetUsageCIApp_1064440884.rb +8 -0
  78. data/examples/v1/usage-metering/GetUsageCWS.rb +2 -5
  79. data/examples/v1/usage-metering/GetUsageCWS_736958514.rb +8 -0
  80. data/examples/v1/usage-metering/GetUsageDBM.rb +2 -5
  81. data/examples/v1/usage-metering/GetUsageDBM_3446806203.rb +8 -0
  82. data/examples/v1/usage-metering/GetUsageLambda.rb +2 -5
  83. data/examples/v1/usage-metering/GetUsageLambda_3132428705.rb +8 -0
  84. data/examples/v1/usage-metering/GetUsageLogs.rb +2 -5
  85. data/examples/v1/usage-metering/GetUsageLogsByIndex.rb +2 -5
  86. data/examples/v1/usage-metering/GetUsageLogsByIndex_1025184776.rb +8 -0
  87. data/examples/v1/usage-metering/GetUsageLogs_2562396405.rb +8 -0
  88. data/examples/v1/usage-metering/GetUsageNetworkFlows.rb +2 -5
  89. data/examples/v1/usage-metering/GetUsageNetworkFlows_1239422069.rb +8 -0
  90. data/examples/v1/usage-metering/GetUsageNetworkHosts.rb +2 -5
  91. data/examples/v1/usage-metering/GetUsageNetworkHosts_1249907835.rb +8 -0
  92. data/examples/v1/usage-metering/GetUsageOnlineArchive.rb +2 -5
  93. data/examples/v1/usage-metering/GetUsageOnlineArchive_1501172903.rb +8 -0
  94. data/examples/v1/usage-metering/GetUsageRumSessions.rb +2 -5
  95. data/examples/v1/usage-metering/GetUsageRumSessions_3271366243.rb +9 -0
  96. data/examples/v1/usage-metering/GetUsageRumSessions_714937291.rb +8 -0
  97. data/examples/v1/usage-metering/GetUsageRumUnits.rb +2 -5
  98. data/examples/v1/usage-metering/GetUsageRumUnits_3959755399.rb +8 -0
  99. data/examples/v1/usage-metering/GetUsageSDS.rb +2 -5
  100. data/examples/v1/usage-metering/GetUsageSDS_271128478.rb +8 -0
  101. data/examples/v1/usage-metering/GetUsageSynthetics.rb +1 -1
  102. data/examples/v1/usage-metering/GetUsageSyntheticsAPI.rb +2 -5
  103. data/examples/v1/usage-metering/GetUsageSyntheticsAPI_4048033529.rb +8 -0
  104. data/examples/v1/usage-metering/GetUsageSyntheticsBrowser.rb +2 -5
  105. data/examples/v1/usage-metering/GetUsageSyntheticsBrowser_1704663299.rb +8 -0
  106. data/examples/v2/events/ListEvents.rb +8 -0
  107. data/examples/v2/events/ListEvents_2663715109.rb +14 -0
  108. data/examples/v2/events/SearchEvents.rb +23 -0
  109. data/examples/v2/incident-services/CreateIncidentService.rb +1 -1
  110. data/examples/v2/incident-services/DeleteIncidentService.rb +1 -1
  111. data/examples/v2/incident-services/GetIncidentService.rb +1 -1
  112. data/examples/v2/incident-services/ListIncidentServices.rb +1 -1
  113. data/examples/v2/incident-services/UpdateIncidentService.rb +1 -1
  114. data/examples/v2/incident-teams/CreateIncidentTeam.rb +1 -1
  115. data/examples/v2/incident-teams/DeleteIncidentTeam.rb +1 -1
  116. data/examples/v2/incident-teams/GetIncidentTeam.rb +1 -1
  117. data/examples/v2/incident-teams/ListIncidentTeams.rb +1 -1
  118. data/examples/v2/incident-teams/UpdateIncidentTeam.rb +1 -1
  119. data/examples/v2/incidents/CreateIncident.rb +1 -1
  120. data/examples/v2/incidents/DeleteIncident.rb +1 -1
  121. data/examples/v2/incidents/GetIncident.rb +1 -1
  122. data/examples/v2/incidents/ListIncidents.rb +1 -1
  123. data/examples/v2/incidents/UpdateIncident.rb +1 -1
  124. data/examples/v2/incidents/UpdateIncident_1009194038.rb +1 -1
  125. data/examples/v2/incidents/UpdateIncident_3369341440.rb +1 -1
  126. data/examples/v2/logs/SubmitLog.rb +1 -0
  127. data/examples/v2/logs-archives/CreateLogsArchive.rb +1 -0
  128. data/examples/v2/logs-archives/UpdateLogsArchive.rb +1 -0
  129. data/examples/v2/metrics/CreateTagConfiguration.rb +0 -3
  130. data/examples/v2/metrics/DeleteTagConfiguration.rb +0 -3
  131. data/examples/v2/metrics/EstimateMetricsOutputSeries.rb +9 -0
  132. data/examples/v2/metrics/ListTagConfigurationByName.rb +0 -3
  133. data/examples/v2/metrics/ListTagConfigurations.rb +0 -3
  134. data/examples/v2/metrics/ListTagConfigurations_103226315.rb +0 -3
  135. data/examples/v2/metrics/ListTagConfigurations_1799362914.rb +0 -3
  136. data/examples/v2/metrics/SubmitMetrics.rb +26 -0
  137. data/examples/v2/metrics/UpdateTagConfiguration.rb +0 -3
  138. data/examples/v2/opsgenie-integration/CreateOpsgenieService.rb +16 -0
  139. data/examples/v2/opsgenie-integration/DeleteOpsgenieService.rb +8 -0
  140. data/examples/v2/opsgenie-integration/GetOpsgenieService.rb +8 -0
  141. data/examples/v2/opsgenie-integration/ListOpsgenieServices.rb +5 -0
  142. data/examples/v2/opsgenie-integration/UpdateOpsgenieService.rb +21 -0
  143. data/examples/v2/security-monitoring/EditSecurityMonitoringSignalAssignee.rb +15 -0
  144. data/examples/v2/security-monitoring/EditSecurityMonitoringSignalIncidents.rb +15 -0
  145. data/examples/v2/security-monitoring/EditSecurityMonitoringSignalState.rb +14 -0
  146. data/examples/v2/security-monitoring/ListSecurityMonitoringSignals.rb +0 -3
  147. data/examples/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +0 -3
  148. data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +5 -0
  149. data/examples/v2/usage-metering/GetCostByOrg.rb +5 -0
  150. data/examples/v2/usage-metering/GetEstimatedCostByOrg.rb +8 -0
  151. data/examples/v2/usage-metering/GetEstimatedCostByOrg_2734954020.rb +11 -0
  152. data/examples/v2/usage-metering/GetEstimatedCostByOrg_3186693804.rb +11 -0
  153. data/examples/v2/usage-metering/GetUsageApplicationSecurityMonitoring.rb +5 -0
  154. data/examples/v2/usage-metering/GetUsageApplicationSecurityMonitoring_3959166796.rb +8 -0
  155. data/examples/v2/usage-metering/GetUsageLambdaTracedInvocations.rb +5 -0
  156. data/examples/v2/usage-metering/GetUsageLambdaTracedInvocations_1436752065.rb +8 -0
  157. data/examples/v2/usage-metering/GetUsageObservabilityPipelines.rb +2 -5
  158. data/examples/v2/usage-metering/GetUsageObservabilityPipelines_970725512.rb +8 -0
  159. data/lib/datadog_api_client/{v2/api_client.rb → api_client.rb} +64 -15
  160. data/lib/datadog_api_client/api_key_configuration.rb +1 -18
  161. data/lib/datadog_api_client/{v1/configuration.rb → configuration.rb} +133 -35
  162. data/lib/datadog_api_client/inflector.rb +1293 -0
  163. data/lib/datadog_api_client/models.rb +66 -0
  164. data/lib/datadog_api_client/v1/api/authentication_api.rb +3 -11
  165. data/lib/datadog_api_client/v1/api/aws_integration_api.rb +19 -91
  166. data/lib/datadog_api_client/v1/api/aws_logs_integration_api.rb +15 -71
  167. data/lib/datadog_api_client/v1/api/azure_integration_api.rb +11 -51
  168. data/lib/datadog_api_client/v1/api/dashboard_lists_api.rb +11 -51
  169. data/lib/datadog_api_client/v1/api/dashboards_api.rb +15 -71
  170. data/lib/datadog_api_client/v1/api/downtimes_api.rb +15 -71
  171. data/lib/datadog_api_client/v1/api/events_api.rb +9 -33
  172. data/lib/datadog_api_client/v1/api/gcp_integration_api.rb +9 -41
  173. data/lib/datadog_api_client/v1/api/hosts_api.rb +9 -41
  174. data/lib/datadog_api_client/v1/api/ip_ranges_api.rb +3 -11
  175. data/lib/datadog_api_client/v1/api/key_management_api.rb +21 -101
  176. data/lib/datadog_api_client/v1/api/logs_api.rb +5 -21
  177. data/lib/datadog_api_client/v1/api/logs_indexes_api.rb +13 -61
  178. data/lib/datadog_api_client/v1/api/logs_pipelines_api.rb +15 -71
  179. data/lib/datadog_api_client/v1/api/metrics_api.rb +87 -62
  180. data/lib/datadog_api_client/v1/api/monitors_api.rb +90 -157
  181. data/lib/datadog_api_client/v1/api/notebooks_api.rb +11 -51
  182. data/lib/datadog_api_client/v1/api/organizations_api.rb +77 -52
  183. data/lib/datadog_api_client/v1/api/pager_duty_integration_api.rb +9 -41
  184. data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +242 -0
  185. data/lib/datadog_api_client/v1/api/service_checks_api.rb +3 -11
  186. data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +12 -52
  187. data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +100 -94
  188. data/lib/datadog_api_client/v1/api/slack_integration_api.rb +11 -51
  189. data/lib/datadog_api_client/v1/api/snapshots_api.rb +7 -11
  190. data/lib/datadog_api_client/v1/api/synthetics_api.rb +55 -271
  191. data/lib/datadog_api_client/v1/api/tags_api.rb +11 -51
  192. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +184 -427
  193. data/lib/datadog_api_client/v1/api/users_api.rb +11 -51
  194. data/lib/datadog_api_client/v1/api/webhooks_integration_api.rb +17 -81
  195. data/lib/datadog_api_client/v1/model_base.rb +2 -2
  196. data/lib/datadog_api_client/v1/models/add_signal_to_incident_request.rb +142 -0
  197. data/lib/datadog_api_client/v1/models/distribution_point_item.rb +63 -0
  198. data/lib/datadog_api_client/v1/models/distribution_points_content_encoding.rb +26 -0
  199. data/lib/datadog_api_client/v1/models/distribution_points_payload.rb +124 -0
  200. data/lib/datadog_api_client/v1/models/distribution_points_series.rb +179 -0
  201. data/lib/datadog_api_client/v1/models/distribution_points_type.rb +26 -0
  202. data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_query.rb +64 -0
  203. data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_type.rb +26 -0
  204. data/lib/datadog_api_client/v1/models/distribution_widget_request.rb +21 -1
  205. data/lib/datadog_api_client/v1/models/downtime.rb +11 -1
  206. data/lib/datadog_api_client/v1/models/downtime_child.rb +11 -1
  207. data/lib/datadog_api_client/v1/models/event.rb +1 -1
  208. data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stat_name.rb +1 -0
  209. data/lib/datadog_api_client/v1/models/formula_and_function_query_definition.rb +1 -1
  210. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_body.rb +5 -1
  211. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +9 -0
  212. data/lib/datadog_api_client/v1/models/http_log_item.rb +29 -4
  213. data/lib/datadog_api_client/v1/models/ip_prefixes_synthetics_private_locations.rb +125 -0
  214. data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -1
  215. data/lib/datadog_api_client/v1/models/logs_category_processor.rb +1 -1
  216. data/lib/datadog_api_client/v1/models/logs_list_request.rb +1 -1
  217. data/lib/datadog_api_client/v1/models/logs_processor.rb +1 -1
  218. data/lib/datadog_api_client/v1/models/logs_sort.rb +1 -1
  219. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_events_data_source.rb +1 -0
  220. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_query_definition.rb +1 -1
  221. data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts.rb +2 -2
  222. data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_tag_item.rb → monitor_search_count_item.rb} +3 -3
  223. data/lib/datadog_api_client/v1/models/monitor_search_response_counts.rb +4 -4
  224. data/lib/datadog_api_client/v1/models/monitor_type.rb +1 -0
  225. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_body.rb +6 -2
  226. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_response.rb +1 -1
  227. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +18 -0
  228. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +61 -1
  229. data/lib/datadog_api_client/v1/models/notebook_cell_create_request.rb +146 -0
  230. data/lib/datadog_api_client/v1/models/notebook_cell_create_request_attributes.rb +68 -0
  231. data/lib/datadog_api_client/v1/models/notebook_cell_response_attributes.rb +1 -1
  232. data/lib/datadog_api_client/v1/models/notebook_cell_time.rb +1 -1
  233. data/lib/datadog_api_client/v1/models/notebook_cell_update_request_attributes.rb +1 -1
  234. data/lib/datadog_api_client/v1/models/notebook_global_time.rb +1 -1
  235. data/lib/datadog_api_client/v1/models/notebook_update_cell.rb +1 -1
  236. data/lib/datadog_api_client/v1/models/org_downgraded_response.rb +111 -0
  237. data/lib/datadog_api_client/v1/models/organization.rb +14 -4
  238. data/lib/datadog_api_client/v1/models/search_slo_response.rb +131 -0
  239. data/lib/datadog_api_client/v1/models/{monitor_group_search_response_counts_status_item.rb → search_slo_response_data.rb} +19 -19
  240. data/lib/datadog_api_client/v1/models/{monitor_group_search_response_counts_type_item.rb → search_slo_response_data_attributes.rb} +21 -19
  241. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets.rb +197 -0
  242. data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_type_item.rb → search_slo_response_data_attributes_facets_object_int.rb} +7 -7
  243. data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_muted_item.rb → search_slo_response_data_attributes_facets_object_string.rb} +7 -7
  244. data/lib/datadog_api_client/v1/models/search_slo_response_links.rb +151 -0
  245. data/lib/datadog_api_client/v1/models/search_slo_response_meta.rb +111 -0
  246. data/lib/datadog_api_client/v1/models/search_slo_response_meta_page.rb +181 -0
  247. data/lib/datadog_api_client/v1/models/series.rb +2 -2
  248. data/lib/datadog_api_client/v1/models/service_level_objective.rb +3 -3
  249. data/lib/datadog_api_client/v1/models/service_level_objective_query.rb +1 -1
  250. data/lib/datadog_api_client/v1/models/service_level_objective_request.rb +3 -3
  251. data/lib/datadog_api_client/v1/models/signal_archive_reason.rb +29 -0
  252. data/lib/datadog_api_client/v1/models/signal_assignee_update_request.rb +132 -0
  253. data/lib/datadog_api_client/v1/models/signal_state_update_request.rb +152 -0
  254. data/lib/datadog_api_client/v1/models/signal_triage_state.rb +28 -0
  255. data/lib/datadog_api_client/v1/models/slo_correction_create_request_attributes.rb +1 -1
  256. data/lib/datadog_api_client/v1/models/slo_correction_response_attributes.rb +4 -4
  257. data/lib/datadog_api_client/v1/models/slo_correction_update_request_attributes.rb +1 -1
  258. data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +1 -1
  259. data/lib/datadog_api_client/v1/models/slo_response_data.rb +1 -1
  260. data/lib/datadog_api_client/v1/models/successful_signal_update_response.rb +111 -0
  261. data/lib/datadog_api_client/v1/models/sunburst_widget_legend.rb +1 -1
  262. data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +12 -1
  263. data/lib/datadog_api_client/v1/models/synthetics_assertion.rb +1 -1
  264. data/lib/datadog_api_client/v1/models/synthetics_assertion_type.rb +2 -0
  265. data/lib/datadog_api_client/v1/models/synthetics_basic_auth.rb +1 -1
  266. data/lib/datadog_api_client/v1/models/synthetics_browser_test.rb +11 -0
  267. data/lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb +152 -0
  268. data/lib/datadog_api_client/v1/models/synthetics_core_web_vitals.rb +2 -2
  269. data/lib/datadog_api_client/v1/models/synthetics_test_ci_options.rb +111 -0
  270. data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +1 -1
  271. data/lib/datadog_api_client/v1/models/synthetics_test_details_sub_type.rb +2 -1
  272. data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +31 -1
  273. data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +21 -1
  274. data/lib/datadog_api_client/v1/models/tree_map_color_by.rb +1 -1
  275. data/lib/datadog_api_client/v1/models/tree_map_group_by.rb +1 -1
  276. data/lib/datadog_api_client/v1/models/tree_map_size_by.rb +1 -1
  277. data/lib/datadog_api_client/v1/models/tree_map_widget_definition.rb +28 -6
  278. data/lib/datadog_api_client/v1/models/usage_attribution_body.rb +6 -2
  279. data/lib/datadog_api_client/v1/models/usage_attribution_response.rb +1 -1
  280. data/lib/datadog_api_client/v1/models/usage_attribution_sort.rb +6 -0
  281. data/lib/datadog_api_client/v1/models/usage_attribution_supported_metrics.rb +6 -0
  282. data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +61 -1
  283. data/lib/datadog_api_client/v1/models/usage_billable_summary_keys.rb +474 -4
  284. data/lib/datadog_api_client/v1/models/usage_rum_sessions_hour.rb +18 -4
  285. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +11 -1
  286. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +11 -1
  287. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +11 -1
  288. data/lib/datadog_api_client/v1/models/widget_definition.rb +1 -1
  289. data/lib/datadog_api_client/v2/api/audit_api.rb +11 -25
  290. data/lib/datadog_api_client/v2/api/authn_mappings_api.rb +11 -53
  291. data/lib/datadog_api_client/v2/api/cloud_workload_security_api.rb +14 -62
  292. data/lib/datadog_api_client/v2/api/dashboard_lists_api.rb +9 -41
  293. data/lib/datadog_api_client/v2/api/events_api.rb +228 -0
  294. data/lib/datadog_api_client/v2/api/incident_services_api.rb +36 -46
  295. data/lib/datadog_api_client/v2/api/incident_teams_api.rb +36 -46
  296. data/lib/datadog_api_client/v2/api/incidents_api.rb +39 -48
  297. data/lib/datadog_api_client/v2/api/key_management_api.rb +29 -141
  298. data/lib/datadog_api_client/v2/api/logs_api.rb +15 -45
  299. data/lib/datadog_api_client/v2/api/logs_archives_api.rb +21 -101
  300. data/lib/datadog_api_client/v2/api/logs_metrics_api.rb +11 -51
  301. data/lib/datadog_api_client/v2/api/metrics_api.rb +179 -94
  302. data/lib/datadog_api_client/v2/api/opsgenie_integration_api.rb +355 -0
  303. data/lib/datadog_api_client/v2/api/organizations_api.rb +3 -11
  304. data/lib/datadog_api_client/v2/api/processes_api.rb +6 -13
  305. data/lib/datadog_api_client/v2/api/roles_api.rb +27 -131
  306. data/lib/datadog_api_client/v2/api/rum_api.rb +13 -35
  307. data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +247 -125
  308. data/lib/datadog_api_client/v2/api/service_accounts_api.rb +11 -51
  309. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +382 -14
  310. data/lib/datadog_api_client/v2/api/users_api.rb +21 -101
  311. data/lib/datadog_api_client/v2/model_base.rb +2 -2
  312. data/lib/datadog_api_client/v2/models/api_key_response_included_item.rb +1 -1
  313. data/lib/datadog_api_client/v2/models/application_key_response_included_item.rb +1 -1
  314. data/lib/datadog_api_client/v2/models/authn_mapping.rb +1 -13
  315. data/lib/datadog_api_client/v2/models/authn_mapping_attributes.rb +1 -12
  316. data/lib/datadog_api_client/v2/models/authn_mapping_included.rb +1 -1
  317. data/lib/datadog_api_client/v2/models/authn_mapping_response.rb +16 -4
  318. data/lib/datadog_api_client/v2/models/authn_mappings_response.rb +13 -1
  319. data/lib/datadog_api_client/v2/models/chargeback_breakdown.rb +131 -0
  320. data/lib/datadog_api_client/v2/models/cost_by_org.rb +133 -0
  321. data/lib/datadog_api_client/v2/models/cost_by_org_attributes.rb +153 -0
  322. data/lib/datadog_api_client/v2/models/cost_by_org_response.rb +113 -0
  323. data/lib/datadog_api_client/v2/models/cost_by_org_type.rb +26 -0
  324. data/lib/datadog_api_client/v2/models/event.rb +141 -0
  325. data/lib/datadog_api_client/v2/models/event_attributes.rb +305 -0
  326. data/lib/datadog_api_client/v2/models/event_priority.rb +27 -0
  327. data/lib/datadog_api_client/v2/models/event_response.rb +133 -0
  328. data/lib/datadog_api_client/v2/models/event_response_attributes.rb +133 -0
  329. data/lib/datadog_api_client/v2/models/event_status_type.rb +35 -0
  330. data/lib/datadog_api_client/v2/models/event_type.rb +26 -0
  331. data/lib/datadog_api_client/v2/models/events_list_request.rb +142 -0
  332. data/lib/datadog_api_client/v2/models/events_list_response.rb +133 -0
  333. data/lib/datadog_api_client/v2/models/events_list_response_links.rb +112 -0
  334. data/lib/datadog_api_client/v2/models/events_query_filter.rb +137 -0
  335. data/lib/datadog_api_client/v2/models/events_query_options.rb +124 -0
  336. data/lib/datadog_api_client/v2/models/events_request_page.rb +134 -0
  337. data/lib/datadog_api_client/v2/models/events_response_metadata.rb +144 -0
  338. data/lib/datadog_api_client/v2/models/events_response_metadata_page.rb +112 -0
  339. data/lib/datadog_api_client/v2/models/events_sort.rb +27 -0
  340. data/lib/datadog_api_client/v2/models/events_warning.rb +131 -0
  341. data/lib/datadog_api_client/v2/models/hourly_usage.rb +133 -0
  342. data/lib/datadog_api_client/v2/models/hourly_usage_attributes.rb +163 -0
  343. data/lib/datadog_api_client/v2/models/hourly_usage_measurement.rb +122 -0
  344. data/lib/datadog_api_client/v2/models/hourly_usage_metadata.rb +111 -0
  345. data/lib/datadog_api_client/v2/models/hourly_usage_pagination.rb +112 -0
  346. data/lib/datadog_api_client/v2/models/hourly_usage_response.rb +123 -0
  347. data/lib/datadog_api_client/v2/models/hourly_usage_type.rb +2 -0
  348. data/lib/datadog_api_client/v2/models/http_log_item.rb +40 -4
  349. data/lib/datadog_api_client/v2/models/incident_field_attributes.rb +1 -1
  350. data/lib/datadog_api_client/v2/models/incident_response_included_item.rb +1 -1
  351. data/lib/datadog_api_client/v2/models/incident_service_included_items.rb +1 -1
  352. data/lib/datadog_api_client/v2/models/incident_team_included_items.rb +1 -1
  353. data/lib/datadog_api_client/v2/models/incident_timeline_cell_create_attributes.rb +1 -1
  354. data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +113 -0
  355. data/lib/datadog_api_client/v2/models/logs_aggregate_bucket_value.rb +1 -1
  356. data/lib/datadog_api_client/v2/models/logs_archive_attributes.rb +12 -1
  357. data/lib/datadog_api_client/v2/models/logs_archive_create_request_attributes.rb +12 -1
  358. data/lib/datadog_api_client/v2/models/logs_archive_create_request_destination.rb +1 -1
  359. data/lib/datadog_api_client/v2/models/logs_archive_destination.rb +1 -1
  360. data/lib/datadog_api_client/v2/models/logs_group_by_missing.rb +1 -1
  361. data/lib/datadog_api_client/v2/models/logs_group_by_total.rb +1 -1
  362. data/lib/datadog_api_client/v2/models/metric_content_encoding.rb +26 -0
  363. data/lib/datadog_api_client/v2/models/metric_estimate.rb +133 -0
  364. data/lib/datadog_api_client/v2/models/metric_estimate_attributes.rb +133 -0
  365. data/lib/datadog_api_client/v2/models/metric_estimate_resource_type.rb +26 -0
  366. data/lib/datadog_api_client/v2/models/metric_estimate_response.rb +111 -0
  367. data/lib/datadog_api_client/v2/models/metric_estimate_type.rb +28 -0
  368. data/lib/datadog_api_client/v2/models/metric_intake_type.rb +29 -0
  369. data/lib/datadog_api_client/v2/models/metric_metadata.rb +111 -0
  370. data/lib/datadog_api_client/v2/models/metric_origin.rb +170 -0
  371. data/lib/datadog_api_client/v2/models/metric_payload.rb +124 -0
  372. data/lib/datadog_api_client/v2/models/metric_point.rb +122 -0
  373. data/lib/datadog_api_client/{v1/models/monitor_search_response_counts_status_item.rb → v2/models/metric_resource.rb} +21 -21
  374. data/lib/datadog_api_client/v2/models/metric_series.rb +220 -0
  375. data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +0 -2
  376. data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +0 -2
  377. data/lib/datadog_api_client/v2/models/metric_volumes.rb +1 -1
  378. data/lib/datadog_api_client/v2/models/metrics_and_metric_tag_configurations.rb +1 -1
  379. data/lib/datadog_api_client/v2/models/monitor_type.rb +215 -0
  380. data/lib/datadog_api_client/v2/models/opsgenie_service_create_attributes.rb +174 -0
  381. data/lib/datadog_api_client/v2/models/opsgenie_service_create_data.rb +145 -0
  382. data/lib/datadog_api_client/v2/models/opsgenie_service_create_request.rb +122 -0
  383. data/lib/datadog_api_client/v2/models/opsgenie_service_region_type.rb +28 -0
  384. data/lib/datadog_api_client/v2/models/opsgenie_service_response.rb +122 -0
  385. data/lib/datadog_api_client/v2/models/opsgenie_service_response_attributes.rb +132 -0
  386. data/lib/datadog_api_client/v2/models/opsgenie_service_response_data.rb +166 -0
  387. data/lib/datadog_api_client/v2/models/opsgenie_service_type.rb +26 -0
  388. data/lib/datadog_api_client/v2/models/opsgenie_service_update_attributes.rb +142 -0
  389. data/lib/datadog_api_client/v2/models/opsgenie_service_update_data.rb +166 -0
  390. data/lib/datadog_api_client/v2/models/opsgenie_service_update_request.rb +122 -0
  391. data/lib/datadog_api_client/v2/models/opsgenie_services_response.rb +124 -0
  392. data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute_data.rb +1 -5
  393. data/lib/datadog_api_client/v2/models/rum_aggregate_bucket_value.rb +1 -1
  394. data/lib/datadog_api_client/v2/models/rum_group_by_missing.rb +1 -1
  395. data/lib/datadog_api_client/v2/models/rum_group_by_total.rb +1 -1
  396. data/lib/datadog_api_client/v2/models/saml_assertion_attribute.rb +1 -5
  397. data/lib/datadog_api_client/v2/models/security_monitoring_rule_detection_method.rb +1 -0
  398. data/lib/datadog_api_client/v2/models/security_monitoring_rule_hardcoded_evaluator_type.rb +26 -0
  399. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +30 -4
  400. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_method.rb +27 -0
  401. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_threshold.rb +27 -0
  402. data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +23 -1
  403. data/lib/datadog_api_client/v2/models/security_monitoring_rule_query.rb +13 -1
  404. data/lib/datadog_api_client/v2/models/security_monitoring_rule_query_create.rb +13 -1
  405. data/lib/datadog_api_client/v2/models/security_monitoring_signal_archive_reason.rb +29 -0
  406. data/lib/datadog_api_client/v2/models/security_monitoring_signal_assignee_update_attributes.rb +132 -0
  407. data/lib/datadog_api_client/v2/models/security_monitoring_signal_assignee_update_data.rb +122 -0
  408. data/lib/datadog_api_client/v2/models/security_monitoring_signal_assignee_update_request.rb +122 -0
  409. data/lib/datadog_api_client/v2/models/security_monitoring_signal_incidents_update_attributes.rb +134 -0
  410. data/lib/datadog_api_client/v2/models/security_monitoring_signal_incidents_update_data.rb +122 -0
  411. data/lib/datadog_api_client/v2/models/security_monitoring_signal_incidents_update_request.rb +122 -0
  412. data/lib/datadog_api_client/v2/models/security_monitoring_signal_state.rb +28 -0
  413. data/lib/datadog_api_client/v2/models/security_monitoring_signal_state_update_attributes.rb +152 -0
  414. data/lib/datadog_api_client/v2/models/security_monitoring_signal_state_update_data.rb +122 -0
  415. data/lib/datadog_api_client/v2/models/security_monitoring_signal_state_update_request.rb +122 -0
  416. data/lib/datadog_api_client/v2/models/security_monitoring_signal_triage_attributes.rb +248 -0
  417. data/lib/datadog_api_client/v2/models/security_monitoring_signal_triage_update_data.rb +111 -0
  418. data/lib/datadog_api_client/v2/models/security_monitoring_signal_triage_update_response.rb +122 -0
  419. data/lib/datadog_api_client/v2/models/security_monitoring_triage_user.rb +152 -0
  420. data/lib/datadog_api_client/v2/models/usage_application_security_monitoring_response.rb +113 -0
  421. data/lib/datadog_api_client/v2/models/usage_lambda_traced_invocations_response.rb +113 -0
  422. data/lib/datadog_api_client/v2/models/user_response_included_item.rb +1 -1
  423. data/lib/datadog_api_client/v2.rb +77 -0
  424. data/lib/datadog_api_client/version.rb +1 -1
  425. data/lib/datadog_api_client.rb +11 -5
  426. data/spec/{v1/api_client_spec.rb → api_client_spec.rb} +32 -32
  427. data/spec/{v1/configuration_spec.rb → configuration_spec.rb} +3 -3
  428. data/spec/spec_helper.rb +1 -3
  429. metadata +191 -28
  430. data/.dockerignore +0 -1
  431. data/.generator/src/generator/templates/api_error.j2 +0 -49
  432. data/extract-code-blocks.awk +0 -81
  433. data/extract-code-blocks.sh +0 -3
  434. data/lib/datadog_api_client/v1/api_client.rb +0 -456
  435. data/lib/datadog_api_client/v1/api_error.rb +0 -60
  436. data/lib/datadog_api_client/v1.rb +0 -789
  437. data/lib/datadog_api_client/v2/api_error.rb +0 -60
  438. data/lib/datadog_api_client/v2/configuration.rb +0 -427
  439. data/spec/v2/api_client_spec.rb +0 -210
  440. data/spec/v2/configuration_spec.rb +0 -45
@@ -4,6 +4,13 @@ components:
4
4
  headers: {}
5
5
  links: {}
6
6
  parameters:
7
+ SignalID:
8
+ description: The ID of the signal.
9
+ in: path
10
+ name: signal_id
11
+ required: true
12
+ schema:
13
+ type: string
7
14
  SlackAccountNamePathParameter:
8
15
  description: Your Slack account name.
9
16
  in: path
@@ -360,6 +367,23 @@ components:
360
367
  - ADMIN
361
368
  - READ_ONLY
362
369
  - ERROR
370
+ AddSignalToIncidentRequest:
371
+ description: Attributes describing which incident to add the signal to.
372
+ properties:
373
+ add_to_signal_timeline:
374
+ description: Whether to post the signal on the incident timeline.
375
+ type: boolean
376
+ incident_id:
377
+ description: Public ID attribute of the incident to which the signal will
378
+ be added.
379
+ example: 2066
380
+ format: int64
381
+ type: integer
382
+ version:
383
+ $ref: '#/components/schemas/Version'
384
+ required:
385
+ - incident_id
386
+ type: object
363
387
  AgentCheck:
364
388
  description: Array of strings.
365
389
  example:
@@ -1275,6 +1299,96 @@ components:
1275
1299
  type: integer
1276
1300
  readOnly: true
1277
1301
  type: object
1302
+ DistributionPoint:
1303
+ description: Array of distribution points.
1304
+ example:
1305
+ - 1575317847.0
1306
+ - - 0.5
1307
+ - 1.0
1308
+ items:
1309
+ description: List of distribution point.
1310
+ oneOf:
1311
+ - $ref: '#/components/schemas/DistributionPointTimestamp'
1312
+ - $ref: '#/components/schemas/DistributionPointData'
1313
+ maxItems: 2
1314
+ minItems: 2
1315
+ type: array
1316
+ DistributionPointData:
1317
+ description: Distribution point data.
1318
+ items:
1319
+ description: List of distribution point data.
1320
+ format: double
1321
+ type: number
1322
+ type: array
1323
+ DistributionPointTimestamp:
1324
+ description: Distribution point timestamp. It should be in seconds and current.
1325
+ format: double
1326
+ type: number
1327
+ DistributionPointsContentEncoding:
1328
+ description: HTTP header used to compress the media-type.
1329
+ enum:
1330
+ - deflate
1331
+ type: string
1332
+ x-enum-varnames:
1333
+ - DEFLATE
1334
+ DistributionPointsPayload:
1335
+ description: The distribution points payload.
1336
+ properties:
1337
+ series:
1338
+ description: A list of distribution points series to submit to Datadog.
1339
+ example:
1340
+ - metric: system.load.1
1341
+ points:
1342
+ - - 1475317847.0
1343
+ - - 1.0
1344
+ - 2.0
1345
+ items:
1346
+ $ref: '#/components/schemas/DistributionPointsSeries'
1347
+ type: array
1348
+ required:
1349
+ - series
1350
+ type: object
1351
+ DistributionPointsSeries:
1352
+ description: A distribution points metric to submit to Datadog.
1353
+ properties:
1354
+ host:
1355
+ description: The name of the host that produced the distribution point metric.
1356
+ example: test.example.com
1357
+ type: string
1358
+ metric:
1359
+ description: The name of the distribution points metric.
1360
+ example: system.load.1
1361
+ type: string
1362
+ points:
1363
+ description: Points relating to the distribution point metric. All points
1364
+ must be tuples with timestamp and a list of values (cannot be a string).
1365
+ Timestamps should be in POSIX time in seconds.
1366
+ items:
1367
+ $ref: '#/components/schemas/DistributionPoint'
1368
+ type: array
1369
+ tags:
1370
+ description: A list of tags associated with the distribution point metric.
1371
+ example:
1372
+ - environment:test
1373
+ items:
1374
+ description: Individual tags.
1375
+ type: string
1376
+ type: array
1377
+ type:
1378
+ $ref: '#/components/schemas/DistributionPointsType'
1379
+ required:
1380
+ - metric
1381
+ - points
1382
+ type: object
1383
+ DistributionPointsType:
1384
+ default: distribution
1385
+ description: The type of the distribution point.
1386
+ enum:
1387
+ - distribution
1388
+ example: distribution
1389
+ type: string
1390
+ x-enum-varnames:
1391
+ - DISTRIBUTION
1278
1392
  DistributionWidgetDefinition:
1279
1393
  description: "The Distribution visualization is another way of showing metrics\naggregated
1280
1394
  across one or several tags, such as hosts.\nUnlike the heat map, a distribution
@@ -1335,6 +1449,25 @@ components:
1335
1449
  type: string
1336
1450
  x-enum-varnames:
1337
1451
  - DISTRIBUTION
1452
+ DistributionWidgetHistogramRequestQuery:
1453
+ description: Query definition for Distribution Widget Histogram Request
1454
+ example:
1455
+ data_source: metrics
1456
+ name: query1
1457
+ query: histogram:trace.Load{*}
1458
+ oneOf:
1459
+ - $ref: '#/components/schemas/FormulaAndFunctionMetricQueryDefinition'
1460
+ - $ref: '#/components/schemas/FormulaAndFunctionEventQueryDefinition'
1461
+ - $ref: '#/components/schemas/FormulaAndFunctionApmResourceStatsQueryDefinition'
1462
+ type: object
1463
+ DistributionWidgetHistogramRequestType:
1464
+ description: Request type for the histogram request.
1465
+ enum:
1466
+ - histogram
1467
+ example: histogram
1468
+ type: string
1469
+ x-enum-varnames:
1470
+ - HISTOGRAM
1338
1471
  DistributionWidgetRequest:
1339
1472
  description: Updated distribution widget.
1340
1473
  properties:
@@ -1355,6 +1488,10 @@ components:
1355
1488
  q:
1356
1489
  description: Widget query.
1357
1490
  type: string
1491
+ query:
1492
+ $ref: '#/components/schemas/DistributionWidgetHistogramRequestQuery'
1493
+ request_type:
1494
+ $ref: '#/components/schemas/DistributionWidgetHistogramRequestType'
1358
1495
  rum_query:
1359
1496
  $ref: '#/components/schemas/LogQueryDefinition'
1360
1497
  security_query:
@@ -1499,6 +1636,11 @@ components:
1499
1636
  description: A monitor tag.
1500
1637
  type: string
1501
1638
  type: array
1639
+ mute_first_recovery_notification:
1640
+ description: If the first recovery notification during a downtime should
1641
+ be muted.
1642
+ example: false
1643
+ type: boolean
1502
1644
  parent_id:
1503
1645
  description: ID of the parent Downtime.
1504
1646
  example: 123
@@ -1628,6 +1770,11 @@ components:
1628
1770
  description: A monitor tag.
1629
1771
  type: string
1630
1772
  type: array
1773
+ mute_first_recovery_notification:
1774
+ description: If the first recovery notification during a downtime should
1775
+ be muted.
1776
+ example: false
1777
+ type: boolean
1631
1778
  parent_id:
1632
1779
  description: ID of the parent Downtime.
1633
1780
  example: 123
@@ -1783,7 +1930,7 @@ components:
1783
1930
  description: 'The type of event being posted. Option examples include nagios,
1784
1931
  hudson, jenkins, my_apps, chef, puppet, git, bitbucket, etc.
1785
1932
 
1786
- A complete list of source attribute values [available here](https://docs.datadoghq.com/integrations/faq/list-of-api-source-attribute-value).'
1933
+ The list of standard source attribute values [available here](https://docs.datadoghq.com/integrations/faq/list-of-api-source-attribute-value).'
1787
1934
  type: string
1788
1935
  tags:
1789
1936
  description: A list of tags to apply to the event.
@@ -2125,6 +2272,7 @@ components:
2125
2272
  - error_rate
2126
2273
  - hits
2127
2274
  - latency_avg
2275
+ - latency_distribution
2128
2276
  - latency_max
2129
2277
  - latency_p50
2130
2278
  - latency_p75
@@ -2138,6 +2286,7 @@ components:
2138
2286
  - ERROR_RATE
2139
2287
  - HITS
2140
2288
  - LATENCY_AVG
2289
+ - LATENCY_DISTRIBUTION
2141
2290
  - LATENCY_MAX
2142
2291
  - LATENCY_P50
2143
2292
  - LATENCY_P75
@@ -2887,6 +3036,9 @@ components:
2887
3036
  - message
2888
3037
  type: object
2889
3038
  HTTPLogItem:
3039
+ additionalProperties:
3040
+ description: Additional log attributes.
3041
+ type: string
2890
3042
  description: Logs that are sent over HTTP.
2891
3043
  properties:
2892
3044
  ddsource:
@@ -3474,10 +3626,19 @@ components:
3474
3626
  enum:
3475
3627
  - api_usage
3476
3628
  - apm_host_usage
3629
+ - appsec_usage
3477
3630
  - browser_usage
3478
3631
  - container_usage
3632
+ - cspm_containers_usage
3633
+ - cspm_hosts_usage
3479
3634
  - custom_timeseries_usage
3635
+ - cws_containers_usage
3636
+ - cws_hosts_usage
3637
+ - dbm_hosts_usage
3638
+ - dbm_queries_usage
3480
3639
  - estimated_indexed_logs_usage
3640
+ - estimated_indexed_spans_usage
3641
+ - estimated_ingested_spans_usage
3481
3642
  - fargate_usage
3482
3643
  - functions_usage
3483
3644
  - indexed_logs_usage
@@ -3491,10 +3652,19 @@ components:
3491
3652
  x-enum-varnames:
3492
3653
  - API_USAGE
3493
3654
  - APM_HOST_USAGE
3655
+ - APPSEC_USAGE
3494
3656
  - BROWSER_USAGE
3495
3657
  - CONTAINER_USAGE
3658
+ - CSPM_CONTAINERS_USAGE
3659
+ - CSPM_HOSTS_USAGE
3496
3660
  - CUSTOM_TIMESERIES_USAGE
3661
+ - CWS_CONTAINERS_USAGE
3662
+ - CWS_HOSTS_USAGE
3663
+ - DBM_HOSTS_USAGE
3664
+ - DBM_QUERIES_USAGE
3497
3665
  - ESTIMATED_INDEXED_LOGS_USAGE
3666
+ - ESTIMATED_INDEXED_SPANS_USAGE
3667
+ - ESTIMATED_INGESTED_SPANS_USAGE
3498
3668
  - FARGATE_USAGE
3499
3669
  - FUNCTIONS_USAGE
3500
3670
  - INDEXED_LOGS_USAGE
@@ -3641,6 +3811,23 @@ components:
3641
3811
  description: List of IPv6 prefixes by location.
3642
3812
  type: object
3643
3813
  type: object
3814
+ IPPrefixesSyntheticsPrivateLocations:
3815
+ description: Available prefix information for the Synthetics Private Locations
3816
+ endpoints.
3817
+ properties:
3818
+ prefixes_ipv4:
3819
+ description: List of IPv4 prefixes.
3820
+ items:
3821
+ description: IPv4 prefix
3822
+ type: string
3823
+ type: array
3824
+ prefixes_ipv6:
3825
+ description: List of IPv6 prefixes.
3826
+ items:
3827
+ description: IPv6 prefix
3828
+ type: string
3829
+ type: array
3830
+ type: object
3644
3831
  IPPrefixesWebhooks:
3645
3832
  description: Available prefix information for the Webhook endpoints.
3646
3833
  properties:
@@ -3676,6 +3863,8 @@ components:
3676
3863
  $ref: '#/components/schemas/IPPrefixesProcess'
3677
3864
  synthetics:
3678
3865
  $ref: '#/components/schemas/IPPrefixesSynthetics'
3866
+ synthetics-private-locations:
3867
+ $ref: '#/components/schemas/IPPrefixesSyntheticsPrivateLocations'
3679
3868
  version:
3680
3869
  description: Version of the IP list.
3681
3870
  example: 11
@@ -4298,7 +4487,7 @@ components:
4298
4487
  categories:
4299
4488
  description: 'Array of filters to match or not a log and their
4300
4489
 
4301
- corresponding `name`to assign a custom value to the log.'
4490
+ corresponding `name` to assign a custom value to the log.'
4302
4491
  example: []
4303
4492
  items:
4304
4493
  $ref: '#/components/schemas/LogsCategoryProcessorCategory'
@@ -5084,7 +5273,7 @@ components:
5084
5273
  x-enum-varnames:
5085
5274
  - SERVICE_REMAPPER
5086
5275
  LogsSort:
5087
- description: Time-ascending `asc` or time-descending `desc`results.
5276
+ description: Time-ascending `asc` or time-descending `desc` results.
5088
5277
  enum:
5089
5278
  - asc
5090
5279
  - desc
@@ -5801,11 +5990,13 @@ components:
5801
5990
  enum:
5802
5991
  - rum
5803
5992
  - ci_pipelines
5993
+ - ci_tests
5804
5994
  example: rum
5805
5995
  type: string
5806
5996
  x-enum-varnames:
5807
5997
  - RUM
5808
5998
  - CI_PIPELINES
5999
+ - CI_TESTS
5809
6000
  MonitorFormulaAndFunctionQueryDefinition:
5810
6001
  description: A formula and function query.
5811
6002
  oneOf:
@@ -6059,7 +6250,8 @@ components:
6059
6250
  type: boolean
6060
6251
  silenced:
6061
6252
  additionalProperties:
6062
- description: ID of the downtime applied to the monitor.
6253
+ description: UTC epoch timestamp in seconds when the downtime for the
6254
+ group expires.
6063
6255
  format: int64
6064
6256
  nullable: true
6065
6257
  type: integer
@@ -6499,6 +6691,7 @@ components:
6499
6691
  - event-v2 alert
6500
6692
  - audit alert
6501
6693
  - ci-pipelines alert
6694
+ - ci-tests alert
6502
6695
  - error-tracking alert
6503
6696
  example: query alert
6504
6697
  type: string
@@ -6517,6 +6710,7 @@ components:
6517
6710
  - EVENT_V2_ALERT
6518
6711
  - AUDIT_ALERT
6519
6712
  - CI_PIPELINES_ALERT
6713
+ - CI_TESTS_ALERT
6520
6714
  - ERROR_TRACKING_ALERT
6521
6715
  MonitorUpdateRequest:
6522
6716
  description: Object describing a monitor update request.
@@ -6606,7 +6800,7 @@ components:
6606
6800
  type: string
6607
6801
  tag_config_source:
6608
6802
  description: The source of the usage attribution tag configuration and the
6609
- selected tags in the format `<source_org_name>:<selected tag 1>///<selected
6803
+ selected tags in the format `<source_org_name>:::<selected tag 1>///<selected
6610
6804
  tag 2>///<selected tag 3>`.
6611
6805
  type: string
6612
6806
  tags:
@@ -6641,7 +6835,7 @@ components:
6641
6835
  metadata:
6642
6836
  $ref: '#/components/schemas/MonthlyUsageAttributionMetadata'
6643
6837
  usage:
6644
- description: Get Usage Summary by tag(s).
6838
+ description: Get usage summary by tag(s).
6645
6839
  items:
6646
6840
  $ref: '#/components/schemas/MonthlyUsageAttributionBody'
6647
6841
  type: array
@@ -6653,14 +6847,32 @@ components:
6653
6847
  - api_percentage
6654
6848
  - apm_host_usage
6655
6849
  - apm_host_percentage
6850
+ - appsec_usage
6851
+ - appsec_percentage
6656
6852
  - browser_usage
6657
6853
  - browser_percentage
6658
6854
  - container_usage
6659
6855
  - container_percentage
6856
+ - cspm_containers_percentage
6857
+ - cspm_containers_usage
6858
+ - cspm_hosts_percentage
6859
+ - cspm_hosts_usage
6660
6860
  - custom_timeseries_usage
6661
6861
  - custom_timeseries_percentage
6862
+ - cws_containers_percentage
6863
+ - cws_containers_usage
6864
+ - cws_hosts_percentage
6865
+ - cws_hosts_usage
6866
+ - dbm_hosts_percentage
6867
+ - dbm_hosts_usage
6868
+ - dbm_queries_percentage
6869
+ - dbm_queries_usage
6662
6870
  - estimated_indexed_logs_usage
6663
6871
  - estimated_indexed_logs_percentage
6872
+ - estimated_indexed_spans_usage
6873
+ - estimated_indexed_spans_percentage
6874
+ - estimated_ingested_spans_usage
6875
+ - estimated_ingested_spans_percentage
6664
6876
  - fargate_usage
6665
6877
  - fargate_percentage
6666
6878
  - functions_usage
@@ -6686,14 +6898,32 @@ components:
6686
6898
  - API_PERCENTAGE
6687
6899
  - APM_HOST_USAGE
6688
6900
  - APM_HOST_PERCENTAGE
6901
+ - APPSEC_USAGE
6902
+ - APPSEC_PERCENTAGE
6689
6903
  - BROWSER_USAGE
6690
6904
  - BROWSER_PERCENTAGE
6691
6905
  - CONTAINER_USAGE
6692
6906
  - CONTAINER_PERCENTAGE
6907
+ - CSPM_CONTAINERS_PERCENTAGE
6908
+ - CSPM_CONTAINERS_USAGE
6909
+ - CSPM_HOSTS_PERCENTAGE
6910
+ - CSPM_HOSTS_USAGE
6693
6911
  - CUSTOM_TIMESERIES_USAGE
6694
6912
  - CUSTOM_TIMESERIES_PERCENTAGE
6913
+ - CWS_CONTAINERS_PERCENTAGE
6914
+ - CWS_CONTAINERS_USAGE
6915
+ - CWS_HOSTS_PERCENTAGE
6916
+ - CWS_HOSTS_USAGE
6917
+ - DBM_HOSTS_PERCENTAGE
6918
+ - DBM_HOSTS_USAGE
6919
+ - DBM_QUERIES_PERCENTAGE
6920
+ - DBM_QUERIES_USAGE
6695
6921
  - ESTIMATED_INDEXED_LOGS_USAGE
6696
6922
  - ESTIMATED_INDEXED_LOGS_PERCENTAGE
6923
+ - ESTIMATED_INDEXED_SPANS_USAGE
6924
+ - ESTIMATED_INDEXED_SPANS_PERCENTAGE
6925
+ - ESTIMATED_INGESTED_SPANS_USAGE
6926
+ - ESTIMATED_INGESTED_SPANS_PERCENTAGE
6697
6927
  - FARGATE_USAGE
6698
6928
  - FARGATE_PERCENTAGE
6699
6929
  - FUNCTIONS_USAGE
@@ -6732,6 +6962,15 @@ components:
6732
6962
  description: The APM host usage by tag(s).
6733
6963
  format: double
6734
6964
  type: number
6965
+ appsec_percentage:
6966
+ description: The percentage of Application Security Monitoring host usage
6967
+ by tag(s).
6968
+ format: double
6969
+ type: number
6970
+ appsec_usage:
6971
+ description: The Application Security Monitoring host usage by tag(s).
6972
+ format: double
6973
+ type: number
6735
6974
  browser_percentage:
6736
6975
  description: The percentage of synthetic browser test usage by tag(s).
6737
6976
  format: double
@@ -6766,6 +7005,26 @@ components:
6766
7005
  is in private beta.
6767
7006
  format: double
6768
7007
  type: number
7008
+ estimated_indexed_spans_percentage:
7009
+ description: The percentage of estimated indexed spans usage by tag(s).
7010
+ This field is in private beta.
7011
+ format: double
7012
+ type: number
7013
+ estimated_indexed_spans_usage:
7014
+ description: The estimated indexed spans usage by tag(s). This field is
7015
+ in private beta.
7016
+ format: double
7017
+ type: number
7018
+ estimated_ingested_spans_percentage:
7019
+ description: The percentage of estimated ingested spans usage by tag(s).
7020
+ This field is in private beta.
7021
+ format: double
7022
+ type: number
7023
+ estimated_ingested_spans_usage:
7024
+ description: The estimated ingested spans usage by tag(s). This field is
7025
+ in private beta.
7026
+ format: double
7027
+ type: number
6769
7028
  fargate_percentage:
6770
7029
  description: The percentage of Fargate usage by tags.
6771
7030
  format: double
@@ -7663,6 +7922,13 @@ components:
7663
7922
  format: int64
7664
7923
  type: integer
7665
7924
  type: object
7925
+ OrgDowngradedResponse:
7926
+ description: Status of downgrade
7927
+ properties:
7928
+ message:
7929
+ description: Information pertaining to the downgraded child organization.
7930
+ type: string
7931
+ type: object
7666
7932
  Organization:
7667
7933
  description: Create, edit, and manage organizations.
7668
7934
  properties:
@@ -7690,6 +7956,11 @@ components:
7690
7956
  $ref: '#/components/schemas/OrganizationSettings'
7691
7957
  subscription:
7692
7958
  $ref: '#/components/schemas/OrganizationSubscription'
7959
+ trial:
7960
+ description: Only available for MSP customers. Allows child organizations
7961
+ to be created on a trial plan.
7962
+ example: false
7963
+ type: boolean
7693
7964
  type: object
7694
7965
  OrganizationBilling:
7695
7966
  deprecated: true
@@ -8195,7 +8466,7 @@ components:
8195
8466
  example: FREQ=DAILY;INTERVAL=10;COUNT=5
8196
8467
  type: string
8197
8468
  slo_id:
8198
- description: ID of the SLO that this correction will be applied to.
8469
+ description: ID of the SLO that this correction applies to.
8199
8470
  example: sloId
8200
8471
  type: string
8201
8472
  start:
@@ -8236,7 +8507,7 @@ components:
8236
8507
  category:
8237
8508
  $ref: '#/components/schemas/SLOCorrectionCategory'
8238
8509
  created_at:
8239
- description: The epoch timestamp of when the correction was created at
8510
+ description: The epoch timestamp of when the correction was created at.
8240
8511
  format: int64
8241
8512
  type: integer
8242
8513
  creator:
@@ -8256,7 +8527,7 @@ components:
8256
8527
  format: int64
8257
8528
  type: integer
8258
8529
  modified_at:
8259
- description: The epoch timestamp of when the correction was modified at
8530
+ description: The epoch timestamp of when the correction was modified at.
8260
8531
  format: int64
8261
8532
  type: integer
8262
8533
  modifier:
@@ -8265,12 +8536,12 @@ components:
8265
8536
  description: 'The recurrence rules as defined in the iCalendar RFC 5545.
8266
8537
  The supported rules for SLO corrections
8267
8538
 
8268
- are `FREQ`, `INTERVAL`, `COUNT` and `UNTIL`.'
8539
+ are `FREQ`, `INTERVAL`, `COUNT`, and `UNTIL`.'
8269
8540
  example: FREQ=DAILY;INTERVAL=10;COUNT=5
8270
8541
  nullable: true
8271
8542
  type: string
8272
8543
  slo_id:
8273
- description: ID of the SLO that this correction will be applied to.
8544
+ description: ID of the SLO that this correction applies to.
8274
8545
  type: string
8275
8546
  start:
8276
8547
  description: Starting time of the correction in epoch seconds.
@@ -8341,7 +8612,7 @@ components:
8341
8612
  description: 'The recurrence rules as defined in the iCalendar RFC 5545.
8342
8613
  The supported rules for SLO corrections
8343
8614
 
8344
- are `FREQ`, `INTERVAL`, `COUNT` and `UNTIL`.'
8615
+ are `FREQ`, `INTERVAL`, `COUNT`, and `UNTIL`.'
8345
8616
  example: FREQ=DAILY;INTERVAL=10;COUNT=5
8346
8617
  type: string
8347
8618
  start:
@@ -8434,7 +8705,7 @@ components:
8434
8705
  format: int64
8435
8706
  type: integer
8436
8707
  times:
8437
- description: An array of query timestamps in EPOCH milliseconds
8708
+ description: An array of query timestamps in EPOCH milliseconds.
8438
8709
  example: []
8439
8710
  items:
8440
8711
  description: A timestamp in EPOCH milliseconds.
@@ -9302,6 +9573,164 @@ components:
9302
9573
  - formula
9303
9574
  - dimension
9304
9575
  type: object
9576
+ SearchSLOResponse:
9577
+ description: A search SLO response containing results from the search query.
9578
+ properties:
9579
+ data:
9580
+ $ref: '#/components/schemas/SearchSLOResponseData'
9581
+ links:
9582
+ $ref: '#/components/schemas/SearchSLOResponseLinks'
9583
+ meta:
9584
+ $ref: '#/components/schemas/SearchSLOResponseMeta'
9585
+ type: object
9586
+ SearchSLOResponseData:
9587
+ description: Data from search SLO response.
9588
+ properties:
9589
+ attributes:
9590
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributes'
9591
+ type:
9592
+ description: Type of service level objective result.
9593
+ example: ''
9594
+ type: string
9595
+ type: object
9596
+ SearchSLOResponseDataAttributes:
9597
+ description: Attributes
9598
+ properties:
9599
+ facets:
9600
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributesFacets'
9601
+ slo:
9602
+ description: SLOs
9603
+ items:
9604
+ $ref: '#/components/schemas/ServiceLevelObjective'
9605
+ type: array
9606
+ type: object
9607
+ SearchSLOResponseDataAttributesFacets:
9608
+ description: Facets
9609
+ properties:
9610
+ all_tags:
9611
+ description: All tags associated with an SLO.
9612
+ items:
9613
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
9614
+ type: array
9615
+ creator_name:
9616
+ description: Creator of an SLO.
9617
+ items:
9618
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
9619
+ type: array
9620
+ env_tags:
9621
+ description: Tags with the `env` tag key.
9622
+ items:
9623
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
9624
+ type: array
9625
+ service_tags:
9626
+ description: Tags with the `service` tag key.
9627
+ items:
9628
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
9629
+ type: array
9630
+ slo_type:
9631
+ description: Type of SLO.
9632
+ items:
9633
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectInt'
9634
+ type: array
9635
+ target:
9636
+ description: SLO Target
9637
+ items:
9638
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectInt'
9639
+ type: array
9640
+ team_tags:
9641
+ description: Tags with the `team` tag key.
9642
+ items:
9643
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
9644
+ type: array
9645
+ timeframe:
9646
+ description: Timeframes of SLOs.
9647
+ items:
9648
+ $ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
9649
+ type: array
9650
+ type: object
9651
+ SearchSLOResponseDataAttributesFacetsObjectInt:
9652
+ description: Facet
9653
+ properties:
9654
+ count:
9655
+ description: Count
9656
+ format: int64
9657
+ type: integer
9658
+ name:
9659
+ description: Facet
9660
+ format: double
9661
+ type: number
9662
+ type: object
9663
+ SearchSLOResponseDataAttributesFacetsObjectString:
9664
+ description: Facet
9665
+ properties:
9666
+ count:
9667
+ description: Count
9668
+ format: int64
9669
+ type: integer
9670
+ name:
9671
+ description: Facet
9672
+ type: string
9673
+ type: object
9674
+ SearchSLOResponseLinks:
9675
+ description: Pagination links.
9676
+ properties:
9677
+ first:
9678
+ description: Link to last page.
9679
+ type: string
9680
+ last:
9681
+ description: Link to first page.
9682
+ type: string
9683
+ next:
9684
+ description: Link to the next page.
9685
+ type: string
9686
+ prev:
9687
+ description: Link to previous page.
9688
+ type: string
9689
+ self:
9690
+ description: Link to current page.
9691
+ type: string
9692
+ type: object
9693
+ SearchSLOResponseMeta:
9694
+ description: Searches metadata returned by the API.
9695
+ properties:
9696
+ pagination:
9697
+ $ref: '#/components/schemas/SearchSLOResponseMetaPage'
9698
+ type: object
9699
+ SearchSLOResponseMetaPage:
9700
+ description: Pagination metadata returned by the API.
9701
+ properties:
9702
+ first_number:
9703
+ description: The first number.
9704
+ format: int64
9705
+ type: integer
9706
+ last_number:
9707
+ description: The last number.
9708
+ format: int64
9709
+ type: integer
9710
+ next_number:
9711
+ description: The next number.
9712
+ format: int64
9713
+ type: integer
9714
+ number:
9715
+ description: The page number.
9716
+ format: int64
9717
+ type: integer
9718
+ prev_number:
9719
+ description: The previous page number.
9720
+ format: int64
9721
+ type: integer
9722
+ size:
9723
+ description: The size of the response.
9724
+ format: int64
9725
+ type: integer
9726
+ total:
9727
+ description: The total number of SLOs in the response.
9728
+ format: int64
9729
+ type: integer
9730
+ type:
9731
+ description: Type of pagination.
9732
+ type: string
9733
+ type: object
9305
9734
  Series:
9306
9735
  description: 'A metric to submit to Datadog.
9307
9736
 
@@ -9340,8 +9769,9 @@ components:
9340
9769
  type: string
9341
9770
  type: array
9342
9771
  type:
9343
- default: gauge
9344
- description: The type of the metric either `count`, `gauge`, or `rate`.
9772
+ default: ''
9773
+ description: The type of the metric. Valid types are "",`count`, `gauge`,
9774
+ and `rate`.
9345
9775
  example: rate
9346
9776
  type: string
9347
9777
  required:
@@ -9429,7 +9859,7 @@ components:
9429
9859
  nullable: true
9430
9860
  type: string
9431
9861
  groups:
9432
- description: 'A list of (up to 20) monitor groups that narrow the scope
9862
+ description: 'A list of (up to 100) monitor groups that narrow the scope
9433
9863
  of a monitor service level objective.
9434
9864
 
9435
9865
 
@@ -9478,8 +9908,8 @@ components:
9478
9908
 
9479
9909
  field.
9480
9910
 
9481
- Always included in service level objective responses for monitor service
9482
- level
9911
+ Always included in service level objective responses for monitor-based
9912
+ service level
9483
9913
 
9484
9914
  objectives (but may be empty). Ignored in create/update requests. Does
9485
9915
  not
@@ -9532,7 +9962,7 @@ components:
9532
9962
  - thresholds
9533
9963
  - type
9534
9964
  ServiceLevelObjectiveQuery:
9535
- description: 'A metric SLI query. **Required if type is `metric`**. Note that
9965
+ description: 'A metric-based SLO. **Required if type is `metric`**. Note that
9536
9966
  Datadog only allows the sum by aggregator
9537
9967
 
9538
9968
  to be used because this will sum up all request counts instead of averaging
@@ -9568,7 +9998,7 @@ components:
9568
9998
  nullable: true
9569
9999
  type: string
9570
10000
  groups:
9571
- description: 'A list of (up to 20) monitor groups that narrow the scope
10001
+ description: 'A list of (up to 100) monitor groups that narrow the scope
9572
10002
  of a monitor service level objective.
9573
10003
 
9574
10004
 
@@ -9587,7 +10017,7 @@ components:
9587
10017
  type: string
9588
10018
  type: array
9589
10019
  monitor_ids:
9590
- description: 'A list of monitor ids that defines the scope of a monitor
10020
+ description: 'A list of monitor IDs that defines the scope of a monitor
9591
10021
  service level
9592
10022
 
9593
10023
  objective. **Required if type is `monitor`**.'
@@ -9747,6 +10177,59 @@ components:
9747
10177
  type: string
9748
10178
  x-enum-varnames:
9749
10179
  - TRACE_SERVICE
10180
+ SignalArchiveReason:
10181
+ description: Reason why a signal has been archived.
10182
+ enum:
10183
+ - none
10184
+ - false_positive
10185
+ - testing_or_maintenance
10186
+ - other
10187
+ type: string
10188
+ x-enum-varnames:
10189
+ - NONE
10190
+ - FALSE_POSITIVE
10191
+ - TESTING_OR_MAINTENANCE
10192
+ - OTHER
10193
+ SignalAssigneeUpdateRequest:
10194
+ description: Attributes describing an assignee update operation over a security
10195
+ signal.
10196
+ properties:
10197
+ assignee:
10198
+ description: The UUID of the user being assigned. Use empty string to return
10199
+ signal to unassigned.
10200
+ example: 773b045d-ccf8-4808-bd3b-955ef6a8c940
10201
+ type: string
10202
+ version:
10203
+ $ref: '#/components/schemas/Version'
10204
+ required:
10205
+ - assignee
10206
+ type: object
10207
+ SignalStateUpdateRequest:
10208
+ description: Attributes describing the change of state for a given state.
10209
+ properties:
10210
+ archiveComment:
10211
+ description: Optional comment to explain why a signal is being archived.
10212
+ type: string
10213
+ archiveReason:
10214
+ $ref: '#/components/schemas/SignalArchiveReason'
10215
+ state:
10216
+ $ref: '#/components/schemas/SignalTriageState'
10217
+ version:
10218
+ $ref: '#/components/schemas/Version'
10219
+ required:
10220
+ - state
10221
+ type: object
10222
+ SignalTriageState:
10223
+ description: The new triage state of the signal.
10224
+ enum:
10225
+ - open
10226
+ - archived
10227
+ - under_review
10228
+ type: string
10229
+ x-enum-varnames:
10230
+ - OPEN
10231
+ - ARCHIVED
10232
+ - UNDER_REVIEW
9750
10233
  SlackIntegrationChannel:
9751
10234
  description: The Slack channel configuration.
9752
10235
  properties:
@@ -9795,6 +10278,13 @@ components:
9795
10278
  items:
9796
10279
  $ref: '#/components/schemas/SlackIntegrationChannel'
9797
10280
  type: array
10281
+ SuccessfulSignalUpdateResponse:
10282
+ description: Updated signal data following a successfully performed update.
10283
+ properties:
10284
+ status:
10285
+ description: Status of the response.
10286
+ type: string
10287
+ type: object
9798
10288
  SunburstWidgetDefinition:
9799
10289
  description: Sunbursts are spot on to highlight how groups contribute to the
9800
10290
  total of a query.
@@ -10032,6 +10522,7 @@ components:
10032
10522
  - locations
10033
10523
  - options
10034
10524
  - type
10525
+ - message
10035
10526
  type: object
10036
10527
  SyntheticsAPITestConfig:
10037
10528
  description: Configuration object for a Synthetic API test.
@@ -10093,7 +10584,6 @@ components:
10093
10584
  responseHeaders:
10094
10585
  additionalProperties:
10095
10586
  description: Returned request header.
10096
- type: object
10097
10587
  description: Response headers returned for the API test.
10098
10588
  type: object
10099
10589
  responseSize:
@@ -10350,6 +10840,8 @@ components:
10350
10840
  - packetsReceived
10351
10841
  - networkHop
10352
10842
  - receivedMessage
10843
+ - grpcHealthcheckStatus
10844
+ - connection
10353
10845
  example: statusCode
10354
10846
  type: string
10355
10847
  x-enum-varnames:
@@ -10368,6 +10860,8 @@ components:
10368
10860
  - PACKETS_RECEIVED
10369
10861
  - NETWORK_HOP
10370
10862
  - RECEIVED_MESSAGE
10863
+ - GRPC_HEALTHCHECK_STATUS
10864
+ - CONNECTION
10371
10865
  SyntheticsBasicAuth:
10372
10866
  description: Object to handle basic authentication when performing the test.
10373
10867
  oneOf:
@@ -10624,6 +11118,7 @@ components:
10624
11118
  - name
10625
11119
  - options
10626
11120
  - type
11121
+ - message
10627
11122
  type: object
10628
11123
  SyntheticsBrowserTestConfig:
10629
11124
  description: Configuration object for a Synthetic browser test.
@@ -10853,9 +11348,53 @@ components:
10853
11348
  format: int64
10854
11349
  type: integer
10855
11350
  type: object
10856
- SyntheticsBrowserTestType:
10857
- default: browser
10858
- description: Type of the Synthetic test, `browser`.
11351
+ SyntheticsBrowserTestRumSettings:
11352
+ description: 'The RUM data collection settings for the Synthetic browser test.
11353
+
11354
+ **Note:** There are 3 ways to format RUM settings:
11355
+
11356
+
11357
+ `{ isEnabled: false }`
11358
+
11359
+ RUM data is not collected.
11360
+
11361
+
11362
+ `{ isEnabled: true }`
11363
+
11364
+ RUM data is collected from the Synthetic test''s default application.
11365
+
11366
+
11367
+ `{ isEnabled: true, applicationId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
11368
+ clientTokenId: 12345 }`
11369
+
11370
+ RUM data is collected using the specified application.'
11371
+ example:
11372
+ applicationId: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
11373
+ clientTokenId: 12345
11374
+ isEnabled: true
11375
+ properties:
11376
+ applicationId:
11377
+ description: RUM application ID used to collect RUM data for the browser
11378
+ test.
11379
+ example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
11380
+ type: string
11381
+ clientTokenId:
11382
+ description: RUM application API key ID used to collect RUM data for the
11383
+ browser test.
11384
+ example: 12345
11385
+ format: int64
11386
+ type: integer
11387
+ x-secret: true
11388
+ isEnabled:
11389
+ description: Determines whether RUM data is collected during test runs.
11390
+ example: true
11391
+ type: boolean
11392
+ required:
11393
+ - isEnabled
11394
+ type: object
11395
+ SyntheticsBrowserTestType:
11396
+ default: browser
11397
+ description: Type of the Synthetic test, `browser`.
10859
11398
  enum:
10860
11399
  - browser
10861
11400
  example: browser
@@ -11077,12 +11616,12 @@ components:
11077
11616
  properties:
11078
11617
  cls:
11079
11618
  description: Cumulative Layout Shift.
11080
- format: int64
11081
- type: integer
11619
+ format: double
11620
+ type: number
11082
11621
  lcp:
11083
11622
  description: Largest Contentful Paint in milliseconds.
11084
- format: int64
11085
- type: integer
11623
+ format: double
11624
+ type: number
11086
11625
  url:
11087
11626
  description: URL attached to the metrics.
11088
11627
  type: string
@@ -11750,6 +12289,12 @@ components:
11750
12289
  - TYPE_TEXT
11751
12290
  - UPLOAD_FILES
11752
12291
  - WAIT
12292
+ SyntheticsTestCiOptions:
12293
+ description: CI/CD options for a Synthetic test.
12294
+ properties:
12295
+ executionRule:
12296
+ $ref: '#/components/schemas/SyntheticsTestExecutionRule'
12297
+ type: object
11753
12298
  SyntheticsTestConfig:
11754
12299
  description: Configuration object for a Synthetic test.
11755
12300
  properties:
@@ -11827,7 +12372,7 @@ components:
11827
12372
  SyntheticsTestDetailsSubType:
11828
12373
  description: 'The subtype of the Synthetic API test, `http`, `ssl`, `tcp`,
11829
12374
 
11830
- `dns`, `icmp`, `udp`, `websocket` or `multi`.'
12375
+ `dns`, `icmp`, `udp`, `websocket`, `grpc` or `multi`.'
11831
12376
  enum:
11832
12377
  - http
11833
12378
  - ssl
@@ -11837,6 +12382,7 @@ components:
11837
12382
  - icmp
11838
12383
  - udp
11839
12384
  - websocket
12385
+ - grpc
11840
12386
  example: http
11841
12387
  type: string
11842
12388
  x-enum-varnames:
@@ -11848,6 +12394,7 @@ components:
11848
12394
  - ICMP
11849
12395
  - UDP
11850
12396
  - WEBSOCKET
12397
+ - GRPC
11851
12398
  SyntheticsTestDetailsType:
11852
12399
  description: Type of the Synthetic test, either `api` or `browser`.
11853
12400
  enum:
@@ -11874,6 +12421,12 @@ components:
11874
12421
  type: string
11875
12422
  description: Headers to include when performing the test.
11876
12423
  type: object
12424
+ SyntheticsTestMetadata:
12425
+ additionalProperties:
12426
+ description: A single Metadatum.
12427
+ type: string
12428
+ description: Metadata to include when performing the gRPC test.
12429
+ type: object
11877
12430
  SyntheticsTestMonitorStatus:
11878
12431
  description: 'The status of your Synthetic monitor.
11879
12432
 
@@ -11907,6 +12460,8 @@ components:
11907
12460
  description: For SSL test, whether or not the test should fail on revoked
11908
12461
  certificate in stapled OCSP.
11909
12462
  type: boolean
12463
+ ci:
12464
+ $ref: '#/components/schemas/SyntheticsTestCiOptions'
11910
12465
  device_ids:
11911
12466
  description: For browser test, array with the different device IDs used
11912
12467
  to run the test.
@@ -11948,6 +12503,8 @@ components:
11948
12503
  $ref: '#/components/schemas/SyntheticsRestrictedRoles'
11949
12504
  retry:
11950
12505
  $ref: '#/components/schemas/SyntheticsTestOptionsRetry'
12506
+ rumSettings:
12507
+ $ref: '#/components/schemas/SyntheticsBrowserTestRumSettings'
11951
12508
  tick_every:
11952
12509
  description: The frequency at which to run the Synthetic test (in seconds).
11953
12510
  format: int64
@@ -12049,6 +12606,8 @@ components:
12049
12606
  message:
12050
12607
  description: Message to send for UDP or WebSocket tests.
12051
12608
  type: string
12609
+ metadata:
12610
+ $ref: '#/components/schemas/SyntheticsTestMetadata'
12052
12611
  method:
12053
12612
  $ref: '#/components/schemas/HTTPMethod'
12054
12613
  noSavingResponseBody:
@@ -12077,6 +12636,9 @@ components:
12077
12636
 
12078
12637
  the same IP address and TCP port number.'
12079
12638
  type: string
12639
+ service:
12640
+ description: gRPC service on which you want to perform the healthcheck.
12641
+ type: string
12080
12642
  shouldTrackHops:
12081
12643
  description: Turns on a traceroute probe to discover all gateways along
12082
12644
  the path to the host destination.
@@ -12697,7 +13259,9 @@ components:
12697
13259
  type: object
12698
13260
  TreeMapColorBy:
12699
13261
  default: user
12700
- description: The attribute used to determine color in the widget.
13262
+ deprecated: true
13263
+ description: (deprecated) The attribute formerly used to determine color in
13264
+ the widget.
12701
13265
  enum:
12702
13266
  - user
12703
13267
  example: user
@@ -12705,7 +13269,9 @@ components:
12705
13269
  x-enum-varnames:
12706
13270
  - USER
12707
13271
  TreeMapGroupBy:
12708
- description: The attribute used to group elements in the widget.
13272
+ deprecated: true
13273
+ description: (deprecated) The attribute formerly used to group elements in the
13274
+ widget.
12709
13275
  enum:
12710
13276
  - user
12711
13277
  - family
@@ -12717,7 +13283,9 @@ components:
12717
13283
  - FAMILY
12718
13284
  - PROCESS
12719
13285
  TreeMapSizeBy:
12720
- description: The attribute used to determine size in the widget.
13286
+ deprecated: true
13287
+ description: (deprecated) The attribute formerly used to determine size in the
13288
+ widget.
12721
13289
  enum:
12722
13290
  - pct_cpu
12723
13291
  - pct_mem
@@ -12727,20 +13295,26 @@ components:
12727
13295
  - PCT_CPU
12728
13296
  - PCT_MEM
12729
13297
  TreeMapWidgetDefinition:
12730
- description: "The treemap visualization found on the Host Dashboards comes from
12731
- the output of `ps auxww`. This is not continuously run on your hosts. Instead,
12732
- it\u2019s run once on Agent start/restart. The treemap is only supported for
12733
- process data on a single host dashboard \u2014 this may not be reused in other
12734
- dashboards or for other metrics."
13298
+ description: The treemap visualization enables you to display hierarchical and
13299
+ nested data. It is well suited for queries that describe part-whole relationships,
13300
+ such as resource usage by availability zone, data center, or team.
12735
13301
  properties:
12736
13302
  color_by:
12737
13303
  $ref: '#/components/schemas/TreeMapColorBy'
13304
+ custom_links:
13305
+ description: List of custom links.
13306
+ items:
13307
+ $ref: '#/components/schemas/WidgetCustomLink'
13308
+ type: array
12738
13309
  group_by:
12739
13310
  $ref: '#/components/schemas/TreeMapGroupBy'
12740
13311
  requests:
12741
- description: List of top list widget requests.
13312
+ description: List of treemap widget requests.
12742
13313
  example:
12743
- - q: system.load.1
13314
+ - aggregator: sum
13315
+ data_source: metrics
13316
+ name: query1
13317
+ query: sum:system.mem.total{*} by {service}
12744
13318
  items:
12745
13319
  $ref: '#/components/schemas/TreeMapWidgetRequest'
12746
13320
  maxItems: 1
@@ -12748,6 +13322,8 @@ components:
12748
13322
  type: array
12749
13323
  size_by:
12750
13324
  $ref: '#/components/schemas/TreeMapSizeBy'
13325
+ time:
13326
+ $ref: '#/components/schemas/WidgetTime'
12751
13327
  title:
12752
13328
  description: Title of your widget.
12753
13329
  type: string
@@ -12849,8 +13425,8 @@ components:
12849
13425
  type: string
12850
13426
  tag_config_source:
12851
13427
  description: The source of the usage attribution tag configuration and the
12852
- selected tags in the format `<source_org_name>:<selected tag 1>-<selected
12853
- tag 2>-<selected tag 3>`.
13428
+ selected tags in the format `<source_org_name>:::<selected tag 1>///<selected
13429
+ tag 2>///<selected tag 3>`.
12854
13430
  type: string
12855
13431
  tags:
12856
13432
  $ref: '#/components/schemas/UsageAttributionTagNames'
@@ -12907,7 +13483,7 @@ components:
12907
13483
  metadata:
12908
13484
  $ref: '#/components/schemas/UsageAttributionMetadata'
12909
13485
  usage:
12910
- description: Get Usage Summary by tag(s).
13486
+ description: Get usage summary by tag(s).
12911
13487
  items:
12912
13488
  $ref: '#/components/schemas/UsageAttributionBody'
12913
13489
  type: array
@@ -12920,6 +13496,8 @@ components:
12920
13496
  - snmp_usage
12921
13497
  - apm_host_usage
12922
13498
  - api_usage
13499
+ - appsec_usage
13500
+ - appsec_percentage
12923
13501
  - container_usage
12924
13502
  - custom_timeseries_percentage
12925
13503
  - container_percentage
@@ -12938,12 +13516,18 @@ components:
12938
13516
  - lambda_invocations_percentage
12939
13517
  - estimated_indexed_logs_usage
12940
13518
  - estimated_indexed_logs_percentage
13519
+ - estimated_indexed_spans_usage
13520
+ - estimated_indexed_spans_percentage
13521
+ - estimated_ingested_spans_usage
13522
+ - estimated_ingested_spans_percentage
12941
13523
  type: string
12942
13524
  x-enum-varnames:
12943
13525
  - API_PERCENTAGE
12944
13526
  - SNMP_USAGE
12945
13527
  - APM_HOST_USAGE
12946
13528
  - API_USAGE
13529
+ - APPSEC_USAGE
13530
+ - APPSEC_PERCENTAGE
12947
13531
  - CONTAINER_USAGE
12948
13532
  - CUSTOM_TIMESERIES_PERCENTAGE
12949
13533
  - CONTAINER_PERCENTAGE
@@ -12962,6 +13546,10 @@ components:
12962
13546
  - LAMBDA_INVOCATIONS_PERCENTAGE
12963
13547
  - ESTIMATED_INDEXED_LOGS_USAGE
12964
13548
  - ESTIMATED_INDEXED_LOGS_PERCENTAGE
13549
+ - ESTIMATED_INDEXED_SPANS_USAGE
13550
+ - ESTIMATED_INDEXED_SPANS_PERCENTAGE
13551
+ - ESTIMATED_INGESTED_SPANS_USAGE
13552
+ - ESTIMATED_INGESTED_SPANS_PERCENTAGE
12965
13553
  UsageAttributionSupportedMetrics:
12966
13554
  description: Supported fields for usage attribution requests (valid requests
12967
13555
  contain one or more metrics, or `*` for all).
@@ -12998,6 +13586,12 @@ components:
12998
13586
  - dbm_queries_percentage
12999
13587
  - estimated_indexed_logs_usage
13000
13588
  - estimated_indexed_logs_percentage
13589
+ - appsec_usage
13590
+ - appsec_percentage
13591
+ - estimated_indexed_spans_usage
13592
+ - estimated_indexed_spans_percentage
13593
+ - estimated_ingested_spans_usage
13594
+ - estimated_ingested_spans_percentage
13001
13595
  - '*'
13002
13596
  type: string
13003
13597
  x-enum-varnames:
@@ -13033,16 +13627,40 @@ components:
13033
13627
  - DBM_QUERIES_PERCENTAGE
13034
13628
  - ESTIMATED_INDEXED_LOGS_USAGE
13035
13629
  - ESTIMATED_INDEXED_LOGS_PERCENTAGE
13630
+ - APPSEC_USAGE
13631
+ - APPSEC_PERCENTAGE
13632
+ - ESTIMATED_INDEXED_SPANS_USAGE
13633
+ - ESTIMATED_INDEXED_SPANS_PERCENTAGE
13634
+ - ESTIMATED_INGESTED_SPANS_USAGE
13635
+ - ESTIMATED_INGESTED_SPANS_PERCENTAGE
13036
13636
  - ALL
13037
13637
  UsageAttributionTagNames:
13038
13638
  additionalProperties:
13039
- description: A list of tag values.
13639
+ description: 'A list of values that are associated with each tag key.
13640
+
13641
+
13642
+ - An empty list means the resource use wasn''t tagged with the respective
13643
+ tag.
13644
+
13645
+ - Multiple values means the respective tag was applied multiple times on
13646
+ the resource.
13647
+
13648
+ - An `<empty>` value means the resource was tagged with the respective tag
13649
+ but did not have a value.'
13040
13650
  items:
13041
13651
  description: A given tag in a list.
13042
13652
  example: datadog-integrations-lab
13043
13653
  type: string
13044
13654
  type: array
13045
- description: Usage Summary by tag name.
13655
+ description: 'Tag keys and values.
13656
+
13657
+
13658
+ A `null` value here means that the requested tag breakdown cannot be applied
13659
+ because it does not match the [tags
13660
+
13661
+ configured for usage attribution](https://docs.datadoghq.com/account_management/billing/usage_attribution/#getting-started).
13662
+
13663
+ In this scenario the API returns the total usage, not broken down by tags.'
13046
13664
  type: object
13047
13665
  UsageAttributionValues:
13048
13666
  description: Fields in Usage Summary by tag(s).
@@ -13063,6 +13681,15 @@ components:
13063
13681
  description: The APM host usage by tag(s).
13064
13682
  format: double
13065
13683
  type: number
13684
+ appsec_percentage:
13685
+ description: The percentage of Application Security Monitoring host usage
13686
+ by tag(s).
13687
+ format: double
13688
+ type: number
13689
+ appsec_usage:
13690
+ description: The Application Security Monitoring host usage by tag(s).
13691
+ format: double
13692
+ type: number
13066
13693
  browser_percentage:
13067
13694
  description: The percentage of synthetic browser test usage by tag(s).
13068
13695
  format: double
@@ -13149,6 +13776,26 @@ components:
13149
13776
  field is in private beta.
13150
13777
  format: double
13151
13778
  type: number
13779
+ estimated_indexed_spans_percentage:
13780
+ description: The percentage of estimated indexed spans usage by tag(s).
13781
+ Note this field is in private beta.
13782
+ format: double
13783
+ type: number
13784
+ estimated_indexed_spans_usage:
13785
+ description: The estimated indexed spans usage by tag(s). Note this field
13786
+ is in private beta.
13787
+ format: double
13788
+ type: number
13789
+ estimated_ingested_spans_percentage:
13790
+ description: The percentage of estimated ingested spans usage by tag(s).
13791
+ Note this field is in private beta.
13792
+ format: double
13793
+ type: number
13794
+ estimated_ingested_spans_usage:
13795
+ description: The estimated ingested spans usage by tag(s). Note this field
13796
+ is in private beta.
13797
+ format: double
13798
+ type: number
13152
13799
  infra_host_percentage:
13153
13800
  description: The percentage of infrastructure host usage by tag(s).
13154
13801
  format: double
@@ -13300,30 +13947,104 @@ components:
13300
13947
  UsageBillableSummaryKeys:
13301
13948
  description: Response with aggregated usage types.
13302
13949
  properties:
13950
+ apm_fargate_average:
13951
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13952
+ apm_fargate_sum:
13953
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13303
13954
  apm_host_sum:
13304
13955
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13305
13956
  apm_host_top99p:
13306
13957
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13958
+ apm_profiler_host_sum:
13959
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13960
+ apm_profiler_host_top99p:
13961
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13307
13962
  apm_trace_search_sum:
13308
13963
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13964
+ application_security_host_sum:
13965
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13966
+ ci_pipeline_indexed_spans_sum:
13967
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13968
+ ci_pipeline_maximum:
13969
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13970
+ ci_pipeline_sum:
13971
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13972
+ ci_test_indexed_spans_sum:
13973
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13974
+ ci_testing_maximum:
13975
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13976
+ ci_testing_sum:
13977
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13978
+ cspm_container_sum:
13979
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13980
+ cspm_host_sum:
13981
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13982
+ cspm_host_top99p:
13983
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13984
+ custom_event_sum:
13985
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13986
+ cws_container_sum:
13987
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13988
+ cws_host_sum:
13989
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13990
+ cws_host_top99p:
13991
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13992
+ dbm_host_sum:
13993
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13994
+ dbm_host_top99p:
13995
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13996
+ dbm_normalized_queries_average:
13997
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13998
+ dbm_normalized_queries_sum:
13999
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14000
+ fargate_container_apm_and_profiler_average:
14001
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14002
+ fargate_container_apm_and_profiler_sum:
14003
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13309
14004
  fargate_container_average:
13310
14005
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14006
+ fargate_container_profiler_average:
14007
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14008
+ fargate_container_profiler_sum:
14009
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14010
+ fargate_container_sum:
14011
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14012
+ incident_management_maximum:
14013
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14014
+ incident_management_sum:
14015
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14016
+ infra_and_apm_host_sum:
14017
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14018
+ infra_and_apm_host_top99p:
14019
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13311
14020
  infra_container_sum:
13312
14021
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13313
14022
  infra_host_sum:
13314
14023
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13315
14024
  infra_host_top99p:
13316
14025
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14026
+ ingested_spans_sum:
14027
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14028
+ ingested_timeseries_average:
14029
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14030
+ ingested_timeseries_sum:
14031
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14032
+ iot_sum:
14033
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13317
14034
  iot_top99p:
13318
14035
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13319
14036
  lambda_function_average:
13320
14037
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14038
+ lambda_function_sum:
14039
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13321
14040
  logs_indexed_15day_sum:
13322
14041
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13323
14042
  logs_indexed_180day_sum:
13324
14043
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13325
14044
  logs_indexed_30day_sum:
13326
14045
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14046
+ logs_indexed_360day_sum:
14047
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13327
14048
  logs_indexed_3day_sum:
13328
14049
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13329
14050
  logs_indexed_45day_sum:
@@ -13340,6 +14061,8 @@ components:
13340
14061
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13341
14062
  logs_ingested_sum:
13342
14063
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14064
+ network_device_sum:
14065
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13343
14066
  network_device_top99p:
13344
14067
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13345
14068
  npm_flow_sum:
@@ -13348,22 +14071,40 @@ components:
13348
14071
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13349
14072
  npm_host_top99p:
13350
14073
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14074
+ observability_pipeline_sum:
14075
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14076
+ online_archive_sum:
14077
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13351
14078
  prof_container_sum:
13352
14079
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14080
+ prof_host_sum:
14081
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13353
14082
  prof_host_top99p:
13354
14083
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14084
+ rum_lite_sum:
14085
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14086
+ rum_replay_sum:
14087
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13355
14088
  rum_sum:
13356
14089
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14090
+ rum_units_sum:
14091
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
14092
+ sensitive_data_scanner_sum:
14093
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13357
14094
  serverless_invocation_sum:
13358
14095
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13359
14096
  siem_sum:
13360
14097
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14098
+ standard_timeseries_average:
14099
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13361
14100
  synthetics_api_tests_sum:
13362
14101
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13363
14102
  synthetics_browser_checks_sum:
13364
14103
  $ref: '#/components/schemas/UsageBillableSummaryBody'
13365
14104
  timeseries_average:
13366
14105
  $ref: '#/components/schemas/UsageBillableSummaryBody'
14106
+ timeseries_sum:
14107
+ $ref: '#/components/schemas/UsageBillableSummaryBody'
13367
14108
  type: object
13368
14109
  UsageBillableSummaryResponse:
13369
14110
  description: Response with monthly summary of data billed by Datadog.
@@ -14171,16 +14912,25 @@ components:
14171
14912
  session_count:
14172
14913
  description: Contains the number of browser RUM Lite Sessions.
14173
14914
  format: int64
14915
+ nullable: true
14174
14916
  type: integer
14175
14917
  session_count_android:
14176
14918
  description: Contains the number of mobile RUM Sessions on Android (data
14177
14919
  available beginning December 1, 2020).
14178
14920
  format: int64
14921
+ nullable: true
14179
14922
  type: integer
14180
14923
  session_count_ios:
14181
14924
  description: Contains the number of mobile RUM Sessions on iOS (data available
14182
14925
  beginning December 1, 2020).
14183
14926
  format: int64
14927
+ nullable: true
14928
+ type: integer
14929
+ session_count_reactnative:
14930
+ description: Contains the number of mobile RUM Sessions on React Native
14931
+ (data available beginning May 1, 2022).
14932
+ format: int64
14933
+ nullable: true
14184
14934
  type: integer
14185
14935
  type: object
14186
14936
  UsageRumSessionsResponse:
@@ -14593,6 +15343,11 @@ components:
14593
15343
  in the current date for all organizations.
14594
15344
  format: int64
14595
15345
  type: integer
15346
+ mobile_rum_session_count_reactnative_sum:
15347
+ description: Shows the sum of all mobile RUM Sessions on React Native over
15348
+ all hours in the current date for all organizations.
15349
+ format: int64
15350
+ type: integer
14596
15351
  mobile_rum_session_count_sum:
14597
15352
  description: Shows the sum of all mobile RUM Sessions over all hours in
14598
15353
  the current date for all organizations
@@ -14912,6 +15667,11 @@ components:
14912
15667
  in the current date for the given org.
14913
15668
  format: int64
14914
15669
  type: integer
15670
+ mobile_rum_session_count_reactnative_sum:
15671
+ description: Shows the sum of all mobile RUM Sessions on React Native over
15672
+ all hours in the current date for the given org.
15673
+ format: int64
15674
+ type: integer
14915
15675
  mobile_rum_session_count_sum:
14916
15676
  description: Shows the sum of all mobile RUM Sessions over all hours in
14917
15677
  the current date for the given org.
@@ -15266,6 +16026,11 @@ components:
15266
16026
  in the current months for all organizations.
15267
16027
  format: int64
15268
16028
  type: integer
16029
+ mobile_rum_session_count_reactnative_agg_sum:
16030
+ description: Shows the sum of all mobile RUM Sessions on React Native over
16031
+ all hours in the current months for all organizations.
16032
+ format: int64
16033
+ type: integer
15269
16034
  mobile_rum_units_agg_sum:
15270
16035
  description: Shows the sum of all mobile RUM units over all hours in the
15271
16036
  current months for all organizations.
@@ -15628,6 +16393,11 @@ components:
15628
16393
  user:
15629
16394
  $ref: '#/components/schemas/User'
15630
16395
  type: object
16396
+ Version:
16397
+ description: Version of the updated signal. If server side version is higher,
16398
+ update will be rejected.
16399
+ format: int64
16400
+ type: integer
15631
16401
  WebhooksIntegration:
15632
16402
  description: Datadog-Webhooks integration.
15633
16403
  properties:
@@ -16537,7 +17307,8 @@ components:
16537
17307
  authorizationCode:
16538
17308
  authorizationUrl: /oauth2/v1/authorize
16539
17309
  scopes:
16540
- dashboards_public_share: Share dashboards externally.
17310
+ dashboards_public_share: Generate public and authenticated links to share
17311
+ dashboards externally.
16541
17312
  dashboards_read: View dashboards.
16542
17313
  dashboards_write: Create and change dashboards.
16543
17314
  events_read: Read Events data.
@@ -16547,15 +17318,15 @@ components:
16547
17318
  downtimes.
16548
17319
  monitors_read: View monitors.
16549
17320
  monitors_write: Edit, mute, and delete individual monitors.
16550
- synthetics_global_variable_read: View, search, and use in tests the list
16551
- of global variables available for Synthetics.
17321
+ synthetics_global_variable_read: View, search, and use Synthetics global
17322
+ variables.
16552
17323
  synthetics_global_variable_write: Create, edit, and delete global variables
16553
17324
  for Synthetics.
16554
- synthetics_private_location_read: View, search, and use in tests the list
16555
- of available private locations.
17325
+ synthetics_private_location_read: View, search, and use Synthetics private
17326
+ locations.
16556
17327
  synthetics_private_location_write: Create and delete private locations
16557
- as well as seeing the associated installation guidelines.
16558
- synthetics_read: List and view configured Synthetic tests.
17328
+ in addition to having access to the associated installation guidelines.
17329
+ synthetics_read: List and view configured Synthetic tests and test results.
16559
17330
  synthetics_write: Create, edit, and delete Synthetic tests.
16560
17331
  timeseries_query: Query Timeseries data.
16561
17332
  usage_read: View your organization's usage and usage attribution.
@@ -17110,6 +17881,7 @@ paths:
17110
17881
  type: safe
17111
17882
  /api/v1/daily_custom_reports:
17112
17883
  get:
17884
+ deprecated: true
17113
17885
  description: Get daily custom reports.
17114
17886
  operationId: GetDailyCustomReports
17115
17887
  parameters:
@@ -17167,7 +17939,7 @@ paths:
17167
17939
  summary: Get the list of available daily custom reports
17168
17940
  tags:
17169
17941
  - Usage Metering
17170
- x-menu-order: 20
17942
+ x-menu-order: 40
17171
17943
  x-undo:
17172
17944
  type: safe
17173
17945
  x-unstable: '**Note**: This endpoint is in public beta.
@@ -17175,6 +17947,7 @@ paths:
17175
17947
  If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
17176
17948
  /api/v1/daily_custom_reports/{report_id}:
17177
17949
  get:
17950
+ deprecated: true
17178
17951
  description: Get specified daily custom reports.
17179
17952
  operationId: GetSpecifiedDailyCustomReports
17180
17953
  parameters:
@@ -17217,7 +17990,7 @@ paths:
17217
17990
  summary: Get specified daily custom reports
17218
17991
  tags:
17219
17992
  - Usage Metering
17220
- x-menu-order: 21
17993
+ x-menu-order: 41
17221
17994
  x-undo:
17222
17995
  type: safe
17223
17996
  x-unstable: '**Note**: This endpoint is in public beta.
@@ -17820,6 +18593,74 @@ paths:
17820
18593
  x-menu-order: 6
17821
18594
  x-undo:
17822
18595
  type: idempotent
18596
+ /api/v1/distribution_points:
18597
+ post:
18598
+ description: "The distribution points end-point allows you to post distribution
18599
+ data that can be graphed on Datadog\u2019s dashboards."
18600
+ operationId: SubmitDistributionPoints
18601
+ parameters:
18602
+ - description: HTTP header used to compress the media-type.
18603
+ in: header
18604
+ name: Content-Encoding
18605
+ required: false
18606
+ schema:
18607
+ $ref: '#/components/schemas/DistributionPointsContentEncoding'
18608
+ requestBody:
18609
+ content:
18610
+ text/json:
18611
+ examples:
18612
+ dynamic-points:
18613
+ description: "Post time-series data that can be graphed on Datadog\u2019s
18614
+ dashboards."
18615
+ externalValue: examples/metrics/distribution-points.json.sh
18616
+ summary: Dynamic Points
18617
+ x-variables:
18618
+ NOW: $(date +%s)
18619
+ schema:
18620
+ $ref: '#/components/schemas/DistributionPointsPayload'
18621
+ required: true
18622
+ responses:
18623
+ '202':
18624
+ content:
18625
+ text/json:
18626
+ schema:
18627
+ $ref: '#/components/schemas/IntakePayloadAccepted'
18628
+ description: Payload accepted
18629
+ '400':
18630
+ content:
18631
+ text/json:
18632
+ schema:
18633
+ $ref: '#/components/schemas/APIErrorResponse'
18634
+ description: Bad Request
18635
+ '403':
18636
+ content:
18637
+ text/json:
18638
+ schema:
18639
+ $ref: '#/components/schemas/APIErrorResponse'
18640
+ description: Authentication error
18641
+ '408':
18642
+ content:
18643
+ text/json:
18644
+ schema:
18645
+ $ref: '#/components/schemas/APIErrorResponse'
18646
+ description: Request timeout
18647
+ '413':
18648
+ content:
18649
+ text/json:
18650
+ schema:
18651
+ $ref: '#/components/schemas/APIErrorResponse'
18652
+ description: Payload too large
18653
+ '429':
18654
+ $ref: '#/components/responses/TooManyRequestsResponse'
18655
+ security:
18656
+ - apiKeyAuth: []
18657
+ summary: Submit distribution points
18658
+ tags:
18659
+ - Metrics
18660
+ x-codegen-request-body-name: body
18661
+ x-menu-order: 1
18662
+ x-undo:
18663
+ type: safe
17823
18664
  /api/v1/downtime:
17824
18665
  get:
17825
18666
  description: Get all scheduled downtimes.
@@ -18217,7 +19058,7 @@ paths:
18217
19058
  appKeyAuth: []
18218
19059
  - AuthZ:
18219
19060
  - events_read
18220
- summary: Query the event stream
19061
+ summary: Get a list of events
18221
19062
  tags:
18222
19063
  - Events
18223
19064
  x-menu-order: 1
@@ -18355,6 +19196,22 @@ paths:
18355
19196
  required: false
18356
19197
  schema:
18357
19198
  type: string
19199
+ - description: The height of the graph. If no height is specified, the graph's
19200
+ original height is used.
19201
+ in: query
19202
+ name: height
19203
+ required: false
19204
+ schema:
19205
+ format: int64
19206
+ type: integer
19207
+ - description: The width of the graph. If no width is specified, the graph's
19208
+ original width is used.
19209
+ in: query
19210
+ name: width
19211
+ required: false
19212
+ schema:
19213
+ format: int64
19214
+ type: integer
18358
19215
  responses:
18359
19216
  '200':
18360
19217
  content:
@@ -21386,19 +22243,19 @@ paths:
21386
22243
  Example: `"check".over(tags).last(count).by(group).count_by_status()`
21387
22244
 
21388
22245
 
21389
- - **`check`** name of the check, for example `datadog.agent.up`
22246
+ - `check` name of the check, for example `datadog.agent.up`
21390
22247
 
21391
- - **`tags`** one or more quoted tags (comma-separated), or "*". for example:
21392
- `.over("env:prod", "role:db")`; **`over`** cannot be blank.
22248
+ - `tags` one or more quoted tags (comma-separated), or "*". for example: `.over("env:prod",
22249
+ "role:db")`; `over` cannot be blank.
21393
22250
 
21394
- - **`count`** must be at greater than or equal to your max threshold (defined
22251
+ - `count` must be at greater than or equal to your max threshold (defined
21395
22252
  in the `options`). It is limited to 100.
21396
22253
 
21397
22254
  For example, if you''ve specified to notify on 1 critical, 3 ok, and 2 warn
21398
22255
  statuses, `count` should be at least 3.
21399
22256
 
21400
- - **`group`** must be specified for check monitors. Per-check grouping is
21401
- already explicitly known for some service checks.
22257
+ - `group` must be specified for check monitors. Per-check grouping is already
22258
+ explicitly known for some service checks.
21402
22259
 
21403
22260
  For example, Postgres integration monitors are tagged by `db`, `host`, and
21404
22261
  `port`, and Network monitors by `host`, `instance`, and `url`. See [Service
@@ -21413,28 +22270,28 @@ paths:
21413
22270
  "string query"'').rollup("count").last("1h")"`
21414
22271
 
21415
22272
 
21416
- - **`event`**, the event query string:
22273
+ - `event`, the event query string:
21417
22274
 
21418
- - **`string_query`** free text query to match against event title and text.
22275
+ - `string_query` free text query to match against event title and text.
21419
22276
 
21420
- - **`sources`** event sources (comma-separated).
22277
+ - `sources` event sources (comma-separated).
21421
22278
 
21422
- - **`status`** event statuses (comma-separated). Valid options: error, warn,
21423
- and info.
22279
+ - `status` event statuses (comma-separated). Valid options: error, warn, and
22280
+ info.
21424
22281
 
21425
- - **`priority`** event priorities (comma-separated). Valid options: low, normal,
22282
+ - `priority` event priorities (comma-separated). Valid options: low, normal,
21426
22283
  all.
21427
22284
 
21428
- - **`host`** event reporting host (comma-separated).
22285
+ - `host` event reporting host (comma-separated).
21429
22286
 
21430
- - **`tags`** event tags (comma-separated).
22287
+ - `tags` event tags (comma-separated).
21431
22288
 
21432
- - **`excluded_tags`** excluded event tags (comma-separated).
22289
+ - `excluded_tags` excluded event tags (comma-separated).
21433
22290
 
21434
- - **`rollup`** the stats roll-up method. `count` is the only supported method
22291
+ - `rollup` the stats roll-up method. `count` is the only supported method
21435
22292
  now.
21436
22293
 
21437
- - **`last`** the timeframe to roll up the counts. Examples: 45m, 4h. Supported
22294
+ - `last` the timeframe to roll up the counts. Examples: 45m, 4h. Supported
21438
22295
  timeframes: m, h and d. This value should not exceed 48 hours.
21439
22296
 
21440
22297
 
@@ -21449,19 +22306,18 @@ paths:
21449
22306
  operator #`
21450
22307
 
21451
22308
 
21452
- - **`query`** The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
22309
+ - `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
21453
22310
 
21454
- - **`rollup_method`** The stats roll-up method - supports `count`, `avg` and
21455
- `cardinality`.
22311
+ - `rollup_method` The stats roll-up method - supports `count`, `avg` and `cardinality`.
21456
22312
 
21457
- - **`measure`** For `avg` and cardinality `rollup_method` - specify the measure
22313
+ - `measure` For `avg` and cardinality `rollup_method` - specify the measure
21458
22314
  or the facet name you want to use.
21459
22315
 
21460
- - **`time_window`** #m (between 1 and 2880), #h (between 1 and 48).
22316
+ - `time_window` #m (between 1 and 2880), #h (between 1 and 48).
21461
22317
 
21462
- - **`operator`** `<`, `<=`, `>`, `>=`, `==`, or `!=`.
22318
+ - `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
21463
22319
 
21464
- - **`#`** an integer or decimal number used to set the threshold.
22320
+ - `#` an integer or decimal number used to set the threshold.
21465
22321
 
21466
22322
 
21467
22323
  **Process Alert Query**
@@ -21471,19 +22327,19 @@ paths:
21471
22327
  #`
21472
22328
 
21473
22329
 
21474
- - **`search`** free text search string for querying processes.
22330
+ - `search` free text search string for querying processes.
21475
22331
 
21476
22332
  Matching processes match results on the [Live Processes](https://docs.datadoghq.com/infrastructure/process/?tab=linuxwindows)
21477
22333
  page.
21478
22334
 
21479
- - **`tags`** one or more tags (comma-separated)
22335
+ - `tags` one or more tags (comma-separated)
21480
22336
 
21481
- - **`timeframe`** the timeframe to roll up the counts. Examples: 10m, 4h.
21482
- Supported timeframes: s, m, h and d
22337
+ - `timeframe` the timeframe to roll up the counts. Examples: 10m, 4h. Supported
22338
+ timeframes: s, m, h and d
21483
22339
 
21484
- - **`operator`** <, <=, >, >=, ==, or !=
22340
+ - `operator` <, <=, >, >=, ==, or !=
21485
22341
 
21486
- - **`#`** an integer or decimal number used to set the threshold
22342
+ - `#` an integer or decimal number used to set the threshold
21487
22343
 
21488
22344
 
21489
22345
  **Logs Alert Query**
@@ -21493,22 +22349,21 @@ paths:
21493
22349
  operator #`
21494
22350
 
21495
22351
 
21496
- - **`query`** The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
22352
+ - `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
21497
22353
 
21498
- - **`index_name`** For multi-index organizations, the log index in which the
21499
- request is performed.
22354
+ - `index_name` For multi-index organizations, the log index in which the request
22355
+ is performed.
21500
22356
 
21501
- - **`rollup_method`** The stats roll-up method - supports `count`, `avg` and
21502
- `cardinality`.
22357
+ - `rollup_method` The stats roll-up method - supports `count`, `avg` and `cardinality`.
21503
22358
 
21504
- - **`measure`** For `avg` and cardinality `rollup_method` - specify the measure
22359
+ - `measure` For `avg` and cardinality `rollup_method` - specify the measure
21505
22360
  or the facet name you want to use.
21506
22361
 
21507
- - **`time_window`** #m (between 1 and 2880), #h (between 1 and 48).
22362
+ - `time_window` #m (between 1 and 2880), #h (between 1 and 48).
21508
22363
 
21509
- - **`operator`** `<`, `<=`, `>`, `>=`, `==`, or `!=`.
22364
+ - `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
21510
22365
 
21511
- - **`#`** an integer or decimal number used to set the threshold.
22366
+ - `#` an integer or decimal number used to set the threshold.
21512
22367
 
21513
22368
 
21514
22369
  **Composite Query**
@@ -21518,16 +22373,16 @@ paths:
21518
22373
  monitors
21519
22374
 
21520
22375
 
21521
- * **`name`** [*required*, *default* = **dynamic, based on query**]: The name
21522
- of the alert.
22376
+ * `name` [*required*, *default* = **dynamic, based on query**]: The name of
22377
+ the alert.
21523
22378
 
21524
- * **`message`** [*required*, *default* = **dynamic, based on query**]: A message
22379
+ * `message` [*required*, *default* = **dynamic, based on query**]: A message
21525
22380
  to include with notifications for this monitor.
21526
22381
 
21527
22382
  Email notifications can be sent to specific users by using the same ''@username''
21528
22383
  notation as events.
21529
22384
 
21530
- * **`tags`** [*optional*, *default* = **empty list**]: A list of tags to associate
22385
+ * `tags` [*optional*, *default* = **empty list**]: A list of tags to associate
21531
22386
  with your monitor.
21532
22387
 
21533
22388
  When getting all monitor details via the API, use the `monitor_tags` argument
@@ -21543,13 +22398,13 @@ paths:
21543
22398
  Example: `error_budget("slo_id").over("time_window") operator #`
21544
22399
 
21545
22400
 
21546
- - **`slo_id`**: The alphanumeric SLO ID of the SLO you are configuring the
21547
- alert for.
22401
+ - `slo_id`: The alphanumeric SLO ID of the SLO you are configuring the alert
22402
+ for.
21548
22403
 
21549
- - **`time_window`**: The time window of the SLO target you wish to alert on.
21550
- Valid options: `7d`, `30d`, `90d`.
22404
+ - `time_window`: The time window of the SLO target you wish to alert on. Valid
22405
+ options: `7d`, `30d`, `90d`.
21551
22406
 
21552
- - **`operator`**: `>=` or `>`
22407
+ - `operator`: `>=` or `>`
21553
22408
 
21554
22409
 
21555
22410
  **Audit Alert Query**
@@ -21559,19 +22414,18 @@ paths:
21559
22414
  operator #`
21560
22415
 
21561
22416
 
21562
- - **`query`** The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
22417
+ - `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
21563
22418
 
21564
- - **`rollup_method`** The stats roll-up method - supports `count`, `avg` and
21565
- `cardinality`.
22419
+ - `rollup_method` The stats roll-up method - supports `count`, `avg` and `cardinality`.
21566
22420
 
21567
- - **`measure`** For `avg` and cardinality `rollup_method` - specify the measure
22421
+ - `measure` For `avg` and cardinality `rollup_method` - specify the measure
21568
22422
  or the facet name you want to use.
21569
22423
 
21570
- - **`time_window`** #m (between 1 and 2880), #h (between 1 and 48).
22424
+ - `time_window` #m (between 1 and 2880), #h (between 1 and 48).
21571
22425
 
21572
- - **`operator`** `<`, `<=`, `>`, `>=`, `==`, or `!=`.
22426
+ - `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
21573
22427
 
21574
- - **`#`** an integer or decimal number used to set the threshold.
22428
+ - `#` an integer or decimal number used to set the threshold.
21575
22429
 
21576
22430
 
21577
22431
  **NOTE** Only available on US1-FED and in closed beta on US1, EU, US3, and
@@ -21585,24 +22439,50 @@ paths:
21585
22439
  operator #`
21586
22440
 
21587
22441
 
21588
- - **`query`** The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
22442
+ - `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
21589
22443
 
21590
- - **`rollup_method`** The stats roll-up method - supports `count`, `avg`,
21591
- and `cardinality`.
22444
+ - `rollup_method` The stats roll-up method - supports `count`, `avg`, and
22445
+ `cardinality`.
21592
22446
 
21593
- - **`measure`** For `avg` and cardinality `rollup_method` - specify the measure
22447
+ - `measure` For `avg` and cardinality `rollup_method` - specify the measure
21594
22448
  or the facet name you want to use.
21595
22449
 
21596
- - **`time_window`** #m (between 1 and 2880), #h (between 1 and 48).
22450
+ - `time_window` #m (between 1 and 2880), #h (between 1 and 48).
21597
22451
 
21598
- - **`operator`** `<`, `<=`, `>`, `>=`, `==`, or `!=`.
22452
+ - `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
21599
22453
 
21600
- - **`#`** an integer or decimal number used to set the threshold.
22454
+ - `#` an integer or decimal number used to set the threshold.
21601
22455
 
21602
22456
 
21603
22457
  **NOTE** CI Pipeline monitors are in alpha on US1, EU, US3 and US5.
21604
22458
 
21605
22459
 
22460
+ **CI Tests Alert Query**
22461
+
22462
+
22463
+ Example: `ci-tests(query).rollup(rollup_method[, measure]).last(time_window)
22464
+ operator #`
22465
+
22466
+
22467
+ - `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
22468
+
22469
+ - `rollup_method` The stats roll-up method - supports `count`, `avg`, and
22470
+ `cardinality`.
22471
+
22472
+ - `measure` For `avg` and cardinality `rollup_method` - specify the measure
22473
+ or the facet name you want to use.
22474
+
22475
+ - `time_window` #m (between 1 and 2880), #h (between 1 and 48).
22476
+
22477
+ - `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
22478
+
22479
+ - `#` an integer or decimal number used to set the threshold.
22480
+
22481
+
22482
+ **NOTE** CI Test monitors are available only in closed beta on US1, EU, US3
22483
+ and US5.
22484
+
22485
+
21606
22486
  **Error Tracking Alert Query**
21607
22487
 
21608
22488
 
@@ -21613,19 +22493,19 @@ paths:
21613
22493
  measure]).last(time_window) operator #`
21614
22494
 
21615
22495
 
21616
- - **`query`** The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
22496
+ - `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
21617
22497
 
21618
- - **`rollup_method`** The stats roll-up method - supports `count`, `avg`,
21619
- and `cardinality`.
22498
+ - `rollup_method` The stats roll-up method - supports `count`, `avg`, and
22499
+ `cardinality`.
21620
22500
 
21621
- - **`measure`** For `avg` and cardinality `rollup_method` - specify the measure
22501
+ - `measure` For `avg` and cardinality `rollup_method` - specify the measure
21622
22502
  or the facet name you want to use.
21623
22503
 
21624
- - **`time_window`** #m (between 1 and 2880), #h (between 1 and 48).
22504
+ - `time_window` #m (between 1 and 2880), #h (between 1 and 48).
21625
22505
 
21626
- - **`operator`** `<`, `<=`, `>`, `>=`, `==`, or `!=`.
22506
+ - `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
21627
22507
 
21628
- - **`#`** an integer or decimal number used to set the threshold.'
22508
+ - `#` an integer or decimal number used to set the threshold.'
21629
22509
  operationId: CreateMonitor
21630
22510
  requestBody:
21631
22511
  content:
@@ -22257,6 +23137,7 @@ paths:
22257
23137
  type: idempotent
22258
23138
  /api/v1/monthly_custom_reports:
22259
23139
  get:
23140
+ deprecated: true
22260
23141
  description: Get monthly custom reports.
22261
23142
  operationId: GetMonthlyCustomReports
22262
23143
  parameters:
@@ -22314,7 +23195,7 @@ paths:
22314
23195
  summary: Get the list of available monthly custom reports
22315
23196
  tags:
22316
23197
  - Usage Metering
22317
- x-menu-order: 22
23198
+ x-menu-order: 42
22318
23199
  x-undo:
22319
23200
  type: safe
22320
23201
  x-unstable: '**Note**: This endpoint is in public beta.
@@ -22322,6 +23203,7 @@ paths:
22322
23203
  If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
22323
23204
  /api/v1/monthly_custom_reports/{report_id}:
22324
23205
  get:
23206
+ deprecated: true
22325
23207
  description: Get specified monthly custom reports.
22326
23208
  operationId: GetSpecifiedMonthlyCustomReports
22327
23209
  parameters:
@@ -22370,7 +23252,7 @@ paths:
22370
23252
  summary: Get specified monthly custom reports
22371
23253
  tags:
22372
23254
  - Usage Metering
22373
- x-menu-order: 23
23255
+ x-menu-order: 43
22374
23256
  x-undo:
22375
23257
  type: safe
22376
23258
  x-unstable: '**Note**: This endpoint is in public beta.
@@ -22764,7 +23646,7 @@ paths:
22764
23646
  type: idempotent
22765
23647
  /api/v1/org:
22766
23648
  get:
22767
- description: List your managed organizations.
23649
+ description: This endpoint returns data on your top-level organization.
22768
23650
  operationId: ListOrgs
22769
23651
  responses:
22770
23652
  '200':
@@ -22927,15 +23809,56 @@ paths:
22927
23809
  x-menu-order: 4
22928
23810
  x-undo:
22929
23811
  type: idempotent
22930
- /api/v1/org/{public_id}/idp_metadata:
23812
+ /api/v1/org/{public_id}/downgrade:
22931
23813
  post:
22932
- description: 'There are a couple of options for updating the Identity Provider
22933
- (IdP)
22934
-
22935
- metadata from your SAML IdP.
22936
-
22937
-
22938
- * **Multipart Form-Data**: Post the IdP metadata file using a form post.
23814
+ description: Only available for MSP customers. Removes a child organization
23815
+ from the hierarchy of the master organization and places the child organization
23816
+ on a 30-day trial.
23817
+ operationId: DowngradeOrg
23818
+ parameters:
23819
+ - description: The `public_id` of the organization you are operating within.
23820
+ in: path
23821
+ name: public_id
23822
+ required: true
23823
+ schema:
23824
+ example: abc123
23825
+ type: string
23826
+ responses:
23827
+ '200':
23828
+ content:
23829
+ application/json:
23830
+ schema:
23831
+ $ref: '#/components/schemas/OrgDowngradedResponse'
23832
+ description: OK
23833
+ '400':
23834
+ content:
23835
+ application/json:
23836
+ schema:
23837
+ $ref: '#/components/schemas/APIErrorResponse'
23838
+ description: Bad Request
23839
+ '403':
23840
+ content:
23841
+ application/json:
23842
+ schema:
23843
+ $ref: '#/components/schemas/APIErrorResponse'
23844
+ description: Forbidden
23845
+ '429':
23846
+ $ref: '#/components/responses/TooManyRequestsResponse'
23847
+ summary: Spin-off Child Organization
23848
+ tags:
23849
+ - Organizations
23850
+ x-menu-order: 6
23851
+ x-undo:
23852
+ type: unsafe
23853
+ /api/v1/org/{public_id}/idp_metadata:
23854
+ post:
23855
+ description: 'There are a couple of options for updating the Identity Provider
23856
+ (IdP)
23857
+
23858
+ metadata from your SAML IdP.
23859
+
23860
+
23861
+ * **Multipart Form-Data**: Post the IdP metadata file using a form post.
22939
23862
 
22940
23863
 
22941
23864
  * **XML Body:** Post the IdP metadata file as the body of the request.'
@@ -23088,6 +24011,146 @@ paths:
23088
24011
  x-menu-order: 4
23089
24012
  x-undo:
23090
24013
  type: safe
24014
+ /api/v1/security_analytics/signals/{signal_id}/add_to_incident:
24015
+ patch:
24016
+ description: Add a security signal to an incident. This makes it possible to
24017
+ search for signals by incident within the signal explorer and to view the
24018
+ signals on the incident timeline.
24019
+ operationId: AddSecurityMonitoringSignalToIncident
24020
+ parameters:
24021
+ - $ref: '#/components/parameters/SignalID'
24022
+ requestBody:
24023
+ content:
24024
+ application/json:
24025
+ schema:
24026
+ $ref: '#/components/schemas/AddSignalToIncidentRequest'
24027
+ description: Attributes describing the signal update.
24028
+ required: true
24029
+ responses:
24030
+ '200':
24031
+ content:
24032
+ application/json:
24033
+ schema:
24034
+ $ref: '#/components/schemas/SuccessfulSignalUpdateResponse'
24035
+ description: OK
24036
+ '400':
24037
+ content:
24038
+ application/json:
24039
+ schema:
24040
+ $ref: '#/components/schemas/APIErrorResponse'
24041
+ description: Bad Request
24042
+ '403':
24043
+ content:
24044
+ application/json:
24045
+ schema:
24046
+ $ref: '#/components/schemas/APIErrorResponse'
24047
+ description: Forbidden
24048
+ '404':
24049
+ content:
24050
+ application/json:
24051
+ schema:
24052
+ $ref: '#/components/schemas/APIErrorResponse'
24053
+ description: Not Found
24054
+ '429':
24055
+ $ref: '#/components/responses/TooManyRequestsResponse'
24056
+ summary: Add a security signal to an incident
24057
+ tags:
24058
+ - Security Monitoring
24059
+ x-codegen-request-body-name: body
24060
+ x-undo:
24061
+ type: idempotent
24062
+ /api/v1/security_analytics/signals/{signal_id}/assignee:
24063
+ patch:
24064
+ description: Modify the triage assignee of a security signal.
24065
+ operationId: EditSecurityMonitoringSignalAssignee
24066
+ parameters:
24067
+ - $ref: '#/components/parameters/SignalID'
24068
+ requestBody:
24069
+ content:
24070
+ application/json:
24071
+ schema:
24072
+ $ref: '#/components/schemas/SignalAssigneeUpdateRequest'
24073
+ description: Attributes describing the signal update.
24074
+ required: true
24075
+ responses:
24076
+ '200':
24077
+ content:
24078
+ application/json:
24079
+ schema:
24080
+ $ref: '#/components/schemas/SuccessfulSignalUpdateResponse'
24081
+ description: OK
24082
+ '400':
24083
+ content:
24084
+ application/json:
24085
+ schema:
24086
+ $ref: '#/components/schemas/APIErrorResponse'
24087
+ description: Bad Request
24088
+ '403':
24089
+ content:
24090
+ application/json:
24091
+ schema:
24092
+ $ref: '#/components/schemas/APIErrorResponse'
24093
+ description: Forbidden
24094
+ '404':
24095
+ content:
24096
+ application/json:
24097
+ schema:
24098
+ $ref: '#/components/schemas/APIErrorResponse'
24099
+ description: Not Found
24100
+ '429':
24101
+ $ref: '#/components/responses/TooManyRequestsResponse'
24102
+ summary: Modify the triage assignee of a security signal
24103
+ tags:
24104
+ - Security Monitoring
24105
+ x-codegen-request-body-name: body
24106
+ x-undo:
24107
+ type: idempotent
24108
+ /api/v1/security_analytics/signals/{signal_id}/state:
24109
+ patch:
24110
+ description: Change the triage state of a security signal.
24111
+ operationId: EditSecurityMonitoringSignalState
24112
+ parameters:
24113
+ - $ref: '#/components/parameters/SignalID'
24114
+ requestBody:
24115
+ content:
24116
+ application/json:
24117
+ schema:
24118
+ $ref: '#/components/schemas/SignalStateUpdateRequest'
24119
+ description: Attributes describing the signal update.
24120
+ required: true
24121
+ responses:
24122
+ '200':
24123
+ content:
24124
+ application/json:
24125
+ schema:
24126
+ $ref: '#/components/schemas/SuccessfulSignalUpdateResponse'
24127
+ description: OK
24128
+ '400':
24129
+ content:
24130
+ application/json:
24131
+ schema:
24132
+ $ref: '#/components/schemas/APIErrorResponse'
24133
+ description: Bad Request
24134
+ '403':
24135
+ content:
24136
+ application/json:
24137
+ schema:
24138
+ $ref: '#/components/schemas/APIErrorResponse'
24139
+ description: Forbidden
24140
+ '404':
24141
+ content:
24142
+ application/json:
24143
+ schema:
24144
+ $ref: '#/components/schemas/APIErrorResponse'
24145
+ description: Not Found
24146
+ '429':
24147
+ $ref: '#/components/responses/TooManyRequestsResponse'
24148
+ summary: Change the triage state of a security signal
24149
+ tags:
24150
+ - Security Monitoring
24151
+ x-codegen-request-body-name: body
24152
+ x-undo:
24153
+ type: idempotent
23091
24154
  /api/v1/series:
23092
24155
  post:
23093
24156
  description: "The metrics end-point allows you to post time-series data that
@@ -23095,7 +24158,7 @@ paths:
23095
24158
  3.2 megabytes (3200000 bytes). Compressed payloads must have a decompressed
23096
24159
  size of less than 62 megabytes (62914560 bytes).\n\nIf you\u2019re submitting
23097
24160
  metrics directly to the Datadog API without using DogStatsD, expect:\n\n-
23098
- 64 bits for the timestamp\n- 32 bits for the value\n- 40 bytes for the metric
24161
+ 64 bits for the timestamp\n- 64 bits for the value\n- 40 bytes for the metric
23099
24162
  names\n- 50 bytes for the timeseries\n- The full payload is approximately
23100
24163
  100 bytes. However, with the DogStatsD API,\ncompression is applied, which
23101
24164
  reduces the payload size."
@@ -23245,10 +24308,6 @@ paths:
23245
24308
  description: Not Found
23246
24309
  '429':
23247
24310
  $ref: '#/components/responses/TooManyRequestsResponse'
23248
- security:
23249
- - apiKeyAuth: []
23250
- appKeyAuth: []
23251
- - AuthZ: []
23252
24311
  summary: Get all SLOs
23253
24312
  tags:
23254
24313
  - Service Level Objectives
@@ -23428,9 +24487,6 @@ paths:
23428
24487
  x-menu-order: 2
23429
24488
  x-undo:
23430
24489
  type: safe
23431
- x-unstable: '**Note**: This endpoint is in public beta.
23432
-
23433
- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
23434
24490
  post:
23435
24491
  description: Create an SLO Correction.
23436
24492
  operationId: CreateSLOCorrection
@@ -23489,9 +24545,6 @@ paths:
23489
24545
  - name: slo_correction_id
23490
24546
  source: data.id
23491
24547
  type: unsafe
23492
- x-unstable: '**Note**: This endpoint is in public beta.
23493
-
23494
- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
23495
24548
  /api/v1/slo/correction/{slo_correction_id}:
23496
24549
  delete:
23497
24550
  description: Permanently delete the specified SLO correction object.
@@ -23526,9 +24579,6 @@ paths:
23526
24579
  x-menu-order: 5
23527
24580
  x-undo:
23528
24581
  type: idempotent
23529
- x-unstable: '**Note**: This endpoint is in public beta.
23530
-
23531
- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
23532
24582
  get:
23533
24583
  description: Get an SLO correction.
23534
24584
  operationId: GetSLOCorrection
@@ -23566,11 +24616,8 @@ paths:
23566
24616
  x-menu-order: 3
23567
24617
  x-undo:
23568
24618
  type: safe
23569
- x-unstable: '**Note**: This endpoint is in public beta.
23570
-
23571
- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
23572
24619
  patch:
23573
- description: Update the specified SLO correction object object.
24620
+ description: Update the specified SLO correction object.
23574
24621
  operationId: UpdateSLOCorrection
23575
24622
  parameters:
23576
24623
  - description: The ID of the SLO correction object.
@@ -23620,7 +24667,92 @@ paths:
23620
24667
  x-menu-order: 4
23621
24668
  x-undo:
23622
24669
  type: idempotent
23623
- x-unstable: '**Note**: This endpoint is in public beta.
24670
+ /api/v1/slo/search:
24671
+ get:
24672
+ description: Get a list of service level objective objects for your organization.
24673
+ operationId: SearchSLO
24674
+ parameters:
24675
+ - description: The query string to filter results based on SLO names.
24676
+ in: query
24677
+ name: query
24678
+ required: false
24679
+ schema:
24680
+ type: string
24681
+ - description: The number of files to return in the response `[default=10]`.
24682
+ in: query
24683
+ name: page[size]
24684
+ required: false
24685
+ schema:
24686
+ format: int64
24687
+ type: integer
24688
+ - description: The identifier of the first page to return. This parameter is
24689
+ used for the pagination feature `[default=0]`.
24690
+ in: query
24691
+ name: page[number]
24692
+ required: false
24693
+ schema:
24694
+ format: int64
24695
+ type: integer
24696
+ responses:
24697
+ '200':
24698
+ content:
24699
+ application/json:
24700
+ schema:
24701
+ $ref: '#/components/schemas/SearchSLOResponse'
24702
+ description: OK
24703
+ '400':
24704
+ content:
24705
+ application/json:
24706
+ schema:
24707
+ $ref: '#/components/schemas/APIErrorResponse'
24708
+ description: Bad Request
24709
+ '403':
24710
+ content:
24711
+ application/json:
24712
+ schema:
24713
+ $ref: '#/components/schemas/APIErrorResponse'
24714
+ description: Forbidden
24715
+ '429':
24716
+ $ref: '#/components/responses/TooManyRequestsResponse'
24717
+ servers:
24718
+ - url: https://{subdomain}.{site}
24719
+ variables:
24720
+ site:
24721
+ default: datadoghq.com
24722
+ description: The regional site for Datadog customers.
24723
+ enum:
24724
+ - datadoghq.com
24725
+ - us3.datadoghq.com
24726
+ - us5.datadoghq.com
24727
+ - ddog-gov.com
24728
+ subdomain:
24729
+ default: api
24730
+ description: The subdomain where the API is deployed.
24731
+ - url: '{protocol}://{name}'
24732
+ variables:
24733
+ name:
24734
+ default: api.datadoghq.com
24735
+ description: Full site DNS name.
24736
+ protocol:
24737
+ default: https
24738
+ description: The protocol for accessing the API.
24739
+ - url: https://{subdomain}.{site}
24740
+ variables:
24741
+ site:
24742
+ default: datadoghq.com
24743
+ description: Any Datadog deployment.
24744
+ subdomain:
24745
+ default: api
24746
+ description: The subdomain where the API is deployed.
24747
+ summary: Search for SLOs
24748
+ tags:
24749
+ - Service Level Objectives
24750
+ x-menu-order: 1
24751
+ x-undo:
24752
+ type: safe
24753
+ x-unstable: '**Note**: Note: This endpoint is in public beta for US regions.
24754
+
24755
+ It is not currently supported in the EU region.
23624
24756
 
23625
24757
  If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
23626
24758
  /api/v1/slo/{slo_id}:
@@ -23717,10 +24849,6 @@ paths:
23717
24849
  description: Not found
23718
24850
  '429':
23719
24851
  $ref: '#/components/responses/TooManyRequestsResponse'
23720
- security:
23721
- - apiKeyAuth: []
23722
- appKeyAuth: []
23723
- - AuthZ: []
23724
24852
  summary: Get an SLO's details
23725
24853
  tags:
23726
24854
  - Service Level Objectives
@@ -23816,19 +24944,12 @@ paths:
23816
24944
  description: Not Found
23817
24945
  '429':
23818
24946
  $ref: '#/components/responses/TooManyRequestsResponse'
23819
- security:
23820
- - apiKeyAuth: []
23821
- appKeyAuth: []
23822
- - AuthZ: []
23823
24947
  summary: Get Corrections For an SLO
23824
24948
  tags:
23825
24949
  - Service Level Objectives
23826
24950
  x-menu-order: 6
23827
24951
  x-undo:
23828
24952
  type: safe
23829
- x-unstable: '**Note**: This endpoint is in public beta.
23830
-
23831
- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
23832
24953
  /api/v1/slo/{slo_id}/history:
23833
24954
  get:
23834
24955
  description: "Get a specific SLO\u2019s history, regardless of its SLO type.\n\nThe
@@ -23907,10 +25028,6 @@ paths:
23907
25028
  description: Not Found
23908
25029
  '429':
23909
25030
  $ref: '#/components/responses/TooManyRequestsResponse'
23910
- security:
23911
- - apiKeyAuth: []
23912
- appKeyAuth: []
23913
- - AuthZ: []
23914
25031
  summary: Get an SLO's history
23915
25032
  tags:
23916
25033
  - Service Level Objectives
@@ -23954,7 +25071,7 @@ paths:
23954
25071
  summary: Get details of batch
23955
25072
  tags:
23956
25073
  - Synthetics
23957
- x-menu-order: 27
25074
+ x-menu-order: 15
23958
25075
  x-undo:
23959
25076
  type: safe
23960
25077
  /api/v1/synthetics/locations:
@@ -23980,7 +25097,7 @@ paths:
23980
25097
  summary: Get all locations (public and private)
23981
25098
  tags:
23982
25099
  - Synthetics
23983
- x-menu-order: 24
25100
+ x-menu-order: 25
23984
25101
  x-undo:
23985
25102
  type: safe
23986
25103
  /api/v1/synthetics/private-locations:
@@ -24024,7 +25141,7 @@ paths:
24024
25141
  tags:
24025
25142
  - Synthetics
24026
25143
  x-codegen-request-body-name: body
24027
- x-menu-order: 21
25144
+ x-menu-order: 22
24028
25145
  x-undo:
24029
25146
  operationId: DeletePrivateLocation
24030
25147
  parameters:
@@ -24063,7 +25180,7 @@ paths:
24063
25180
  summary: Delete a private location
24064
25181
  tags:
24065
25182
  - Synthetics
24066
- x-menu-order: 25
25183
+ x-menu-order: 26
24067
25184
  x-undo:
24068
25185
  type: idempotent
24069
25186
  get:
@@ -24101,7 +25218,7 @@ paths:
24101
25218
  summary: Get a private location
24102
25219
  tags:
24103
25220
  - Synthetics
24104
- x-menu-order: 22
25221
+ x-menu-order: 23
24105
25222
  x-undo:
24106
25223
  type: safe
24107
25224
  put:
@@ -24147,7 +25264,7 @@ paths:
24147
25264
  tags:
24148
25265
  - Synthetics
24149
25266
  x-codegen-request-body-name: body
24150
- x-menu-order: 23
25267
+ x-menu-order: 24
24151
25268
  x-undo:
24152
25269
  type: idempotent
24153
25270
  /api/v1/synthetics/tests:
@@ -24824,7 +25941,7 @@ paths:
24824
25941
  tags:
24825
25942
  - Synthetics
24826
25943
  x-codegen-request-body-name: body
24827
- x-menu-order: 15
25944
+ x-menu-order: 16
24828
25945
  x-undo:
24829
25946
  type: idempotent
24830
25947
  /api/v1/synthetics/tests/trigger:
@@ -24952,7 +26069,7 @@ paths:
24952
26069
  summary: Get a test configuration
24953
26070
  tags:
24954
26071
  - Synthetics
24955
- x-menu-order: 26
26072
+ x-menu-order: 27
24956
26073
  x-undo:
24957
26074
  type: safe
24958
26075
  /api/v1/synthetics/tests/{public_id}/results:
@@ -25161,7 +26278,7 @@ paths:
25161
26278
  summary: Get all global variables
25162
26279
  tags:
25163
26280
  - Synthetics
25164
- x-menu-order: 16
26281
+ x-menu-order: 17
25165
26282
  x-undo:
25166
26283
  type: safe
25167
26284
  post:
@@ -25204,7 +26321,7 @@ paths:
25204
26321
  tags:
25205
26322
  - Synthetics
25206
26323
  x-codegen-request-body-name: body
25207
- x-menu-order: 17
26324
+ x-menu-order: 18
25208
26325
  x-undo:
25209
26326
  operationId: DeleteGlobalVariable
25210
26327
  parameters:
@@ -25253,7 +26370,7 @@ paths:
25253
26370
  summary: Delete a global variable
25254
26371
  tags:
25255
26372
  - Synthetics
25256
- x-menu-order: 20
26373
+ x-menu-order: 21
25257
26374
  x-undo:
25258
26375
  type: idempotent
25259
26376
  get:
@@ -25345,7 +26462,7 @@ paths:
25345
26462
  tags:
25346
26463
  - Synthetics
25347
26464
  x-codegen-request-body-name: body
25348
- x-menu-order: 18
26465
+ x-menu-order: 20
25349
26466
  x-undo:
25350
26467
  type: idempotent
25351
26468
  /api/v1/tags/hosts:
@@ -25601,7 +26718,10 @@ paths:
25601
26718
  type: idempotent
25602
26719
  /api/v1/usage/analyzed_logs:
25603
26720
  get:
25604
- description: Get hourly usage for analyzed logs (Security Monitoring).
26721
+ description: 'Get hourly usage for analyzed logs (Security Monitoring).
26722
+
26723
+ **Note:** hourly usage data for all products is now available in the [Get
26724
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
25605
26725
  operationId: GetUsageAnalyzedLogs
25606
26726
  parameters:
25607
26727
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -25655,12 +26775,13 @@ paths:
25655
26775
  summary: Get hourly usage for analyzed logs
25656
26776
  tags:
25657
26777
  - Usage Metering
25658
- x-menu-order: 17
26778
+ x-menu-order: 22
25659
26779
  x-undo:
25660
26780
  type: safe
25661
26781
  /api/v1/usage/attribution:
25662
26782
  get:
25663
- description: Get Usage Attribution.
26783
+ deprecated: true
26784
+ description: Get usage attribution.
25664
26785
  operationId: GetUsageAttribution
25665
26786
  parameters:
25666
26787
  - description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
@@ -25743,10 +26864,10 @@ paths:
25743
26864
  appKeyAuth: []
25744
26865
  - AuthZ:
25745
26866
  - usage_read
25746
- summary: Get Usage Attribution
26867
+ summary: Get usage attribution
25747
26868
  tags:
25748
26869
  - Usage Metering
25749
- x-menu-order: 29
26870
+ x-menu-order: 39
25750
26871
  x-undo:
25751
26872
  type: safe
25752
26873
  x-unstable: '**Note**: This endpoint is in public beta.
@@ -25754,7 +26875,10 @@ paths:
25754
26875
  If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
25755
26876
  /api/v1/usage/audit_logs:
25756
26877
  get:
25757
- description: Get hourly usage for audit logs.
26878
+ description: 'Get hourly usage for audit logs.
26879
+
26880
+ **Note:** hourly usage data for all products is now available in the [Get
26881
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
25758
26882
  operationId: GetUsageAuditLogs
25759
26883
  parameters:
25760
26884
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -25808,12 +26932,15 @@ paths:
25808
26932
  summary: Get hourly usage for audit logs
25809
26933
  tags:
25810
26934
  - Usage Metering
25811
- x-menu-order: 33
26935
+ x-menu-order: 28
25812
26936
  x-undo:
25813
26937
  type: safe
25814
26938
  /api/v1/usage/aws_lambda:
25815
26939
  get:
25816
- description: Get hourly usage for lambda.
26940
+ description: 'Get hourly usage for lambda.
26941
+
26942
+ **Note:** hourly usage data for all products is now available in the [Get
26943
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
25817
26944
  operationId: GetUsageLambda
25818
26945
  parameters:
25819
26946
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -25862,10 +26989,10 @@ paths:
25862
26989
  appKeyAuth: []
25863
26990
  - AuthZ:
25864
26991
  - usage_read
25865
- summary: Get hourly usage for Lambda
26992
+ summary: Get hourly usage for lambda
25866
26993
  tags:
25867
26994
  - Usage Metering
25868
- x-menu-order: 12
26995
+ x-menu-order: 18
25869
26996
  x-undo:
25870
26997
  type: safe
25871
26998
  /api/v1/usage/billable-summary:
@@ -25914,13 +27041,15 @@ paths:
25914
27041
  summary: Get billable usage across your account
25915
27042
  tags:
25916
27043
  - Usage Metering
25917
- x-menu-order: 19
27044
+ x-menu-order: 5
25918
27045
  x-undo:
25919
27046
  type: safe
25920
27047
  /api/v1/usage/ci-app:
25921
27048
  get:
25922
- description: Get hourly usage for CI Visibility (Tests, Pipeline, Combo, and
25923
- Spans).
27049
+ description: 'Get hourly usage for CI visibility (tests, pipeline, and spans).
27050
+
27051
+ **Note:** hourly usage data for all products is now available in the [Get
27052
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
25924
27053
  operationId: GetUsageCIApp
25925
27054
  parameters:
25926
27055
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -25971,15 +27100,18 @@ paths:
25971
27100
  appKeyAuth: []
25972
27101
  - AuthZ:
25973
27102
  - usage_read
25974
- summary: Get hourly usage for CI Visibility
27103
+ summary: Get hourly usage for CI visibility
25975
27104
  tags:
25976
27105
  - Usage Metering
25977
- x-menu-order: 38
27106
+ x-menu-order: 34
25978
27107
  x-undo:
25979
27108
  type: safe
25980
27109
  /api/v1/usage/cspm:
25981
27110
  get:
25982
- description: Get hourly usage for Cloud Security Posture Management (CSPM).
27111
+ description: 'Get hourly usage for cloud security posture management (CSPM).
27112
+
27113
+ **Note:** hourly usage data for all products is now available in the [Get
27114
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
25983
27115
  operationId: GetUsageCloudSecurityPostureManagement
25984
27116
  parameters:
25985
27117
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -26033,12 +27165,15 @@ paths:
26033
27165
  summary: Get hourly usage for CSPM
26034
27166
  tags:
26035
27167
  - Usage Metering
26036
- x-menu-order: 32
27168
+ x-menu-order: 27
26037
27169
  x-undo:
26038
27170
  type: safe
26039
27171
  /api/v1/usage/cws:
26040
27172
  get:
26041
- description: Get hourly usage for Cloud Workload Security.
27173
+ description: 'Get hourly usage for cloud workload security.
27174
+
27175
+ **Note:** hourly usage data for all products is now available in the [Get
27176
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26042
27177
  operationId: GetUsageCWS
26043
27178
  parameters:
26044
27179
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -26089,15 +27224,18 @@ paths:
26089
27224
  appKeyAuth: []
26090
27225
  - AuthZ:
26091
27226
  - usage_read
26092
- summary: Get hourly usage for Cloud Workload Security
27227
+ summary: Get hourly usage for cloud workload security
26093
27228
  tags:
26094
27229
  - Usage Metering
26095
- x-menu-order: 34
27230
+ x-menu-order: 29
26096
27231
  x-undo:
26097
27232
  type: safe
26098
27233
  /api/v1/usage/dbm:
26099
27234
  get:
26100
- description: Get hourly usage for Database Monitoring
27235
+ description: 'Get hourly usage for database monitoring
27236
+
27237
+ **Note:** hourly usage data for all products is now available in the [Get
27238
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26101
27239
  operationId: GetUsageDBM
26102
27240
  parameters:
26103
27241
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -26148,15 +27286,18 @@ paths:
26148
27286
  appKeyAuth: []
26149
27287
  - AuthZ:
26150
27288
  - usage_read
26151
- summary: Get hourly usage for Database Monitoring
27289
+ summary: Get hourly usage for database monitoring
26152
27290
  tags:
26153
27291
  - Usage Metering
26154
- x-menu-order: 35
27292
+ x-menu-order: 30
26155
27293
  x-undo:
26156
27294
  type: safe
26157
27295
  /api/v1/usage/fargate:
26158
27296
  get:
26159
- description: Get hourly usage for [Fargate](https://docs.datadoghq.com/integrations/ecs_fargate/).
27297
+ description: 'Get hourly usage for [Fargate](https://docs.datadoghq.com/integrations/ecs_fargate/).
27298
+
27299
+ **Note:** hourly usage data for all products is now available in the [Get
27300
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26160
27301
  operationId: GetUsageFargate
26161
27302
  parameters:
26162
27303
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -26208,12 +27349,15 @@ paths:
26208
27349
  summary: Get hourly usage for Fargate
26209
27350
  tags:
26210
27351
  - Usage Metering
26211
- x-menu-order: 11
27352
+ x-menu-order: 17
26212
27353
  x-undo:
26213
27354
  type: safe
26214
27355
  /api/v1/usage/hosts:
26215
27356
  get:
26216
- description: Get hourly usage for hosts and containers.
27357
+ description: 'Get hourly usage for hosts and containers.
27358
+
27359
+ **Note:** hourly usage data for all products is now available in the [Get
27360
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26217
27361
  operationId: GetUsageHosts
26218
27362
  parameters:
26219
27363
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -26265,12 +27409,12 @@ paths:
26265
27409
  summary: Get hourly usage for hosts and containers
26266
27410
  tags:
26267
27411
  - Usage Metering
26268
- x-menu-order: 1
27412
+ x-menu-order: 10
26269
27413
  x-undo:
26270
27414
  type: safe
26271
27415
  /api/v1/usage/hourly-attribution:
26272
27416
  get:
26273
- description: "Get Hourly Usage Attribution.\n\nThis API endpoint is paginated.
27417
+ description: "Get hourly usage attribution.\n\nThis API endpoint is paginated.
26274
27418
  To make sure you receive all records, check if the value of `next_record_id`
26275
27419
  is\nset in the response. If it is, make another request and pass `next_record_id`
26276
27420
  as a parameter.\nPseudo code example:\n\n```\nresponse := GetHourlyUsageAttribution(start_month)\ncursor
@@ -26321,6 +27465,13 @@ paths:
26321
27465
  required: false
26322
27466
  schema:
26323
27467
  type: string
27468
+ - description: Include child org usage in the response. Defaults to `true`.
27469
+ in: query
27470
+ name: include_descendants
27471
+ required: false
27472
+ schema:
27473
+ default: true
27474
+ type: boolean
26324
27475
  responses:
26325
27476
  '200':
26326
27477
  content:
@@ -26345,18 +27496,18 @@ paths:
26345
27496
  appKeyAuth: []
26346
27497
  - AuthZ:
26347
27498
  - usage_read
26348
- summary: Get Hourly Usage Attribution
27499
+ summary: Get hourly usage attribution
26349
27500
  tags:
26350
27501
  - Usage Metering
26351
- x-menu-order: 30
27502
+ x-menu-order: 2
26352
27503
  x-undo:
26353
27504
  type: safe
26354
- x-unstable: '**Note**: This endpoint is in public beta.
26355
-
26356
- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
26357
27505
  /api/v1/usage/incident-management:
26358
27506
  get:
26359
- description: Get hourly usage for incident management.
27507
+ description: 'Get hourly usage for incident management.
27508
+
27509
+ **Note:** hourly usage data for all products is now available in the [Get
27510
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26360
27511
  operationId: GetIncidentManagement
26361
27512
  parameters:
26362
27513
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -26410,12 +27561,15 @@ paths:
26410
27561
  summary: Get hourly usage for incident management
26411
27562
  tags:
26412
27563
  - Usage Metering
26413
- x-menu-order: 27
27564
+ x-menu-order: 25
26414
27565
  x-undo:
26415
27566
  type: safe
26416
27567
  /api/v1/usage/indexed-spans:
26417
27568
  get:
26418
- description: Get hourly usage for indexed spans.
27569
+ description: 'Get hourly usage for indexed spans.
27570
+
27571
+ **Note:** hourly usage data for all products is now available in the [Get
27572
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26419
27573
  operationId: GetUsageIndexedSpans
26420
27574
  parameters:
26421
27575
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -26467,12 +27621,15 @@ paths:
26467
27621
  summary: Get hourly usage for indexed spans
26468
27622
  tags:
26469
27623
  - Usage Metering
26470
- x-menu-order: 7
27624
+ x-menu-order: 13
26471
27625
  x-undo:
26472
27626
  type: safe
26473
27627
  /api/v1/usage/ingested-spans:
26474
27628
  get:
26475
- description: Get hourly usage for ingested spans.
27629
+ description: 'Get hourly usage for ingested spans.
27630
+
27631
+ **Note:** hourly usage data for all products is now available in the [Get
27632
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26476
27633
  operationId: GetIngestedSpans
26477
27634
  parameters:
26478
27635
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -26526,12 +27683,15 @@ paths:
26526
27683
  summary: Get hourly usage for ingested spans
26527
27684
  tags:
26528
27685
  - Usage Metering
26529
- x-menu-order: 26
27686
+ x-menu-order: 24
26530
27687
  x-undo:
26531
27688
  type: safe
26532
27689
  /api/v1/usage/iot:
26533
27690
  get:
26534
- description: Get hourly usage for IoT.
27691
+ description: 'Get hourly usage for IoT.
27692
+
27693
+ **Note:** hourly usage data for all products is now available in the [Get
27694
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26535
27695
  operationId: GetUsageInternetOfThings
26536
27696
  parameters:
26537
27697
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -26585,12 +27745,15 @@ paths:
26585
27745
  summary: Get hourly usage for IoT
26586
27746
  tags:
26587
27747
  - Usage Metering
26588
- x-menu-order: 28
27748
+ x-menu-order: 26
26589
27749
  x-undo:
26590
27750
  type: safe
26591
27751
  /api/v1/usage/logs:
26592
27752
  get:
26593
- description: Get hourly usage for logs.
27753
+ description: 'Get hourly usage for logs.
27754
+
27755
+ **Note:** hourly usage data for all products is now available in the [Get
27756
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26594
27757
  operationId: GetUsageLogs
26595
27758
  parameters:
26596
27759
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -26639,15 +27802,18 @@ paths:
26639
27802
  appKeyAuth: []
26640
27803
  - AuthZ:
26641
27804
  - usage_read
26642
- summary: Get hourly usage for Logs
27805
+ summary: Get hourly usage for logs
26643
27806
  tags:
26644
27807
  - Usage Metering
26645
- x-menu-order: 2
27808
+ x-menu-order: 11
26646
27809
  x-undo:
26647
27810
  type: safe
26648
27811
  /api/v1/usage/logs-by-retention:
26649
27812
  get:
26650
- description: Get hourly usage for indexed logs by retention period.
27813
+ description: 'Get hourly usage for indexed logs by retention period.
27814
+
27815
+ **Note:** hourly usage data for all products is now available in the [Get
27816
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26651
27817
  operationId: GetUsageLogsByRetention
26652
27818
  parameters:
26653
27819
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -26701,6 +27867,7 @@ paths:
26701
27867
  summary: Get hourly logs usage by retention
26702
27868
  tags:
26703
27869
  - Usage Metering
27870
+ x-menu-order: 9
26704
27871
  x-undo:
26705
27872
  type: safe
26706
27873
  /api/v1/usage/logs_by_index:
@@ -26762,15 +27929,15 @@ paths:
26762
27929
  appKeyAuth: []
26763
27930
  - AuthZ:
26764
27931
  - usage_read
26765
- summary: Get hourly usage for Logs by Index
27932
+ summary: Get hourly usage for logs by index
26766
27933
  tags:
26767
27934
  - Usage Metering
26768
- x-menu-order: 3
27935
+ x-menu-order: 8
26769
27936
  x-undo:
26770
27937
  type: safe
26771
27938
  /api/v1/usage/monthly-attribution:
26772
27939
  get:
26773
- description: "Get Monthly Usage Attribution.\n\nThis API endpoint is paginated.
27940
+ description: "Get monthly usage attribution.\n\nThis API endpoint is paginated.
26774
27941
  To make sure you receive all records, check if the value of `next_record_id`
26775
27942
  is\nset in the response. If it is, make another request and pass `next_record_id`
26776
27943
  as a parameter.\nPseudo code example:\n\n```\nresponse := GetMonthlyUsageAttribution(start_month)\ncursor
@@ -26834,6 +28001,13 @@ paths:
26834
28001
  required: false
26835
28002
  schema:
26836
28003
  type: string
28004
+ - description: Include child org usage in the response. Defaults to `true`.
28005
+ in: query
28006
+ name: include_descendants
28007
+ required: false
28008
+ schema:
28009
+ default: true
28010
+ type: boolean
26837
28011
  responses:
26838
28012
  '200':
26839
28013
  content:
@@ -26858,7 +28032,7 @@ paths:
26858
28032
  appKeyAuth: []
26859
28033
  - AuthZ:
26860
28034
  - usage_read
26861
- summary: Get Monthly Usage Attribution
28035
+ summary: Get monthly usage attribution
26862
28036
  tags:
26863
28037
  - Usage Metering
26864
28038
  x-given:
@@ -26869,15 +28043,15 @@ paths:
26869
28043
  - name: fields
26870
28044
  value: '"infra_host_usage"'
26871
28045
  step: there is a valid "monthly_usage_attribution" response
26872
- x-menu-order: 31
28046
+ x-menu-order: 3
26873
28047
  x-undo:
26874
28048
  type: safe
26875
- x-unstable: '**Note**: This endpoint is in public beta.
26876
-
26877
- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
26878
28049
  /api/v1/usage/network_flows:
26879
28050
  get:
26880
- description: Get hourly usage for network flows.
28051
+ description: 'Get hourly usage for network flows.
28052
+
28053
+ **Note:** hourly usage data for all products is now available in the [Get
28054
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26881
28055
  operationId: GetUsageNetworkFlows
26882
28056
  parameters:
26883
28057
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -26928,15 +28102,18 @@ paths:
26928
28102
  appKeyAuth: []
26929
28103
  - AuthZ:
26930
28104
  - usage_read
26931
- summary: Get hourly usage for Network Flows
28105
+ summary: get hourly usage for network flows
26932
28106
  tags:
26933
28107
  - Usage Metering
26934
- x-menu-order: 15
28108
+ x-menu-order: 21
26935
28109
  x-undo:
26936
28110
  type: safe
26937
28111
  /api/v1/usage/network_hosts:
26938
28112
  get:
26939
- description: Get hourly usage for network hosts.
28113
+ description: 'Get hourly usage for network hosts.
28114
+
28115
+ **Note:** hourly usage data for all products is now available in the [Get
28116
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26940
28117
  operationId: GetUsageNetworkHosts
26941
28118
  parameters:
26942
28119
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -26985,15 +28162,18 @@ paths:
26985
28162
  appKeyAuth: []
26986
28163
  - AuthZ:
26987
28164
  - usage_read
26988
- summary: Get hourly usage for Network Hosts
28165
+ summary: Get hourly usage for network hosts
26989
28166
  tags:
26990
28167
  - Usage Metering
26991
- x-menu-order: 14
28168
+ x-menu-order: 20
26992
28169
  x-undo:
26993
28170
  type: safe
26994
28171
  /api/v1/usage/online-archive:
26995
28172
  get:
26996
- description: Get hourly usage for Online Archive.
28173
+ description: 'Get hourly usage for online archive.
28174
+
28175
+ **Note:** hourly usage data for all products is now available in the [Get
28176
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
26997
28177
  operationId: GetUsageOnlineArchive
26998
28178
  parameters:
26999
28179
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -27044,15 +28224,18 @@ paths:
27044
28224
  appKeyAuth: []
27045
28225
  - AuthZ:
27046
28226
  - usage_read
27047
- summary: Get hourly usage for Online Archive
28227
+ summary: Get hourly usage for online archive
27048
28228
  tags:
27049
28229
  - Usage Metering
27050
- x-menu-order: 38
28230
+ x-menu-order: 35
27051
28231
  x-undo:
27052
28232
  type: safe
27053
28233
  /api/v1/usage/profiling:
27054
28234
  get:
27055
- description: Get hourly usage for profiled hosts.
28235
+ description: 'Get hourly usage for profiled hosts.
28236
+
28237
+ **Note:** hourly usage data for all products is now available in the [Get
28238
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
27056
28239
  operationId: GetUsageProfiling
27057
28240
  parameters:
27058
28241
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -27106,13 +28289,16 @@ paths:
27106
28289
  summary: Get hourly usage for profiled hosts
27107
28290
  tags:
27108
28291
  - Usage Metering
27109
- x-menu-order: 24
28292
+ x-menu-order: 33
27110
28293
  x-undo:
27111
28294
  type: safe
27112
28295
  /api/v1/usage/rum:
27113
28296
  get:
27114
- description: Get hourly usage for [RUM](https://docs.datadoghq.com/real_user_monitoring/)
28297
+ description: 'Get hourly usage for [RUM](https://docs.datadoghq.com/real_user_monitoring/)
27115
28298
  Units.
28299
+
28300
+ **Note:** hourly usage data for all products is now available in the [Get
28301
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
27116
28302
  operationId: GetUsageRumUnits
27117
28303
  parameters:
27118
28304
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -27161,16 +28347,19 @@ paths:
27161
28347
  appKeyAuth: []
27162
28348
  - AuthZ:
27163
28349
  - usage_read
27164
- summary: Get hourly usage for RUM Units
28350
+ summary: Get hourly usage for RUM units
27165
28351
  tags:
27166
28352
  - Usage Metering
27167
- x-menu-order: 37
28353
+ x-menu-order: 32
27168
28354
  x-undo:
27169
28355
  type: safe
27170
28356
  /api/v1/usage/rum_sessions:
27171
28357
  get:
27172
- description: Get hourly usage for [RUM](https://docs.datadoghq.com/real_user_monitoring/)
28358
+ description: 'Get hourly usage for [RUM](https://docs.datadoghq.com/real_user_monitoring/)
27173
28359
  Sessions.
28360
+
28361
+ **Note:** hourly usage data for all products is now available in the [Get
28362
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
27174
28363
  operationId: GetUsageRumSessions
27175
28364
  parameters:
27176
28365
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -27225,15 +28414,18 @@ paths:
27225
28414
  appKeyAuth: []
27226
28415
  - AuthZ:
27227
28416
  - usage_read
27228
- summary: Get hourly usage for RUM Sessions
28417
+ summary: Get hourly usage for RUM sessions
27229
28418
  tags:
27230
28419
  - Usage Metering
27231
- x-menu-order: 13
28420
+ x-menu-order: 19
27232
28421
  x-undo:
27233
28422
  type: safe
27234
28423
  /api/v1/usage/sds:
27235
28424
  get:
27236
- description: Get hourly usage for Sensitive Data Scanner.
28425
+ description: 'Get hourly usage for sensitive data scanner.
28426
+
28427
+ **Note:** hourly usage data for all products is now available in the [Get
28428
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
27237
28429
  operationId: GetUsageSDS
27238
28430
  parameters:
27239
28431
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -27284,15 +28476,18 @@ paths:
27284
28476
  appKeyAuth: []
27285
28477
  - AuthZ:
27286
28478
  - usage_read
27287
- summary: Get hourly usage for Sensitive Data Scanner
28479
+ summary: Get hourly usage for sensitive data scanner
27288
28480
  tags:
27289
28481
  - Usage Metering
27290
- x-menu-order: 36
28482
+ x-menu-order: 31
27291
28483
  x-undo:
27292
28484
  type: safe
27293
28485
  /api/v1/usage/snmp:
27294
28486
  get:
27295
- description: Get hourly usage for SNMP devices.
28487
+ description: 'Get hourly usage for SNMP devices.
28488
+
28489
+ **Note:** hourly usage data for all products is now available in the [Get
28490
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
27296
28491
  operationId: GetUsageSNMP
27297
28492
  parameters:
27298
28493
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
@@ -27346,7 +28541,7 @@ paths:
27346
28541
  summary: Get hourly usage for SNMP devices
27347
28542
  tags:
27348
28543
  - Usage Metering
27349
- x-menu-order: 18
28544
+ x-menu-order: 23
27350
28545
  x-undo:
27351
28546
  type: safe
27352
28547
  /api/v1/usage/summary:
@@ -27412,13 +28607,16 @@ paths:
27412
28607
  summary: Get usage across your multi-org account
27413
28608
  tags:
27414
28609
  - Usage Metering
27415
- x-menu-order: 16
28610
+ x-menu-order: 7
27416
28611
  x-undo:
27417
28612
  type: safe
27418
28613
  /api/v1/usage/synthetics:
27419
28614
  get:
27420
28615
  deprecated: true
27421
- description: Get hourly usage for [Synthetics checks](https://docs.datadoghq.com/synthetics/).
28616
+ description: 'Get hourly usage for [synthetics checks](https://docs.datadoghq.com/synthetics/).
28617
+
28618
+ **Note:** hourly usage data for all products is now available in the [Get
28619
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
27422
28620
  operationId: GetUsageSynthetics
27423
28621
  parameters:
27424
28622
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -27467,15 +28665,18 @@ paths:
27467
28665
  appKeyAuth: []
27468
28666
  - AuthZ:
27469
28667
  - usage_read
27470
- summary: Get hourly usage for Synthetics Checks
28668
+ summary: Get hourly usage for synthetics checks
27471
28669
  tags:
27472
28670
  - Usage Metering
27473
- x-menu-order: 8
28671
+ x-menu-order: 14
27474
28672
  x-undo:
27475
28673
  type: safe
27476
28674
  /api/v1/usage/synthetics_api:
27477
28675
  get:
27478
- description: Get hourly usage for [synthetics API checks](https://docs.datadoghq.com/synthetics/).
28676
+ description: 'Get hourly usage for [synthetics API checks](https://docs.datadoghq.com/synthetics/).
28677
+
28678
+ **Note:** hourly usage data for all products is now available in the [Get
28679
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
27479
28680
  operationId: GetUsageSyntheticsAPI
27480
28681
  parameters:
27481
28682
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -27524,15 +28725,18 @@ paths:
27524
28725
  appKeyAuth: []
27525
28726
  - AuthZ:
27526
28727
  - usage_read
27527
- summary: Get hourly usage for Synthetics API Checks
28728
+ summary: Get hourly usage for synthetics API checks
27528
28729
  tags:
27529
28730
  - Usage Metering
27530
- x-menu-order: 9
28731
+ x-menu-order: 15
27531
28732
  x-undo:
27532
28733
  type: safe
27533
28734
  /api/v1/usage/synthetics_browser:
27534
28735
  get:
27535
- description: Get hourly usage for synthetics browser checks.
28736
+ description: 'Get hourly usage for synthetics browser checks.
28737
+
28738
+ **Note:** hourly usage data for all products is now available in the [Get
28739
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
27536
28740
  operationId: GetUsageSyntheticsBrowser
27537
28741
  parameters:
27538
28742
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -27581,15 +28785,18 @@ paths:
27581
28785
  appKeyAuth: []
27582
28786
  - AuthZ:
27583
28787
  - usage_read
27584
- summary: Get hourly usage for Synthetics Browser Checks
28788
+ summary: Get hourly usage for synthetics browser checks
27585
28789
  tags:
27586
28790
  - Usage Metering
27587
- x-menu-order: 10
28791
+ x-menu-order: 16
27588
28792
  x-undo:
27589
28793
  type: safe
27590
28794
  /api/v1/usage/timeseries:
27591
28795
  get:
27592
- description: Get hourly usage for [custom metrics](https://docs.datadoghq.com/developers/metrics/custom_metrics/).
28796
+ description: 'Get hourly usage for [custom metrics](https://docs.datadoghq.com/developers/metrics/custom_metrics/).
28797
+
28798
+ **Note:** hourly usage data for all products is now available in the [Get
28799
+ hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)'
27593
28800
  operationId: GetUsageTimeseries
27594
28801
  parameters:
27595
28802
  - description: 'Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh]
@@ -27641,7 +28848,7 @@ paths:
27641
28848
  summary: Get hourly usage for custom metrics
27642
28849
  tags:
27643
28850
  - Usage Metering
27644
- x-menu-order: 4
28851
+ x-menu-order: 12
27645
28852
  x-undo:
27646
28853
  type: safe
27647
28854
  /api/v1/usage/top_avg_metrics:
@@ -27727,7 +28934,7 @@ paths:
27727
28934
  summary: Get all custom metrics by hourly average
27728
28935
  tags:
27729
28936
  - Usage Metering
27730
- x-menu-order: 5
28937
+ x-menu-order: 6
27731
28938
  x-undo:
27732
28939
  type: safe
27733
28940
  /api/v1/user:
@@ -28249,9 +29456,11 @@ tags:
28249
29456
  event stream
28250
29457
 
28251
29458
  and fetch events from the event stream. Events are limited to 4000 characters.
28252
- If an event is sent out with a message
28253
29459
 
28254
- containing more than 4000 characters only the 4000 first characters are displayed.'
29460
+ If an event is sent out with a message containing more than 4000 characters, only
29461
+ the
29462
+
29463
+ first 4000 characters are displayed.'
28255
29464
  name: Events
28256
29465
  - description: 'Configure your Datadog-Google Cloud Platform (GCP) integration directly
28257
29466
 
@@ -28336,12 +29545,16 @@ tags:
28336
29545
  description: Find out more at
28337
29546
  url: https://docs.datadoghq.com/account_management/multi_organization
28338
29547
  name: Organizations
28339
- - description: 'Configure your [Datadog-PagerDuty integration](https://docs.datadoghq.com/api/?lang=bash#integration-pagerduty)
29548
+ - description: 'Configure your [Datadog-PagerDuty integration](https://docs.datadoghq.com/integrations/pagerduty/)
28340
29549
 
28341
29550
  directly through the Datadog API.'
28342
29551
  externalDocs:
28343
- url: https://docs.datadoghq.com/api/?lang=bash#integration-pagerduty
29552
+ url: https://docs.datadoghq.com/integrations/pagerduty/
28344
29553
  name: PagerDuty Integration
29554
+ - description: 'Detection rules for generating signals and listing of generated
29555
+
29556
+ signals.'
29557
+ name: Security Monitoring
28345
29558
  - description: 'The service check endpoint allows you to post check statuses for use
28346
29559
  with monitors.
28347
29560