datadog_api_client 1.7.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1566) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/poetry.lock +185 -0
  4. data/.generator/pyproject.toml +19 -0
  5. data/.generator/schemas/v1/openapi.yaml +1453 -1156
  6. data/.generator/schemas/v2/openapi.yaml +1061 -311
  7. data/.generator/src/generator/__init__.py +0 -0
  8. data/.generator/src/generator/__main__.py +3 -0
  9. data/.generator/src/generator/cli.py +97 -0
  10. data/.generator/src/generator/formatter.py +293 -0
  11. data/.generator/src/generator/openapi.py +347 -0
  12. data/.generator/src/generator/templates/api.j2 +223 -0
  13. data/.generator/{templates/api_client.mustache → src/generator/templates/api_client.j2} +169 -38
  14. data/.generator/{templates/api_error.mustache → src/generator/templates/api_error.j2} +2 -2
  15. data/.generator/src/generator/templates/api_info.j2 +12 -0
  16. data/.generator/{templates/configuration.mustache → src/generator/templates/configuration.j2} +105 -124
  17. data/.generator/src/generator/templates/model.j2 +18 -0
  18. data/.generator/src/generator/templates/model_base.j2 +242 -0
  19. data/.generator/src/generator/templates/model_enum.j2 +8 -0
  20. data/.generator/src/generator/templates/model_generic.j2 +265 -0
  21. data/.generator/src/generator/templates/model_oneof.j2 +90 -0
  22. data/.generator/src/generator/templates/package.j2 +60 -0
  23. data/.github/workflows/prepare_release.yml +14 -19
  24. data/.github/workflows/release.yml +1 -1
  25. data/.github/workflows/test.yml +4 -2
  26. data/.github/workflows/test_integration.yml +6 -7
  27. data/.gitignore +7 -0
  28. data/.pre-commit-config.yaml +16 -7
  29. data/CHANGELOG.md +26 -1
  30. data/DEVELOPMENT.md +2 -3
  31. data/Gemfile +6 -6
  32. data/LICENSE-3rdparty.csv +0 -3
  33. data/Makefile +4 -15
  34. data/README.md +1 -2
  35. data/RELEASING.md +4 -3
  36. data/examples/generated/v2/incidents/UpdateIncident.rb +4 -1
  37. data/examples/v1/dashboards/DeleteDashboard.rb +8 -0
  38. data/examples/v1/dashboards/GetDashboard.rb +8 -0
  39. data/examples/v1/dashboards/RestoreDashboards.rb +17 -0
  40. data/examples/v1/dashboards/UpdateDashboard.rb +36 -0
  41. data/examples/v1/logs/ListLogs_235998668.rb +16 -0
  42. data/examples/v1/logs/SubmitLog_1920474053.rb +1 -1
  43. data/examples/v1/logs/SubmitLog_3418823904.rb +1 -1
  44. data/examples/v1/metrics/SubmitMetrics_2203981258.rb +1 -1
  45. data/examples/v1/monitors/CreateMonitor_440013737.rb +22 -0
  46. data/examples/v1/service-level-objectives/GetSLO.rb +8 -0
  47. data/examples/v1/service-level-objectives/GetSLOHistory.rb +11 -0
  48. data/examples/v1/service-level-objectives/ListSLOs.rb +11 -0
  49. data/examples/v1/service-level-objectives/UpdateSLO.rb +25 -0
  50. data/examples/v1/synthetics/CreateSyntheticsAPITest_1072503741.rb +36 -0
  51. data/examples/v1/synthetics/CreateSyntheticsAPITest_1487281163.rb +88 -0
  52. data/examples/v1/usage-metering/GetUsageCIApp.rb +8 -0
  53. data/examples/v1/usage-metering/GetUsageOnlineArchive.rb +8 -0
  54. data/examples/v2/audit/ListAuditLogs.rb +5 -0
  55. data/examples/v2/audit/SearchAuditLogs.rb +24 -0
  56. data/examples/v2/incidents/CreateIncident.rb +4 -4
  57. data/examples/v2/incidents/UpdateIncident.rb +2 -2
  58. data/examples/v2/incidents/UpdateIncident_1009194038.rb +23 -0
  59. data/examples/v2/incidents/UpdateIncident_3369341440.rb +29 -0
  60. data/examples/v2/logs/AggregateLogs_2955613758.rb +36 -0
  61. data/examples/v2/logs/ListLogs.rb +4 -4
  62. data/examples/v2/logs/SubmitLog_3496222707.rb +1 -1
  63. data/examples/v2/logs/SubmitLog_904601870.rb +1 -1
  64. data/examples/v2/rum/ListRUMEvents.rb +5 -0
  65. data/examples/v2/rum/SearchRUMEvents.rb +24 -0
  66. data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_461183901.rb +42 -0
  67. data/extract-code-blocks.awk +1 -1
  68. data/lib/datadog_api_client/v1/api/authentication_api.rb +5 -4
  69. data/lib/datadog_api_client/v1/api/aws_integration_api.rb +45 -38
  70. data/lib/datadog_api_client/v1/api/aws_logs_integration_api.rb +54 -21
  71. data/lib/datadog_api_client/v1/api/azure_integration_api.rb +34 -17
  72. data/lib/datadog_api_client/v1/api/dashboard_lists_api.rb +21 -20
  73. data/lib/datadog_api_client/v1/api/dashboards_api.rb +44 -35
  74. data/lib/datadog_api_client/v1/api/downtimes_api.rb +31 -30
  75. data/lib/datadog_api_client/v1/api/events_api.rb +53 -25
  76. data/lib/datadog_api_client/v1/api/gcp_integration_api.rb +18 -11
  77. data/lib/datadog_api_client/v1/api/hosts_api.rb +28 -19
  78. data/lib/datadog_api_client/v1/api/ip_ranges_api.rb +4 -3
  79. data/lib/datadog_api_client/v1/api/key_management_api.rb +28 -27
  80. data/lib/datadog_api_client/v1/api/logs_api.rb +68 -11
  81. data/lib/datadog_api_client/v1/api/logs_indexes_api.rb +38 -25
  82. data/lib/datadog_api_client/v1/api/logs_pipelines_api.rb +57 -34
  83. data/lib/datadog_api_client/v1/api/metrics_api.rb +48 -23
  84. data/lib/datadog_api_client/v1/api/monitors_api.rb +401 -59
  85. data/lib/datadog_api_client/v1/api/notebooks_api.rb +35 -32
  86. data/lib/datadog_api_client/v1/api/organizations_api.rb +54 -25
  87. data/lib/datadog_api_client/v1/api/pager_duty_integration_api.rb +15 -14
  88. data/lib/datadog_api_client/v1/api/service_checks_api.rb +14 -5
  89. data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +16 -15
  90. data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +93 -64
  91. data/lib/datadog_api_client/v1/api/slack_integration_api.rb +18 -17
  92. data/lib/datadog_api_client/v1/api/snapshots_api.rb +11 -8
  93. data/lib/datadog_api_client/v1/api/synthetics_api.rb +117 -110
  94. data/lib/datadog_api_client/v1/api/tags_api.rb +30 -23
  95. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +422 -222
  96. data/lib/datadog_api_client/v1/api/users_api.rb +40 -23
  97. data/lib/datadog_api_client/v1/api/webhooks_integration_api.rb +41 -34
  98. data/lib/datadog_api_client/v1/api_client.rb +2 -2
  99. data/lib/datadog_api_client/v1/api_error.rb +2 -2
  100. data/lib/datadog_api_client/v1/configuration.rb +64 -64
  101. data/lib/datadog_api_client/v1/{models/notebook_cell_create_request.rb → model_base.rb} +100 -118
  102. data/lib/datadog_api_client/v1/models/access_role.rb +4 -19
  103. data/lib/datadog_api_client/v1/models/alert_graph_widget_definition.rb +40 -140
  104. data/lib/datadog_api_client/v1/models/alert_graph_widget_definition_type.rb +4 -19
  105. data/lib/datadog_api_client/v1/models/alert_value_widget_definition.rb +29 -139
  106. data/lib/datadog_api_client/v1/models/alert_value_widget_definition_type.rb +4 -19
  107. data/lib/datadog_api_client/v1/models/api_error_response.rb +16 -138
  108. data/lib/datadog_api_client/v1/models/api_key.rb +8 -142
  109. data/lib/datadog_api_client/v1/models/api_key_list_response.rb +6 -137
  110. data/lib/datadog_api_client/v1/models/api_key_response.rb +7 -137
  111. data/lib/datadog_api_client/v1/models/apm_stats_query_column_type.rb +18 -138
  112. data/lib/datadog_api_client/v1/models/apm_stats_query_definition.rb +57 -142
  113. data/lib/datadog_api_client/v1/models/apm_stats_query_row_type.rb +4 -19
  114. data/lib/datadog_api_client/v1/models/application_key.rb +8 -142
  115. data/lib/datadog_api_client/v1/models/application_key_list_response.rb +6 -137
  116. data/lib/datadog_api_client/v1/models/application_key_response.rb +7 -137
  117. data/lib/datadog_api_client/v1/models/authentication_validation_response.rb +6 -137
  118. data/lib/datadog_api_client/v1/models/aws_account.rb +18 -143
  119. data/lib/datadog_api_client/v1/models/aws_account_and_lambda_request.rb +26 -139
  120. data/lib/datadog_api_client/v1/models/aws_account_create_response.rb +6 -137
  121. data/lib/datadog_api_client/v1/models/aws_account_delete_request.rb +6 -137
  122. data/lib/datadog_api_client/v1/models/aws_account_list_response.rb +6 -137
  123. data/lib/datadog_api_client/v1/models/aws_logs_async_error.rb +6 -137
  124. data/lib/datadog_api_client/v1/models/aws_logs_async_response.rb +6 -137
  125. data/lib/datadog_api_client/v1/models/aws_logs_lambda.rb +6 -137
  126. data/lib/datadog_api_client/v1/models/aws_logs_list_response.rb +6 -137
  127. data/lib/datadog_api_client/v1/models/aws_logs_list_services_response.rb +6 -137
  128. data/lib/datadog_api_client/v1/models/aws_logs_services_request.rb +26 -139
  129. data/lib/datadog_api_client/v1/models/aws_namespace.rb +4 -19
  130. data/lib/datadog_api_client/v1/models/aws_tag_filter.rb +7 -137
  131. data/lib/datadog_api_client/v1/models/aws_tag_filter_create_request.rb +7 -137
  132. data/lib/datadog_api_client/v1/models/aws_tag_filter_delete_request.rb +7 -137
  133. data/lib/datadog_api_client/v1/models/aws_tag_filter_list_response.rb +6 -137
  134. data/lib/datadog_api_client/v1/models/azure_account.rb +8 -138
  135. data/lib/datadog_api_client/v1/models/cancel_downtimes_by_scope_request.rb +19 -139
  136. data/lib/datadog_api_client/v1/models/canceled_downtimes_ids.rb +6 -137
  137. data/lib/datadog_api_client/v1/models/change_widget_definition.rb +26 -147
  138. data/lib/datadog_api_client/v1/models/change_widget_definition_type.rb +4 -19
  139. data/lib/datadog_api_client/v1/models/change_widget_request.rb +21 -139
  140. data/lib/datadog_api_client/v1/models/check_can_delete_monitor_response.rb +18 -141
  141. data/lib/datadog_api_client/v1/models/check_can_delete_monitor_response_data.rb +6 -137
  142. data/lib/datadog_api_client/v1/models/check_can_delete_slo_response.rb +8 -140
  143. data/lib/datadog_api_client/v1/models/check_can_delete_slo_response_data.rb +6 -137
  144. data/lib/datadog_api_client/v1/models/check_status_widget_definition.rb +40 -140
  145. data/lib/datadog_api_client/v1/models/check_status_widget_definition_type.rb +4 -19
  146. data/lib/datadog_api_client/v1/models/content_encoding.rb +4 -19
  147. data/lib/datadog_api_client/v1/models/creator.rb +7 -138
  148. data/lib/datadog_api_client/v1/models/dashboard.rb +42 -141
  149. data/lib/datadog_api_client/v1/models/dashboard_bulk_action_data.rb +27 -139
  150. data/lib/datadog_api_client/v1/models/dashboard_bulk_delete_request.rb +16 -138
  151. data/lib/datadog_api_client/v1/models/dashboard_delete_response.rb +6 -137
  152. data/lib/datadog_api_client/v1/models/dashboard_layout_type.rb +4 -19
  153. data/lib/datadog_api_client/v1/models/dashboard_list.rb +17 -138
  154. data/lib/datadog_api_client/v1/models/dashboard_list_delete_response.rb +6 -137
  155. data/lib/datadog_api_client/v1/models/dashboard_list_list_response.rb +6 -137
  156. data/lib/datadog_api_client/v1/models/dashboard_reflow_type.rb +6 -19
  157. data/lib/datadog_api_client/v1/models/dashboard_resource_type.rb +4 -19
  158. data/lib/datadog_api_client/v1/models/dashboard_restore_request.rb +16 -138
  159. data/lib/datadog_api_client/v1/models/dashboard_summary.rb +6 -137
  160. data/lib/datadog_api_client/v1/models/dashboard_summary_definition.rb +7 -137
  161. data/lib/datadog_api_client/v1/models/dashboard_template_variable.rb +17 -139
  162. data/lib/datadog_api_client/v1/models/dashboard_template_variable_preset.rb +6 -137
  163. data/lib/datadog_api_client/v1/models/dashboard_template_variable_preset_value.rb +6 -137
  164. data/lib/datadog_api_client/v1/models/deleted_monitor.rb +6 -137
  165. data/lib/datadog_api_client/v1/models/distribution_widget_definition.rb +31 -148
  166. data/lib/datadog_api_client/v1/models/distribution_widget_definition_type.rb +4 -19
  167. data/lib/datadog_api_client/v1/models/distribution_widget_request.rb +16 -137
  168. data/lib/datadog_api_client/v1/models/distribution_widget_x_axis.rb +6 -137
  169. data/lib/datadog_api_client/v1/models/distribution_widget_y_axis.rb +6 -137
  170. data/lib/datadog_api_client/v1/models/downtime.rb +38 -155
  171. data/lib/datadog_api_client/v1/models/downtime_child.rb +34 -155
  172. data/lib/datadog_api_client/v1/models/downtime_recurrence.rb +25 -149
  173. data/lib/datadog_api_client/v1/models/event.rb +24 -145
  174. data/lib/datadog_api_client/v1/models/event_alert_type.rb +6 -19
  175. data/lib/datadog_api_client/v1/models/event_create_request.rb +37 -152
  176. data/lib/datadog_api_client/v1/models/event_create_response.rb +17 -298
  177. data/lib/datadog_api_client/v1/models/event_list_response.rb +6 -137
  178. data/lib/datadog_api_client/v1/models/event_priority.rb +4 -19
  179. data/lib/datadog_api_client/v1/models/event_query_definition.rb +26 -139
  180. data/lib/datadog_api_client/v1/models/event_response.rb +7 -137
  181. data/lib/datadog_api_client/v1/models/event_stream_widget_definition.rb +32 -140
  182. data/lib/datadog_api_client/v1/models/event_stream_widget_definition_type.rb +4 -19
  183. data/lib/datadog_api_client/v1/models/event_timeline_widget_definition.rb +29 -139
  184. data/lib/datadog_api_client/v1/models/event_timeline_widget_definition_type.rb +4 -19
  185. data/lib/datadog_api_client/v1/models/formula_and_function_apm_dependency_stat_name.rb +4 -19
  186. data/lib/datadog_api_client/v1/models/formula_and_function_apm_dependency_stats_data_source.rb +4 -19
  187. data/lib/datadog_api_client/v1/models/formula_and_function_apm_dependency_stats_query_definition.rb +78 -144
  188. data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stat_name.rb +4 -19
  189. data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stats_data_source.rb +4 -19
  190. data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stats_query_definition.rb +58 -142
  191. data/lib/datadog_api_client/v1/models/formula_and_function_event_aggregation.rb +4 -19
  192. data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition.rb +39 -140
  193. data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition_compute.rb +17 -138
  194. data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition_search.rb +16 -138
  195. data/lib/datadog_api_client/v1/models/formula_and_function_event_query_group_by.rb +17 -138
  196. data/lib/datadog_api_client/v1/models/formula_and_function_event_query_group_by_sort.rb +18 -138
  197. data/lib/datadog_api_client/v1/models/formula_and_function_events_data_source.rb +4 -19
  198. data/lib/datadog_api_client/v1/models/formula_and_function_metric_aggregation.rb +4 -19
  199. data/lib/datadog_api_client/v1/models/formula_and_function_metric_data_source.rb +4 -19
  200. data/lib/datadog_api_client/v1/models/formula_and_function_metric_query_definition.rb +38 -140
  201. data/lib/datadog_api_client/v1/models/formula_and_function_process_query_data_source.rb +4 -19
  202. data/lib/datadog_api_client/v1/models/formula_and_function_process_query_definition.rb +39 -140
  203. data/lib/datadog_api_client/v1/models/formula_and_function_query_definition.rb +7 -62
  204. data/lib/datadog_api_client/v1/models/formula_and_function_response_format.rb +4 -19
  205. data/lib/datadog_api_client/v1/models/free_text_widget_definition.rb +28 -139
  206. data/lib/datadog_api_client/v1/models/free_text_widget_definition_type.rb +4 -19
  207. data/lib/datadog_api_client/v1/models/funnel_query.rb +37 -140
  208. data/lib/datadog_api_client/v1/models/funnel_request_type.rb +4 -19
  209. data/lib/datadog_api_client/v1/models/funnel_source.rb +4 -19
  210. data/lib/datadog_api_client/v1/models/funnel_step.rb +26 -139
  211. data/lib/datadog_api_client/v1/models/funnel_widget_definition.rb +23 -147
  212. data/lib/datadog_api_client/v1/models/funnel_widget_definition_type.rb +4 -19
  213. data/lib/datadog_api_client/v1/models/funnel_widget_request.rb +28 -139
  214. data/lib/datadog_api_client/v1/models/gcp_account.rb +10 -139
  215. data/lib/datadog_api_client/v1/models/geomap_widget_definition.rb +48 -149
  216. data/lib/datadog_api_client/v1/models/geomap_widget_definition_style.rb +26 -139
  217. data/lib/datadog_api_client/v1/models/geomap_widget_definition_type.rb +4 -19
  218. data/lib/datadog_api_client/v1/models/geomap_widget_definition_view.rb +16 -138
  219. data/lib/datadog_api_client/v1/models/geomap_widget_request.rb +12 -139
  220. data/lib/datadog_api_client/v1/models/graph_snapshot.rb +9 -138
  221. data/lib/datadog_api_client/v1/models/group_widget_definition.rb +39 -140
  222. data/lib/datadog_api_client/v1/models/group_widget_definition_type.rb +4 -19
  223. data/lib/datadog_api_client/v1/models/heat_map_widget_definition.rb +24 -147
  224. data/lib/datadog_api_client/v1/models/heat_map_widget_definition_type.rb +4 -19
  225. data/lib/datadog_api_client/v1/models/heat_map_widget_request.rb +15 -137
  226. data/lib/datadog_api_client/v1/models/host.rb +9 -140
  227. data/lib/datadog_api_client/v1/models/host_list_response.rb +6 -137
  228. data/lib/datadog_api_client/v1/models/host_map_request.rb +14 -137
  229. data/lib/datadog_api_client/v1/models/host_map_widget_definition.rb +31 -139
  230. data/lib/datadog_api_client/v1/models/host_map_widget_definition_requests.rb +8 -137
  231. data/lib/datadog_api_client/v1/models/host_map_widget_definition_style.rb +6 -137
  232. data/lib/datadog_api_client/v1/models/host_map_widget_definition_type.rb +4 -19
  233. data/lib/datadog_api_client/v1/models/host_meta.rb +8 -138
  234. data/lib/datadog_api_client/v1/models/host_meta_install_method.rb +6 -137
  235. data/lib/datadog_api_client/v1/models/host_metrics.rb +6 -137
  236. data/lib/datadog_api_client/v1/models/host_mute_response.rb +6 -137
  237. data/lib/datadog_api_client/v1/models/host_mute_settings.rb +6 -137
  238. data/lib/datadog_api_client/v1/models/host_tags.rb +6 -137
  239. data/lib/datadog_api_client/v1/models/host_totals.rb +6 -137
  240. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_body.rb +8 -140
  241. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_metadata.rb +7 -137
  242. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_pagination.rb +6 -137
  243. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_response.rb +7 -137
  244. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +4 -19
  245. data/lib/datadog_api_client/v1/models/http_log_error.rb +19 -144
  246. data/lib/datadog_api_client/v1/models/http_log_item.rb +25 -141
  247. data/lib/datadog_api_client/v1/models/http_method.rb +4 -19
  248. data/lib/datadog_api_client/v1/models/i_frame_widget_definition.rb +27 -139
  249. data/lib/datadog_api_client/v1/models/i_frame_widget_definition_type.rb +4 -19
  250. data/lib/datadog_api_client/v1/models/idp_form_data.rb +16 -138
  251. data/lib/datadog_api_client/v1/models/idp_response.rb +16 -138
  252. data/lib/datadog_api_client/v1/models/image_widget_definition.rb +33 -139
  253. data/lib/datadog_api_client/v1/models/image_widget_definition_type.rb +4 -19
  254. data/lib/datadog_api_client/v1/models/intake_payload_accepted.rb +6 -137
  255. data/lib/datadog_api_client/v1/models/ip_prefixes_agents.rb +6 -137
  256. data/lib/datadog_api_client/v1/models/ip_prefixes_api.rb +6 -137
  257. data/lib/datadog_api_client/v1/models/ip_prefixes_apm.rb +6 -137
  258. data/lib/datadog_api_client/v1/models/ip_prefixes_logs.rb +6 -137
  259. data/lib/datadog_api_client/v1/models/ip_prefixes_process.rb +6 -137
  260. data/lib/datadog_api_client/v1/models/ip_prefixes_synthetics.rb +8 -143
  261. data/lib/datadog_api_client/v1/models/ip_prefixes_webhooks.rb +6 -137
  262. data/lib/datadog_api_client/v1/models/ip_ranges.rb +13 -137
  263. data/lib/datadog_api_client/v1/models/list_stream_column.rb +27 -139
  264. data/lib/datadog_api_client/v1/models/list_stream_column_width.rb +4 -19
  265. data/lib/datadog_api_client/v1/models/list_stream_query.rb +27 -139
  266. data/lib/datadog_api_client/v1/models/list_stream_response_format.rb +4 -19
  267. data/lib/datadog_api_client/v1/models/list_stream_source.rb +4 -19
  268. data/lib/datadog_api_client/v1/models/list_stream_widget_definition.rb +25 -148
  269. data/lib/datadog_api_client/v1/models/list_stream_widget_definition_type.rb +4 -19
  270. data/lib/datadog_api_client/v1/models/list_stream_widget_request.rb +38 -140
  271. data/lib/datadog_api_client/v1/models/log.rb +7 -137
  272. data/lib/datadog_api_client/v1/models/log_content.rb +14 -145
  273. data/lib/datadog_api_client/v1/models/log_query_definition.rb +9 -138
  274. data/lib/datadog_api_client/v1/models/log_query_definition_group_by.rb +17 -138
  275. data/lib/datadog_api_client/v1/models/log_query_definition_group_by_sort.rb +27 -139
  276. data/lib/datadog_api_client/v1/models/log_query_definition_search.rb +16 -138
  277. data/lib/datadog_api_client/v1/models/log_stream_widget_definition.rb +21 -138
  278. data/lib/datadog_api_client/v1/models/log_stream_widget_definition_type.rb +4 -19
  279. data/lib/datadog_api_client/v1/models/logs_api_error.rb +6 -137
  280. data/lib/datadog_api_client/v1/models/logs_api_error_response.rb +7 -137
  281. data/lib/datadog_api_client/v1/models/logs_arithmetic_processor.rb +60 -142
  282. data/lib/datadog_api_client/v1/models/logs_arithmetic_processor_type.rb +4 -19
  283. data/lib/datadog_api_client/v1/models/logs_attribute_remapper.rb +43 -141
  284. data/lib/datadog_api_client/v1/models/logs_attribute_remapper_type.rb +4 -19
  285. data/lib/datadog_api_client/v1/models/logs_by_retention.rb +8 -137
  286. data/lib/datadog_api_client/v1/models/logs_by_retention_monthly_usage.rb +7 -138
  287. data/lib/datadog_api_client/v1/models/logs_by_retention_org_usage.rb +6 -137
  288. data/lib/datadog_api_client/v1/models/logs_by_retention_orgs.rb +6 -137
  289. data/lib/datadog_api_client/v1/models/logs_category_processor.rb +52 -142
  290. data/lib/datadog_api_client/v1/models/logs_category_processor_category.rb +7 -137
  291. data/lib/datadog_api_client/v1/models/logs_category_processor_type.rb +4 -19
  292. data/lib/datadog_api_client/v1/models/logs_date_remapper.rb +46 -140
  293. data/lib/datadog_api_client/v1/models/logs_date_remapper_type.rb +4 -19
  294. data/lib/datadog_api_client/v1/models/logs_exclusion.rb +17 -138
  295. data/lib/datadog_api_client/v1/models/logs_exclusion_filter.rb +20 -140
  296. data/lib/datadog_api_client/v1/models/logs_filter.rb +6 -137
  297. data/lib/datadog_api_client/v1/models/logs_geo_ip_parser.rb +41 -141
  298. data/lib/datadog_api_client/v1/models/logs_geo_ip_parser_type.rb +4 -19
  299. data/lib/datadog_api_client/v1/models/logs_grok_parser.rb +42 -144
  300. data/lib/datadog_api_client/v1/models/logs_grok_parser_rules.rb +16 -138
  301. data/lib/datadog_api_client/v1/models/logs_grok_parser_type.rb +4 -19
  302. data/lib/datadog_api_client/v1/models/logs_index.rb +34 -142
  303. data/lib/datadog_api_client/v1/models/logs_index_list_response.rb +6 -137
  304. data/lib/datadog_api_client/v1/models/logs_index_update_request.rb +28 -141
  305. data/lib/datadog_api_client/v1/models/logs_indexes_order.rb +19 -139
  306. data/lib/datadog_api_client/v1/models/logs_list_request.rb +27 -143
  307. data/lib/datadog_api_client/v1/models/logs_list_request_time.rb +28 -140
  308. data/lib/datadog_api_client/v1/models/logs_list_response.rb +8 -138
  309. data/lib/datadog_api_client/v1/models/logs_lookup_processor.rb +57 -144
  310. data/lib/datadog_api_client/v1/models/logs_lookup_processor_type.rb +4 -19
  311. data/lib/datadog_api_client/v1/models/logs_message_remapper.rb +35 -140
  312. data/lib/datadog_api_client/v1/models/logs_message_remapper_type.rb +4 -19
  313. data/lib/datadog_api_client/v1/models/logs_pipeline.rb +22 -139
  314. data/lib/datadog_api_client/v1/models/logs_pipeline_processor.rb +23 -139
  315. data/lib/datadog_api_client/v1/models/logs_pipeline_processor_type.rb +4 -19
  316. data/lib/datadog_api_client/v1/models/logs_pipelines_order.rb +18 -139
  317. data/lib/datadog_api_client/v1/models/logs_processor.rb +14 -69
  318. data/lib/datadog_api_client/v1/models/logs_query_compute.rb +16 -138
  319. data/lib/datadog_api_client/v1/models/logs_retention_agg_sum_usage.rb +7 -138
  320. data/lib/datadog_api_client/v1/models/logs_retention_sum_usage.rb +7 -138
  321. data/lib/datadog_api_client/v1/models/logs_service_remapper.rb +31 -140
  322. data/lib/datadog_api_client/v1/models/logs_service_remapper_type.rb +4 -19
  323. data/lib/datadog_api_client/v1/models/logs_sort.rb +4 -19
  324. data/lib/datadog_api_client/v1/models/logs_status_remapper.rb +45 -140
  325. data/lib/datadog_api_client/v1/models/logs_status_remapper_type.rb +4 -19
  326. data/lib/datadog_api_client/v1/models/logs_string_builder_processor.rb +52 -142
  327. data/lib/datadog_api_client/v1/models/logs_string_builder_processor_type.rb +4 -19
  328. data/lib/datadog_api_client/v1/models/logs_trace_remapper.rb +25 -139
  329. data/lib/datadog_api_client/v1/models/logs_trace_remapper_type.rb +4 -19
  330. data/lib/datadog_api_client/v1/models/logs_url_parser.rb +39 -140
  331. data/lib/datadog_api_client/v1/models/logs_url_parser_type.rb +4 -19
  332. data/lib/datadog_api_client/v1/models/logs_user_agent_parser.rb +41 -141
  333. data/lib/datadog_api_client/v1/models/logs_user_agent_parser_type.rb +4 -19
  334. data/lib/datadog_api_client/v1/models/metric_content_encoding.rb +4 -19
  335. data/lib/datadog_api_client/v1/models/metric_metadata.rb +6 -137
  336. data/lib/datadog_api_client/v1/models/metric_search_response.rb +7 -137
  337. data/lib/datadog_api_client/v1/models/metric_search_response_results.rb +6 -137
  338. data/lib/datadog_api_client/v1/models/metrics_list_response.rb +6 -137
  339. data/lib/datadog_api_client/v1/models/metrics_payload.rb +16 -138
  340. data/lib/datadog_api_client/v1/models/metrics_query_metadata.rb +12 -144
  341. data/lib/datadog_api_client/v1/models/metrics_query_response.rb +6 -137
  342. data/lib/datadog_api_client/v1/models/metrics_query_unit.rb +6 -137
  343. data/lib/datadog_api_client/v1/models/monitor.rb +34 -145
  344. data/lib/datadog_api_client/v1/models/monitor_device_id.rb +4 -19
  345. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_aggregation.rb +4 -19
  346. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition.rb +39 -140
  347. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition_compute.rb +17 -138
  348. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition_search.rb +16 -138
  349. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_group_by.rb +17 -138
  350. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_group_by_sort.rb +18 -138
  351. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_events_data_source.rb +4 -19
  352. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_query_definition.rb +3 -58
  353. data/lib/datadog_api_client/v1/models/monitor_group_search_response.rb +8 -137
  354. data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts.rb +6 -137
  355. data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts_status_item.rb +129 -0
  356. data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts_type_item.rb +129 -0
  357. data/lib/datadog_api_client/v1/models/monitor_group_search_result.rb +7 -137
  358. data/lib/datadog_api_client/v1/models/monitor_options.rb +46 -155
  359. data/lib/datadog_api_client/v1/models/monitor_options_aggregation.rb +6 -137
  360. data/lib/datadog_api_client/v1/models/monitor_overall_states.rb +4 -19
  361. data/lib/datadog_api_client/v1/models/monitor_renotify_status_type.rb +4 -19
  362. data/lib/datadog_api_client/v1/models/monitor_search_response.rb +8 -137
  363. data/lib/datadog_api_client/v1/models/monitor_search_response_counts.rb +6 -137
  364. data/lib/datadog_api_client/v1/models/monitor_search_response_counts_muted_item.rb +129 -0
  365. data/lib/datadog_api_client/v1/models/monitor_search_response_counts_status_item.rb +129 -0
  366. data/lib/datadog_api_client/v1/models/monitor_search_response_counts_tag_item.rb +129 -0
  367. data/lib/datadog_api_client/v1/models/monitor_search_response_counts_type_item.rb +129 -0
  368. data/lib/datadog_api_client/v1/models/monitor_search_response_metadata.rb +6 -137
  369. data/lib/datadog_api_client/v1/models/monitor_search_result.rb +13 -138
  370. data/lib/datadog_api_client/v1/models/monitor_search_result_notification.rb +6 -137
  371. data/lib/datadog_api_client/v1/models/monitor_state.rb +9 -141
  372. data/lib/datadog_api_client/v1/models/monitor_state_group.rb +7 -137
  373. data/lib/datadog_api_client/v1/models/monitor_summary_widget_definition.rb +32 -139
  374. data/lib/datadog_api_client/v1/models/monitor_summary_widget_definition_type.rb +4 -19
  375. data/lib/datadog_api_client/v1/models/monitor_threshold_window_options.rb +7 -138
  376. data/lib/datadog_api_client/v1/models/monitor_thresholds.rb +7 -138
  377. data/lib/datadog_api_client/v1/models/monitor_type.rb +5 -19
  378. data/lib/datadog_api_client/v1/models/monitor_update_request.rb +14 -143
  379. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_body.rb +8 -140
  380. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_metadata.rb +7 -137
  381. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_pagination.rb +6 -137
  382. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_response.rb +7 -137
  383. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +4 -19
  384. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +6 -137
  385. data/lib/datadog_api_client/v1/models/note_widget_definition.rb +30 -139
  386. data/lib/datadog_api_client/v1/models/note_widget_definition_type.rb +4 -19
  387. data/lib/datadog_api_client/v1/models/notebook_absolute_time.rb +26 -139
  388. data/lib/datadog_api_client/v1/models/notebook_author.rb +6 -137
  389. data/lib/datadog_api_client/v1/models/notebook_cell_resource_type.rb +4 -19
  390. data/lib/datadog_api_client/v1/models/notebook_cell_response.rb +39 -140
  391. data/lib/datadog_api_client/v1/models/notebook_cell_response_attributes.rb +9 -63
  392. data/lib/datadog_api_client/v1/models/notebook_cell_time.rb +5 -60
  393. data/lib/datadog_api_client/v1/models/notebook_cell_update_request.rb +39 -140
  394. data/lib/datadog_api_client/v1/models/notebook_cell_update_request_attributes.rb +9 -63
  395. data/lib/datadog_api_client/v1/models/notebook_create_data.rb +28 -139
  396. data/lib/datadog_api_client/v1/models/notebook_create_data_attributes.rb +32 -147
  397. data/lib/datadog_api_client/v1/models/notebook_create_request.rb +17 -138
  398. data/lib/datadog_api_client/v1/models/notebook_distribution_cell_attributes.rb +23 -139
  399. data/lib/datadog_api_client/v1/models/notebook_global_time.rb +5 -60
  400. data/lib/datadog_api_client/v1/models/notebook_graph_size.rb +4 -19
  401. data/lib/datadog_api_client/v1/models/notebook_heat_map_cell_attributes.rb +21 -139
  402. data/lib/datadog_api_client/v1/models/notebook_log_stream_cell_attributes.rb +20 -139
  403. data/lib/datadog_api_client/v1/models/notebook_markdown_cell_attributes.rb +17 -138
  404. data/lib/datadog_api_client/v1/models/notebook_markdown_cell_definition.rb +27 -139
  405. data/lib/datadog_api_client/v1/models/notebook_markdown_cell_definition_type.rb +4 -19
  406. data/lib/datadog_api_client/v1/models/notebook_metadata.rb +8 -138
  407. data/lib/datadog_api_client/v1/models/notebook_metadata_type.rb +4 -19
  408. data/lib/datadog_api_client/v1/models/notebook_relative_time.rb +17 -138
  409. data/lib/datadog_api_client/v1/models/notebook_resource_type.rb +4 -19
  410. data/lib/datadog_api_client/v1/models/notebook_response.rb +7 -137
  411. data/lib/datadog_api_client/v1/models/notebook_response_data.rb +38 -140
  412. data/lib/datadog_api_client/v1/models/notebook_response_data_attributes.rb +33 -147
  413. data/lib/datadog_api_client/v1/models/notebook_split_by.rb +26 -139
  414. data/lib/datadog_api_client/v1/models/notebook_status.rb +4 -19
  415. data/lib/datadog_api_client/v1/models/notebook_timeseries_cell_attributes.rb +21 -139
  416. data/lib/datadog_api_client/v1/models/notebook_toplist_cell_attributes.rb +21 -139
  417. data/lib/datadog_api_client/v1/models/notebook_update_cell.rb +5 -59
  418. data/lib/datadog_api_client/v1/models/notebook_update_data.rb +28 -139
  419. data/lib/datadog_api_client/v1/models/notebook_update_data_attributes.rb +32 -147
  420. data/lib/datadog_api_client/v1/models/notebook_update_request.rb +17 -138
  421. data/lib/datadog_api_client/v1/models/notebooks_response.rb +7 -137
  422. data/lib/datadog_api_client/v1/models/notebooks_response_data.rb +38 -140
  423. data/lib/datadog_api_client/v1/models/notebooks_response_data_attributes.rb +13 -145
  424. data/lib/datadog_api_client/v1/models/notebooks_response_meta.rb +7 -137
  425. data/lib/datadog_api_client/v1/models/notebooks_response_page.rb +6 -137
  426. data/lib/datadog_api_client/v1/models/organization.rb +18 -138
  427. data/lib/datadog_api_client/v1/models/organization_billing.rb +6 -137
  428. data/lib/datadog_api_client/v1/models/organization_create_body.rb +18 -141
  429. data/lib/datadog_api_client/v1/models/organization_create_response.rb +10 -137
  430. data/lib/datadog_api_client/v1/models/organization_list_response.rb +6 -137
  431. data/lib/datadog_api_client/v1/models/organization_response.rb +7 -137
  432. data/lib/datadog_api_client/v1/models/organization_settings.rb +12 -137
  433. data/lib/datadog_api_client/v1/models/organization_settings_saml.rb +8 -138
  434. data/lib/datadog_api_client/v1/models/organization_settings_saml_autocreate_users_domains.rb +6 -137
  435. data/lib/datadog_api_client/v1/models/organization_settings_saml_idp_initiated_login.rb +8 -138
  436. data/lib/datadog_api_client/v1/models/organization_settings_saml_strict_mode.rb +8 -138
  437. data/lib/datadog_api_client/v1/models/organization_subscription.rb +6 -137
  438. data/lib/datadog_api_client/v1/models/pager_duty_service.rb +26 -139
  439. data/lib/datadog_api_client/v1/models/pager_duty_service_key.rb +16 -138
  440. data/lib/datadog_api_client/v1/models/pager_duty_service_name.rb +16 -138
  441. data/lib/datadog_api_client/v1/models/pagination.rb +6 -137
  442. data/lib/datadog_api_client/v1/models/process_query_definition.rb +18 -141
  443. data/lib/datadog_api_client/v1/models/query_sort_order.rb +4 -19
  444. data/lib/datadog_api_client/v1/models/query_value_widget_definition.rb +23 -146
  445. data/lib/datadog_api_client/v1/models/query_value_widget_definition_type.rb +4 -19
  446. data/lib/datadog_api_client/v1/models/query_value_widget_request.rb +19 -139
  447. data/lib/datadog_api_client/v1/models/response_meta_attributes.rb +7 -137
  448. data/lib/datadog_api_client/v1/models/scatter_plot_request.rb +15 -137
  449. data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition.rb +32 -139
  450. data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition_requests.rb +9 -137
  451. data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition_type.rb +4 -19
  452. data/lib/datadog_api_client/v1/models/scatterplot_dimension.rb +4 -19
  453. data/lib/datadog_api_client/v1/models/scatterplot_table_request.rb +9 -139
  454. data/lib/datadog_api_client/v1/models/scatterplot_widget_aggregator.rb +4 -19
  455. data/lib/datadog_api_client/v1/models/scatterplot_widget_formula.rb +27 -139
  456. data/lib/datadog_api_client/v1/models/series.rb +29 -141
  457. data/lib/datadog_api_client/v1/models/service_check.rb +47 -141
  458. data/lib/datadog_api_client/v1/models/service_check_status.rb +4 -19
  459. data/lib/datadog_api_client/v1/models/service_level_objective.rb +74 -150
  460. data/lib/datadog_api_client/v1/models/service_level_objective_query.rb +29 -140
  461. data/lib/datadog_api_client/v1/models/service_level_objective_request.rb +58 -146
  462. data/lib/datadog_api_client/v1/models/service_map_widget_definition.rb +31 -145
  463. data/lib/datadog_api_client/v1/models/service_map_widget_definition_type.rb +4 -19
  464. data/lib/datadog_api_client/v1/models/service_summary_widget_definition.rb +51 -141
  465. data/lib/datadog_api_client/v1/models/service_summary_widget_definition_type.rb +4 -19
  466. data/lib/datadog_api_client/v1/models/slack_integration_channel.rb +7 -137
  467. data/lib/datadog_api_client/v1/models/slack_integration_channel_display.rb +6 -137
  468. data/lib/datadog_api_client/v1/models/slo_bulk_delete_error.rb +40 -141
  469. data/lib/datadog_api_client/v1/models/slo_bulk_delete_response.rb +13 -138
  470. data/lib/datadog_api_client/v1/models/slo_bulk_delete_response_data.rb +11 -139
  471. data/lib/datadog_api_client/v1/models/slo_correction.rb +8 -137
  472. data/lib/datadog_api_client/v1/models/slo_correction_category.rb +4 -19
  473. data/lib/datadog_api_client/v1/models/slo_correction_create_data.rb +18 -138
  474. data/lib/datadog_api_client/v1/models/slo_correction_create_request.rb +7 -137
  475. data/lib/datadog_api_client/v1/models/slo_correction_create_request_attributes.rb +40 -142
  476. data/lib/datadog_api_client/v1/models/slo_correction_list_response.rb +7 -137
  477. data/lib/datadog_api_client/v1/models/slo_correction_response.rb +7 -137
  478. data/lib/datadog_api_client/v1/models/slo_correction_response_attributes.rb +12 -139
  479. data/lib/datadog_api_client/v1/models/slo_correction_response_attributes_modifier.rb +6 -137
  480. data/lib/datadog_api_client/v1/models/slo_correction_type.rb +4 -19
  481. data/lib/datadog_api_client/v1/models/slo_correction_update_data.rb +8 -137
  482. data/lib/datadog_api_client/v1/models/slo_correction_update_request.rb +7 -137
  483. data/lib/datadog_api_client/v1/models/slo_correction_update_request_attributes.rb +10 -139
  484. data/lib/datadog_api_client/v1/models/slo_delete_response.rb +7 -140
  485. data/lib/datadog_api_client/v1/models/slo_error_timeframe.rb +5 -19
  486. data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +81 -143
  487. data/lib/datadog_api_client/v1/models/slo_history_metrics_series.rb +39 -141
  488. data/lib/datadog_api_client/v1/models/slo_history_metrics_series_metadata.rb +10 -139
  489. data/lib/datadog_api_client/v1/models/slo_history_metrics_series_metadata_unit.rb +7 -138
  490. data/lib/datadog_api_client/v1/models/slo_history_monitor.rb +11 -142
  491. data/lib/datadog_api_client/v1/models/slo_history_response.rb +7 -137
  492. data/lib/datadog_api_client/v1/models/slo_history_response_data.rb +25 -143
  493. data/lib/datadog_api_client/v1/models/slo_history_response_error.rb +6 -137
  494. data/lib/datadog_api_client/v1/models/slo_history_response_error_with_type.rb +26 -139
  495. data/lib/datadog_api_client/v1/models/slo_history_sli_data.rb +12 -145
  496. data/lib/datadog_api_client/v1/models/slo_list_response.rb +9 -138
  497. data/lib/datadog_api_client/v1/models/slo_list_response_metadata.rb +7 -137
  498. data/lib/datadog_api_client/v1/models/slo_list_response_metadata_page.rb +6 -137
  499. data/lib/datadog_api_client/v1/models/slo_response.rb +10 -138
  500. data/lib/datadog_api_client/v1/models/slo_response_data.rb +44 -147
  501. data/lib/datadog_api_client/v1/models/slo_threshold.rb +39 -142
  502. data/lib/datadog_api_client/v1/models/slo_timeframe.rb +4 -19
  503. data/lib/datadog_api_client/v1/models/slo_type.rb +4 -19
  504. data/lib/datadog_api_client/v1/models/slo_type_numeric.rb +6 -19
  505. data/lib/datadog_api_client/v1/models/slo_widget_definition.rb +29 -139
  506. data/lib/datadog_api_client/v1/models/slo_widget_definition_type.rb +4 -19
  507. data/lib/datadog_api_client/v1/models/sunburst_widget_definition.rb +23 -144
  508. data/lib/datadog_api_client/v1/models/sunburst_widget_definition_type.rb +4 -19
  509. data/lib/datadog_api_client/v1/models/sunburst_widget_legend.rb +5 -60
  510. data/lib/datadog_api_client/v1/models/sunburst_widget_legend_inline_automatic.rb +17 -138
  511. data/lib/datadog_api_client/v1/models/sunburst_widget_legend_inline_automatic_type.rb +4 -19
  512. data/lib/datadog_api_client/v1/models/sunburst_widget_legend_table.rb +17 -138
  513. data/lib/datadog_api_client/v1/models/sunburst_widget_legend_table_type.rb +4 -19
  514. data/lib/datadog_api_client/v1/models/sunburst_widget_request.rb +18 -139
  515. data/lib/datadog_api_client/v1/models/synthetics_api_step.rb +53 -142
  516. data/lib/datadog_api_client/v1/models/synthetics_api_step_subtype.rb +4 -19
  517. data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +63 -142
  518. data/lib/datadog_api_client/v1/models/synthetics_api_test_config.rb +9 -137
  519. data/lib/datadog_api_client/v1/models/synthetics_api_test_failure_code.rb +4 -19
  520. data/lib/datadog_api_client/v1/models/synthetics_api_test_result_data.rb +13 -143
  521. data/lib/datadog_api_client/v1/models/synthetics_api_test_result_failure.rb +7 -137
  522. data/lib/datadog_api_client/v1/models/synthetics_api_test_result_full.rb +12 -137
  523. data/lib/datadog_api_client/v1/models/synthetics_api_test_result_full_check.rb +17 -138
  524. data/lib/datadog_api_client/v1/models/synthetics_api_test_result_short.rb +11 -137
  525. data/lib/datadog_api_client/v1/models/synthetics_api_test_result_short_result.rb +8 -137
  526. data/lib/datadog_api_client/v1/models/synthetics_api_test_type.rb +4 -19
  527. data/lib/datadog_api_client/v1/models/synthetics_assertion.rb +7 -61
  528. data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_operator.rb +4 -19
  529. data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_target.rb +29 -139
  530. data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_target_target.rb +6 -138
  531. data/lib/datadog_api_client/v1/models/synthetics_assertion_operator.rb +4 -19
  532. data/lib/datadog_api_client/v1/models/synthetics_assertion_target.rb +42 -140
  533. data/lib/datadog_api_client/v1/models/synthetics_assertion_type.rb +4 -19
  534. data/lib/datadog_api_client/v1/models/synthetics_basic_auth.rb +5 -60
  535. data/lib/datadog_api_client/v1/models/synthetics_basic_auth_ntlm.rb +17 -138
  536. data/lib/datadog_api_client/v1/models/synthetics_basic_auth_ntlm_type.rb +4 -19
  537. data/lib/datadog_api_client/v1/models/synthetics_basic_auth_sigv4.rb +37 -140
  538. data/lib/datadog_api_client/v1/models/synthetics_basic_auth_sigv4_type.rb +4 -19
  539. data/lib/datadog_api_client/v1/models/synthetics_basic_auth_web.rb +37 -140
  540. data/lib/datadog_api_client/v1/models/synthetics_basic_auth_web_type.rb +4 -19
  541. data/lib/datadog_api_client/v1/models/synthetics_batch_details.rb +7 -137
  542. data/lib/datadog_api_client/v1/models/synthetics_batch_details_data.rb +8 -137
  543. data/lib/datadog_api_client/v1/models/synthetics_batch_result.rb +10 -137
  544. data/lib/datadog_api_client/v1/models/synthetics_browser_error.rb +37 -140
  545. data/lib/datadog_api_client/v1/models/synthetics_browser_error_type.rb +4 -19
  546. data/lib/datadog_api_client/v1/models/synthetics_browser_test.rb +61 -142
  547. data/lib/datadog_api_client/v1/models/synthetics_browser_test_config.rb +29 -139
  548. data/lib/datadog_api_client/v1/models/synthetics_browser_test_failure_code.rb +4 -19
  549. data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_data.rb +10 -138
  550. data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_failure.rb +7 -137
  551. data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_full.rb +12 -137
  552. data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_full_check.rb +17 -138
  553. data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_short.rb +11 -137
  554. data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_short_result.rb +7 -137
  555. data/lib/datadog_api_client/v1/models/synthetics_browser_test_type.rb +4 -19
  556. data/lib/datadog_api_client/v1/models/synthetics_browser_variable.rb +29 -140
  557. data/lib/datadog_api_client/v1/models/synthetics_browser_variable_type.rb +4 -19
  558. data/lib/datadog_api_client/v1/models/synthetics_check_type.rb +4 -19
  559. data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata.rb +8 -137
  560. data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_ci.rb +8 -137
  561. data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_git.rb +6 -137
  562. data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_pipeline.rb +6 -137
  563. data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_provider.rb +6 -137
  564. data/lib/datadog_api_client/v1/models/synthetics_ci_test.rb +21 -144
  565. data/lib/datadog_api_client/v1/models/synthetics_ci_test_body.rb +6 -137
  566. data/lib/datadog_api_client/v1/models/synthetics_config_variable.rb +27 -139
  567. data/lib/datadog_api_client/v1/models/synthetics_config_variable_type.rb +4 -19
  568. data/lib/datadog_api_client/v1/models/synthetics_core_web_vitals.rb +6 -137
  569. data/lib/datadog_api_client/v1/models/synthetics_delete_tests_payload.rb +8 -138
  570. data/lib/datadog_api_client/v1/models/synthetics_delete_tests_response.rb +8 -138
  571. data/lib/datadog_api_client/v1/models/synthetics_deleted_test.rb +8 -138
  572. data/lib/datadog_api_client/v1/models/synthetics_device.rb +47 -141
  573. data/lib/datadog_api_client/v1/models/synthetics_device_id.rb +4 -19
  574. data/lib/datadog_api_client/v1/models/synthetics_get_api_test_latest_results_response.rb +6 -137
  575. data/lib/datadog_api_client/v1/models/synthetics_get_browser_test_latest_results_response.rb +6 -137
  576. data/lib/datadog_api_client/v1/models/synthetics_global_variable.rb +49 -141
  577. data/lib/datadog_api_client/v1/models/synthetics_global_variable_attributes.rb +6 -137
  578. data/lib/datadog_api_client/v1/models/synthetics_global_variable_parse_test_options.rb +28 -139
  579. data/lib/datadog_api_client/v1/models/synthetics_global_variable_parse_test_options_type.rb +4 -19
  580. data/lib/datadog_api_client/v1/models/synthetics_global_variable_parser_type.rb +4 -19
  581. data/lib/datadog_api_client/v1/models/synthetics_global_variable_value.rb +8 -138
  582. data/lib/datadog_api_client/v1/models/synthetics_list_global_variables_response.rb +6 -137
  583. data/lib/datadog_api_client/v1/models/synthetics_list_tests_response.rb +6 -137
  584. data/lib/datadog_api_client/v1/models/synthetics_location.rb +8 -138
  585. data/lib/datadog_api_client/v1/models/synthetics_locations.rb +6 -137
  586. data/lib/datadog_api_client/v1/models/synthetics_parsing_options.rb +8 -137
  587. data/lib/datadog_api_client/v1/models/synthetics_playing_tab.rb +4 -19
  588. data/lib/datadog_api_client/v1/models/synthetics_private_location.rb +37 -140
  589. data/lib/datadog_api_client/v1/models/synthetics_private_location_creation_response.rb +8 -137
  590. data/lib/datadog_api_client/v1/models/synthetics_private_location_creation_response_result_encryption.rb +6 -137
  591. data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets.rb +8 -137
  592. data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets_authentication.rb +6 -137
  593. data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets_config_decryption.rb +6 -137
  594. data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate.rb +8 -137
  595. data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate_issuer.rb +6 -137
  596. data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate_subject.rb +6 -137
  597. data/lib/datadog_api_client/v1/models/synthetics_status.rb +4 -19
  598. data/lib/datadog_api_client/v1/models/synthetics_step.rb +7 -137
  599. data/lib/datadog_api_client/v1/models/synthetics_step_detail.rb +11 -139
  600. data/lib/datadog_api_client/v1/models/synthetics_step_detail_warning.rb +27 -139
  601. data/lib/datadog_api_client/v1/models/synthetics_step_type.rb +4 -19
  602. data/lib/datadog_api_client/v1/models/synthetics_test_config.rb +9 -137
  603. data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +14 -137
  604. data/lib/datadog_api_client/v1/models/synthetics_test_details_sub_type.rb +5 -19
  605. data/lib/datadog_api_client/v1/models/synthetics_test_details_type.rb +4 -19
  606. data/lib/datadog_api_client/v1/models/synthetics_test_execution_rule.rb +4 -19
  607. data/lib/datadog_api_client/v1/models/synthetics_test_monitor_status.rb +7 -19
  608. data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +28 -150
  609. data/lib/datadog_api_client/v1/models/synthetics_test_options_monitor_options.rb +12 -144
  610. data/lib/datadog_api_client/v1/models/synthetics_test_options_retry.rb +10 -139
  611. data/lib/datadog_api_client/v1/models/synthetics_test_pause_status.rb +5 -19
  612. data/lib/datadog_api_client/v1/models/synthetics_test_process_status.rb +4 -19
  613. data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +18 -151
  614. data/lib/datadog_api_client/v1/models/synthetics_test_request_certificate.rb +8 -137
  615. data/lib/datadog_api_client/v1/models/synthetics_test_request_certificate_item.rb +6 -137
  616. data/lib/datadog_api_client/v1/models/synthetics_test_request_proxy.rb +17 -141
  617. data/lib/datadog_api_client/v1/models/synthetics_timing.rb +8 -138
  618. data/lib/datadog_api_client/v1/models/synthetics_trigger_body.rb +16 -138
  619. data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_test_location.rb +6 -137
  620. data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_test_run_result.rb +7 -137
  621. data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_tests_response.rb +6 -137
  622. data/lib/datadog_api_client/v1/models/synthetics_trigger_test.rb +17 -138
  623. data/lib/datadog_api_client/v1/models/synthetics_update_test_pause_status_payload.rb +8 -137
  624. data/lib/datadog_api_client/v1/models/synthetics_variable_parser.rb +17 -138
  625. data/lib/datadog_api_client/v1/models/synthetics_warning_type.rb +4 -19
  626. data/lib/datadog_api_client/v1/models/table_widget_cell_display_mode.rb +4 -19
  627. data/lib/datadog_api_client/v1/models/table_widget_definition.rb +30 -139
  628. data/lib/datadog_api_client/v1/models/table_widget_definition_type.rb +4 -19
  629. data/lib/datadog_api_client/v1/models/table_widget_has_search_bar.rb +4 -19
  630. data/lib/datadog_api_client/v1/models/table_widget_request.rb +20 -139
  631. data/lib/datadog_api_client/v1/models/tag_to_hosts.rb +7 -140
  632. data/lib/datadog_api_client/v1/models/target_format_type.rb +6 -19
  633. data/lib/datadog_api_client/v1/models/timeseries_widget_definition.rb +26 -145
  634. data/lib/datadog_api_client/v1/models/timeseries_widget_definition_type.rb +4 -19
  635. data/lib/datadog_api_client/v1/models/timeseries_widget_expression_alias.rb +16 -138
  636. data/lib/datadog_api_client/v1/models/timeseries_widget_legend_column.rb +4 -19
  637. data/lib/datadog_api_client/v1/models/timeseries_widget_legend_layout.rb +4 -19
  638. data/lib/datadog_api_client/v1/models/timeseries_widget_request.rb +20 -139
  639. data/lib/datadog_api_client/v1/models/toplist_widget_definition.rb +29 -139
  640. data/lib/datadog_api_client/v1/models/toplist_widget_definition_type.rb +4 -19
  641. data/lib/datadog_api_client/v1/models/toplist_widget_request.rb +21 -142
  642. data/lib/datadog_api_client/v1/models/tree_map_color_by.rb +4 -19
  643. data/lib/datadog_api_client/v1/models/tree_map_group_by.rb +4 -19
  644. data/lib/datadog_api_client/v1/models/tree_map_size_by.rb +4 -19
  645. data/lib/datadog_api_client/v1/models/tree_map_widget_definition.rb +23 -146
  646. data/lib/datadog_api_client/v1/models/tree_map_widget_definition_type.rb +4 -19
  647. data/lib/datadog_api_client/v1/models/tree_map_widget_request.rb +9 -139
  648. data/lib/datadog_api_client/v1/models/usage_analyzed_logs_hour.rb +6 -137
  649. data/lib/datadog_api_client/v1/models/usage_analyzed_logs_response.rb +6 -137
  650. data/lib/datadog_api_client/v1/models/usage_attribution_aggregates_body.rb +6 -137
  651. data/lib/datadog_api_client/v1/models/usage_attribution_body.rb +8 -140
  652. data/lib/datadog_api_client/v1/models/usage_attribution_metadata.rb +7 -137
  653. data/lib/datadog_api_client/v1/models/usage_attribution_pagination.rb +6 -137
  654. data/lib/datadog_api_client/v1/models/usage_attribution_response.rb +7 -137
  655. data/lib/datadog_api_client/v1/models/usage_attribution_sort.rb +4 -19
  656. data/lib/datadog_api_client/v1/models/usage_attribution_supported_metrics.rb +4 -19
  657. data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +12 -139
  658. data/lib/datadog_api_client/v1/models/usage_audit_logs_hour.rb +6 -137
  659. data/lib/datadog_api_client/v1/models/usage_audit_logs_response.rb +6 -137
  660. data/lib/datadog_api_client/v1/models/usage_billable_summary_body.rb +6 -137
  661. data/lib/datadog_api_client/v1/models/usage_billable_summary_hour.rb +7 -137
  662. data/lib/datadog_api_client/v1/models/usage_billable_summary_keys.rb +38 -137
  663. data/lib/datadog_api_client/v1/models/usage_billable_summary_response.rb +6 -137
  664. data/lib/datadog_api_client/v1/models/usage_ci_visibility_hour.rb +169 -0
  665. data/lib/datadog_api_client/v1/models/usage_ci_visibility_response.rb +121 -0
  666. data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_hour.rb +6 -137
  667. data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_response.rb +6 -137
  668. data/lib/datadog_api_client/v1/models/usage_custom_reports_attributes.rb +6 -137
  669. data/lib/datadog_api_client/v1/models/usage_custom_reports_data.rb +8 -137
  670. data/lib/datadog_api_client/v1/models/usage_custom_reports_meta.rb +7 -137
  671. data/lib/datadog_api_client/v1/models/usage_custom_reports_page.rb +6 -137
  672. data/lib/datadog_api_client/v1/models/usage_custom_reports_response.rb +7 -137
  673. data/lib/datadog_api_client/v1/models/usage_cws_hour.rb +6 -137
  674. data/lib/datadog_api_client/v1/models/usage_cws_response.rb +6 -137
  675. data/lib/datadog_api_client/v1/models/usage_dbm_hour.rb +6 -137
  676. data/lib/datadog_api_client/v1/models/usage_dbm_response.rb +6 -137
  677. data/lib/datadog_api_client/v1/models/usage_fargate_hour.rb +6 -137
  678. data/lib/datadog_api_client/v1/models/usage_fargate_response.rb +6 -137
  679. data/lib/datadog_api_client/v1/models/usage_host_hour.rb +24 -146
  680. data/lib/datadog_api_client/v1/models/usage_hosts_response.rb +6 -137
  681. data/lib/datadog_api_client/v1/models/usage_incident_management_hour.rb +6 -137
  682. data/lib/datadog_api_client/v1/models/usage_incident_management_response.rb +6 -137
  683. data/lib/datadog_api_client/v1/models/usage_indexed_spans_hour.rb +6 -137
  684. data/lib/datadog_api_client/v1/models/usage_indexed_spans_response.rb +6 -137
  685. data/lib/datadog_api_client/v1/models/usage_ingested_spans_hour.rb +6 -137
  686. data/lib/datadog_api_client/v1/models/usage_ingested_spans_response.rb +6 -137
  687. data/lib/datadog_api_client/v1/models/usage_io_t_hour.rb +6 -137
  688. data/lib/datadog_api_client/v1/models/usage_io_t_response.rb +6 -137
  689. data/lib/datadog_api_client/v1/models/usage_lambda_hour.rb +8 -138
  690. data/lib/datadog_api_client/v1/models/usage_lambda_response.rb +8 -138
  691. data/lib/datadog_api_client/v1/models/usage_logs_by_index_hour.rb +6 -137
  692. data/lib/datadog_api_client/v1/models/usage_logs_by_index_response.rb +6 -137
  693. data/lib/datadog_api_client/v1/models/usage_logs_by_retention_hour.rb +7 -138
  694. data/lib/datadog_api_client/v1/models/usage_logs_by_retention_response.rb +6 -137
  695. data/lib/datadog_api_client/v1/models/usage_logs_hour.rb +6 -137
  696. data/lib/datadog_api_client/v1/models/usage_logs_response.rb +6 -137
  697. data/lib/datadog_api_client/v1/models/usage_metric_category.rb +4 -19
  698. data/lib/datadog_api_client/v1/models/usage_network_flows_hour.rb +6 -137
  699. data/lib/datadog_api_client/v1/models/usage_network_flows_response.rb +6 -137
  700. data/lib/datadog_api_client/v1/models/usage_network_hosts_hour.rb +6 -137
  701. data/lib/datadog_api_client/v1/models/usage_network_hosts_response.rb +6 -137
  702. data/lib/datadog_api_client/v1/models/usage_online_archive_hour.rb +149 -0
  703. data/lib/datadog_api_client/v1/models/usage_online_archive_response.rb +121 -0
  704. data/lib/datadog_api_client/v1/models/usage_profiling_hour.rb +6 -137
  705. data/lib/datadog_api_client/v1/models/usage_profiling_response.rb +6 -137
  706. data/lib/datadog_api_client/v1/models/usage_reports_type.rb +4 -19
  707. data/lib/datadog_api_client/v1/models/usage_rum_sessions_hour.rb +6 -137
  708. data/lib/datadog_api_client/v1/models/usage_rum_sessions_response.rb +6 -137
  709. data/lib/datadog_api_client/v1/models/usage_rum_units_hour.rb +7 -138
  710. data/lib/datadog_api_client/v1/models/usage_rum_units_response.rb +6 -137
  711. data/lib/datadog_api_client/v1/models/usage_sds_hour.rb +6 -137
  712. data/lib/datadog_api_client/v1/models/usage_sds_response.rb +6 -137
  713. data/lib/datadog_api_client/v1/models/usage_snmp_hour.rb +6 -137
  714. data/lib/datadog_api_client/v1/models/usage_snmp_response.rb +6 -137
  715. data/lib/datadog_api_client/v1/models/usage_sort.rb +4 -19
  716. data/lib/datadog_api_client/v1/models/usage_sort_direction.rb +4 -19
  717. data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_attributes.rb +6 -137
  718. data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_data.rb +8 -137
  719. data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_meta.rb +7 -137
  720. data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_page.rb +6 -137
  721. data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_response.rb +8 -137
  722. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +57 -138
  723. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +57 -138
  724. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +58 -138
  725. data/lib/datadog_api_client/v1/models/usage_synthetics_api_hour.rb +6 -137
  726. data/lib/datadog_api_client/v1/models/usage_synthetics_api_response.rb +6 -137
  727. data/lib/datadog_api_client/v1/models/usage_synthetics_browser_hour.rb +6 -137
  728. data/lib/datadog_api_client/v1/models/usage_synthetics_browser_response.rb +6 -137
  729. data/lib/datadog_api_client/v1/models/usage_synthetics_hour.rb +6 -137
  730. data/lib/datadog_api_client/v1/models/usage_synthetics_response.rb +6 -137
  731. data/lib/datadog_api_client/v1/models/usage_timeseries_hour.rb +6 -137
  732. data/lib/datadog_api_client/v1/models/usage_timeseries_response.rb +6 -137
  733. data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_hour.rb +7 -137
  734. data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_metadata.rb +7 -137
  735. data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_response.rb +7 -137
  736. data/lib/datadog_api_client/v1/models/user.rb +7 -137
  737. data/lib/datadog_api_client/v1/models/user_disable_response.rb +6 -137
  738. data/lib/datadog_api_client/v1/models/user_list_response.rb +6 -137
  739. data/lib/datadog_api_client/v1/models/user_response.rb +7 -137
  740. data/lib/datadog_api_client/v1/models/webhooks_integration.rb +36 -142
  741. data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable.rb +38 -141
  742. data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_response.rb +28 -140
  743. data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb +11 -139
  744. data/lib/datadog_api_client/v1/models/webhooks_integration_encoding.rb +4 -19
  745. data/lib/datadog_api_client/v1/models/webhooks_integration_update_request.rb +19 -141
  746. data/lib/datadog_api_client/v1/models/widget.rb +24 -139
  747. data/lib/datadog_api_client/v1/models/widget_aggregator.rb +4 -19
  748. data/lib/datadog_api_client/v1/models/widget_axis.rb +6 -137
  749. data/lib/datadog_api_client/v1/models/widget_change_type.rb +4 -19
  750. data/lib/datadog_api_client/v1/models/widget_color_preference.rb +4 -19
  751. data/lib/datadog_api_client/v1/models/widget_comparator.rb +4 -19
  752. data/lib/datadog_api_client/v1/models/widget_compare_to.rb +4 -19
  753. data/lib/datadog_api_client/v1/models/widget_conditional_format.rb +38 -140
  754. data/lib/datadog_api_client/v1/models/widget_custom_link.rb +6 -137
  755. data/lib/datadog_api_client/v1/models/widget_definition.rb +7 -62
  756. data/lib/datadog_api_client/v1/models/widget_display_type.rb +4 -19
  757. data/lib/datadog_api_client/v1/models/widget_event.rb +20 -139
  758. data/lib/datadog_api_client/v1/models/widget_event_size.rb +4 -19
  759. data/lib/datadog_api_client/v1/models/widget_field_sort.rb +27 -139
  760. data/lib/datadog_api_client/v1/models/widget_formula.rb +18 -138
  761. data/lib/datadog_api_client/v1/models/widget_formula_limit.rb +7 -137
  762. data/lib/datadog_api_client/v1/models/widget_grouping.rb +4 -19
  763. data/lib/datadog_api_client/v1/models/widget_horizontal_align.rb +4 -19
  764. data/lib/datadog_api_client/v1/models/widget_image_sizing.rb +5 -19
  765. data/lib/datadog_api_client/v1/models/widget_layout.rb +20 -162
  766. data/lib/datadog_api_client/v1/models/widget_layout_type.rb +4 -19
  767. data/lib/datadog_api_client/v1/models/widget_line_type.rb +4 -19
  768. data/lib/datadog_api_client/v1/models/widget_line_width.rb +4 -19
  769. data/lib/datadog_api_client/v1/models/widget_live_span.rb +4 -19
  770. data/lib/datadog_api_client/v1/models/widget_margin.rb +5 -19
  771. data/lib/datadog_api_client/v1/models/widget_marker.rb +21 -139
  772. data/lib/datadog_api_client/v1/models/widget_message_display.rb +4 -19
  773. data/lib/datadog_api_client/v1/models/widget_monitor_summary_display_format.rb +4 -19
  774. data/lib/datadog_api_client/v1/models/widget_monitor_summary_sort.rb +4 -19
  775. data/lib/datadog_api_client/v1/models/widget_node_type.rb +4 -19
  776. data/lib/datadog_api_client/v1/models/widget_order_by.rb +4 -19
  777. data/lib/datadog_api_client/v1/models/widget_palette.rb +4 -19
  778. data/lib/datadog_api_client/v1/models/widget_request_style.rb +8 -137
  779. data/lib/datadog_api_client/v1/models/widget_service_summary_display_format.rb +4 -19
  780. data/lib/datadog_api_client/v1/models/widget_size_format.rb +4 -19
  781. data/lib/datadog_api_client/v1/models/widget_sort.rb +4 -19
  782. data/lib/datadog_api_client/v1/models/widget_style.rb +6 -137
  783. data/lib/datadog_api_client/v1/models/widget_summary_type.rb +4 -19
  784. data/lib/datadog_api_client/v1/models/widget_text_align.rb +4 -19
  785. data/lib/datadog_api_client/v1/models/widget_tick_edge.rb +4 -19
  786. data/lib/datadog_api_client/v1/models/widget_time.rb +7 -137
  787. data/lib/datadog_api_client/v1/models/widget_time_windows.rb +4 -19
  788. data/lib/datadog_api_client/v1/models/widget_vertical_align.rb +4 -19
  789. data/lib/datadog_api_client/v1/models/widget_view_mode.rb +4 -19
  790. data/lib/datadog_api_client/v1/models/widget_viz_type.rb +4 -19
  791. data/lib/datadog_api_client/v1.rb +99 -68
  792. data/lib/datadog_api_client/v2/api/audit_api.rb +209 -0
  793. data/lib/datadog_api_client/v2/api/auth_n_mappings_api.rb +27 -22
  794. data/lib/datadog_api_client/v2/api/cloud_workload_security_api.rb +29 -22
  795. data/lib/datadog_api_client/v2/api/dashboard_lists_api.rb +15 -14
  796. data/lib/datadog_api_client/v2/api/incident_services_api.rb +36 -25
  797. data/lib/datadog_api_client/v2/api/incident_teams_api.rb +36 -25
  798. data/lib/datadog_api_client/v2/api/incidents_api.rb +28 -24
  799. data/lib/datadog_api_client/v2/api/key_management_api.rb +69 -56
  800. data/lib/datadog_api_client/v2/api/logs_api.rb +113 -21
  801. data/lib/datadog_api_client/v2/api/logs_archives_api.rb +57 -40
  802. data/lib/datadog_api_client/v2/api/logs_metrics_api.rb +26 -21
  803. data/lib/datadog_api_client/v2/api/metrics_api.rb +87 -44
  804. data/lib/datadog_api_client/v2/api/processes_api.rb +12 -13
  805. data/lib/datadog_api_client/v2/api/roles_api.rb +127 -122
  806. data/lib/datadog_api_client/v2/api/rum_api.rb +209 -0
  807. data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +93 -63
  808. data/lib/datadog_api_client/v2/api/service_accounts_api.rb +25 -20
  809. data/lib/datadog_api_client/v2/api/users_api.rb +71 -56
  810. data/lib/datadog_api_client/v2/api_client.rb +2 -2
  811. data/lib/datadog_api_client/v2/api_error.rb +2 -2
  812. data/lib/datadog_api_client/v2/configuration.rb +56 -56
  813. data/lib/datadog_api_client/v2/model_base.rb +252 -0
  814. data/lib/datadog_api_client/v2/models/api_error_response.rb +16 -138
  815. data/lib/datadog_api_client/v2/models/api_key_create_attributes.rb +16 -138
  816. data/lib/datadog_api_client/v2/models/api_key_create_data.rb +28 -139
  817. data/lib/datadog_api_client/v2/models/api_key_create_request.rb +17 -138
  818. data/lib/datadog_api_client/v2/models/api_key_relationships.rb +8 -137
  819. data/lib/datadog_api_client/v2/models/api_key_response.rb +7 -137
  820. data/lib/datadog_api_client/v2/models/api_key_response_included_item.rb +3 -58
  821. data/lib/datadog_api_client/v2/models/api_key_update_attributes.rb +16 -138
  822. data/lib/datadog_api_client/v2/models/api_key_update_data.rb +38 -140
  823. data/lib/datadog_api_client/v2/models/api_key_update_request.rb +17 -138
  824. data/lib/datadog_api_client/v2/models/api_keys_response.rb +6 -137
  825. data/lib/datadog_api_client/v2/models/api_keys_sort.rb +4 -19
  826. data/lib/datadog_api_client/v2/models/api_keys_type.rb +4 -19
  827. data/lib/datadog_api_client/v2/models/application_key_create_attributes.rb +17 -139
  828. data/lib/datadog_api_client/v2/models/application_key_create_data.rb +28 -139
  829. data/lib/datadog_api_client/v2/models/application_key_create_request.rb +17 -138
  830. data/lib/datadog_api_client/v2/models/application_key_relationships.rb +7 -137
  831. data/lib/datadog_api_client/v2/models/application_key_response.rb +7 -137
  832. data/lib/datadog_api_client/v2/models/application_key_response_included_item.rb +5 -60
  833. data/lib/datadog_api_client/v2/models/application_key_update_attributes.rb +7 -138
  834. data/lib/datadog_api_client/v2/models/application_key_update_data.rb +38 -140
  835. data/lib/datadog_api_client/v2/models/application_key_update_request.rb +17 -138
  836. data/lib/datadog_api_client/v2/models/application_keys_sort.rb +4 -19
  837. data/lib/datadog_api_client/v2/models/application_keys_type.rb +4 -19
  838. data/lib/datadog_api_client/v2/models/audit_logs_event.rb +141 -0
  839. data/lib/datadog_api_client/v2/models/audit_logs_event_attributes.rb +153 -0
  840. data/lib/datadog_api_client/v2/models/audit_logs_event_type.rb +26 -0
  841. data/lib/datadog_api_client/v2/models/audit_logs_events_response.rb +141 -0
  842. data/lib/datadog_api_client/v2/models/audit_logs_query_filter.rb +145 -0
  843. data/lib/datadog_api_client/v2/models/audit_logs_query_options.rb +132 -0
  844. data/lib/datadog_api_client/v2/models/audit_logs_query_page_options.rb +145 -0
  845. data/lib/datadog_api_client/v2/models/audit_logs_response_links.rb +120 -0
  846. data/lib/datadog_api_client/v2/models/audit_logs_response_metadata.rb +162 -0
  847. data/lib/datadog_api_client/v2/models/audit_logs_response_page.rb +119 -0
  848. data/lib/datadog_api_client/v2/models/audit_logs_response_status.rb +27 -0
  849. data/lib/datadog_api_client/v2/models/audit_logs_search_events_request.rb +150 -0
  850. data/lib/datadog_api_client/v2/models/audit_logs_sort.rb +27 -0
  851. data/lib/datadog_api_client/v2/models/audit_logs_warning.rb +139 -0
  852. data/lib/datadog_api_client/v2/models/auth_n_mapping.rb +29 -139
  853. data/lib/datadog_api_client/v2/models/auth_n_mapping_attributes.rb +8 -140
  854. data/lib/datadog_api_client/v2/models/auth_n_mapping_create_attributes.rb +6 -137
  855. data/lib/datadog_api_client/v2/models/auth_n_mapping_create_data.rb +19 -138
  856. data/lib/datadog_api_client/v2/models/auth_n_mapping_create_relationships.rb +7 -137
  857. data/lib/datadog_api_client/v2/models/auth_n_mapping_create_request.rb +17 -138
  858. data/lib/datadog_api_client/v2/models/auth_n_mapping_included.rb +5 -60
  859. data/lib/datadog_api_client/v2/models/auth_n_mapping_relationships.rb +8 -137
  860. data/lib/datadog_api_client/v2/models/auth_n_mapping_response.rb +7 -137
  861. data/lib/datadog_api_client/v2/models/auth_n_mapping_update_attributes.rb +6 -137
  862. data/lib/datadog_api_client/v2/models/auth_n_mapping_update_data.rb +29 -139
  863. data/lib/datadog_api_client/v2/models/auth_n_mapping_update_relationships.rb +7 -137
  864. data/lib/datadog_api_client/v2/models/auth_n_mapping_update_request.rb +17 -138
  865. data/lib/datadog_api_client/v2/models/auth_n_mappings_response.rb +7 -137
  866. data/lib/datadog_api_client/v2/models/auth_n_mappings_sort.rb +4 -19
  867. data/lib/datadog_api_client/v2/models/auth_n_mappings_type.rb +4 -19
  868. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_attributes.rb +8 -137
  869. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_attributes.rb +26 -139
  870. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_data.rb +28 -139
  871. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_request.rb +17 -138
  872. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_creator_attributes.rb +6 -137
  873. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_data.rb +8 -137
  874. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_response.rb +7 -137
  875. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_type.rb +4 -19
  876. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_attributes.rb +6 -137
  877. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_data.rb +28 -139
  878. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_request.rb +17 -138
  879. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_updater_attributes.rb +6 -137
  880. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rules_list_response.rb +6 -137
  881. data/lib/datadog_api_client/v2/models/content_encoding.rb +4 -19
  882. data/lib/datadog_api_client/v2/models/creator.rb +6 -137
  883. data/lib/datadog_api_client/v2/models/dashboard_list_add_items_request.rb +6 -137
  884. data/lib/datadog_api_client/v2/models/dashboard_list_add_items_response.rb +6 -137
  885. data/lib/datadog_api_client/v2/models/dashboard_list_delete_items_request.rb +6 -137
  886. data/lib/datadog_api_client/v2/models/dashboard_list_delete_items_response.rb +6 -137
  887. data/lib/datadog_api_client/v2/models/dashboard_list_item.rb +30 -142
  888. data/lib/datadog_api_client/v2/models/dashboard_list_item_request.rb +27 -139
  889. data/lib/datadog_api_client/v2/models/dashboard_list_item_response.rb +27 -139
  890. data/lib/datadog_api_client/v2/models/dashboard_list_items.rb +16 -138
  891. data/lib/datadog_api_client/v2/models/dashboard_list_update_items_request.rb +6 -137
  892. data/lib/datadog_api_client/v2/models/dashboard_list_update_items_response.rb +6 -137
  893. data/lib/datadog_api_client/v2/models/dashboard_type.rb +4 -19
  894. data/lib/datadog_api_client/v2/models/full_api_key.rb +9 -137
  895. data/lib/datadog_api_client/v2/models/full_api_key_attributes.rb +8 -142
  896. data/lib/datadog_api_client/v2/models/full_application_key.rb +9 -137
  897. data/lib/datadog_api_client/v2/models/full_application_key_attributes.rb +9 -143
  898. data/lib/datadog_api_client/v2/models/http_log_error.rb +6 -137
  899. data/lib/datadog_api_client/v2/models/http_log_errors.rb +6 -137
  900. data/lib/datadog_api_client/v2/models/http_log_item.rb +15 -140
  901. data/lib/datadog_api_client/v2/models/incident_create_attributes.rb +27 -142
  902. data/lib/datadog_api_client/v2/models/incident_create_data.rb +29 -139
  903. data/lib/datadog_api_client/v2/models/incident_create_relationships.rb +27 -148
  904. data/lib/datadog_api_client/v2/models/incident_create_request.rb +17 -138
  905. data/lib/datadog_api_client/v2/models/incident_field_attributes.rb +5 -60
  906. data/lib/datadog_api_client/v2/models/incident_field_attributes_multiple_value.rb +8 -138
  907. data/lib/datadog_api_client/v2/models/incident_field_attributes_single_value.rb +8 -138
  908. data/lib/datadog_api_client/v2/models/incident_field_attributes_single_value_type.rb +4 -19
  909. data/lib/datadog_api_client/v2/models/incident_field_attributes_value_type.rb +4 -19
  910. data/lib/datadog_api_client/v2/models/incident_integration_metadata_type.rb +4 -19
  911. data/lib/datadog_api_client/v2/models/incident_notification_handle.rb +6 -137
  912. data/lib/datadog_api_client/v2/models/incident_postmortem_type.rb +4 -19
  913. data/lib/datadog_api_client/v2/models/incident_related_object.rb +4 -19
  914. data/lib/datadog_api_client/v2/models/incident_response.rb +17 -138
  915. data/lib/datadog_api_client/v2/models/incident_response_attributes.rb +21 -143
  916. data/lib/datadog_api_client/v2/models/incident_response_data.rb +29 -139
  917. data/lib/datadog_api_client/v2/models/incident_response_included_item.rb +3 -58
  918. data/lib/datadog_api_client/v2/models/incident_response_meta.rb +7 -137
  919. data/lib/datadog_api_client/v2/models/incident_response_meta_pagination.rb +6 -137
  920. data/lib/datadog_api_client/v2/models/incident_response_relationships.rb +12 -138
  921. data/lib/datadog_api_client/v2/models/incident_service_create_attributes.rb +16 -138
  922. data/lib/datadog_api_client/v2/models/incident_service_create_data.rb +19 -138
  923. data/lib/datadog_api_client/v2/models/incident_service_create_request.rb +17 -138
  924. data/lib/datadog_api_client/v2/models/incident_service_included_items.rb +3 -58
  925. data/lib/datadog_api_client/v2/models/incident_service_relationships.rb +8 -137
  926. data/lib/datadog_api_client/v2/models/incident_service_response.rb +17 -138
  927. data/lib/datadog_api_client/v2/models/incident_service_response_attributes.rb +6 -137
  928. data/lib/datadog_api_client/v2/models/incident_service_response_data.rb +29 -139
  929. data/lib/datadog_api_client/v2/models/incident_service_type.rb +4 -19
  930. data/lib/datadog_api_client/v2/models/incident_service_update_attributes.rb +16 -138
  931. data/lib/datadog_api_client/v2/models/incident_service_update_data.rb +19 -138
  932. data/lib/datadog_api_client/v2/models/incident_service_update_request.rb +17 -138
  933. data/lib/datadog_api_client/v2/models/incident_services_response.rb +17 -138
  934. data/lib/datadog_api_client/v2/models/incident_team_create_attributes.rb +16 -138
  935. data/lib/datadog_api_client/v2/models/incident_team_create_data.rb +19 -138
  936. data/lib/datadog_api_client/v2/models/incident_team_create_request.rb +17 -138
  937. data/lib/datadog_api_client/v2/models/incident_team_included_items.rb +3 -58
  938. data/lib/datadog_api_client/v2/models/incident_team_relationships.rb +8 -137
  939. data/lib/datadog_api_client/v2/models/incident_team_response.rb +17 -138
  940. data/lib/datadog_api_client/v2/models/incident_team_response_attributes.rb +6 -137
  941. data/lib/datadog_api_client/v2/models/incident_team_response_data.rb +9 -137
  942. data/lib/datadog_api_client/v2/models/incident_team_type.rb +4 -19
  943. data/lib/datadog_api_client/v2/models/incident_team_update_attributes.rb +16 -138
  944. data/lib/datadog_api_client/v2/models/incident_team_update_data.rb +19 -138
  945. data/lib/datadog_api_client/v2/models/incident_team_update_request.rb +17 -138
  946. data/lib/datadog_api_client/v2/models/incident_teams_response.rb +17 -138
  947. data/lib/datadog_api_client/v2/models/incident_timeline_cell_create_attributes.rb +3 -58
  948. data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_content_type.rb +4 -19
  949. data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_create_attributes.rb +28 -139
  950. data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_create_attributes_content.rb +6 -137
  951. data/lib/datadog_api_client/v2/models/incident_type.rb +4 -19
  952. data/lib/datadog_api_client/v2/models/incident_update_attributes.rb +7 -140
  953. data/lib/datadog_api_client/v2/models/incident_update_data.rb +29 -139
  954. data/lib/datadog_api_client/v2/models/incident_update_relationships.rb +11 -157
  955. data/lib/datadog_api_client/v2/models/incident_update_request.rb +17 -138
  956. data/lib/datadog_api_client/v2/models/incidents_response.rb +17 -138
  957. data/lib/datadog_api_client/v2/models/list_application_keys_response.rb +6 -137
  958. data/lib/datadog_api_client/v2/models/log.rb +8 -137
  959. data/lib/datadog_api_client/v2/models/log_attributes.rb +13 -142
  960. data/lib/datadog_api_client/v2/models/log_type.rb +4 -19
  961. data/lib/datadog_api_client/v2/models/logs_aggregate_bucket.rb +8 -143
  962. data/lib/datadog_api_client/v2/models/logs_aggregate_bucket_value.rb +6 -61
  963. data/lib/datadog_api_client/v2/models/logs_aggregate_bucket_value_timeseries_point.rb +6 -137
  964. data/lib/datadog_api_client/v2/models/logs_aggregate_request.rb +10 -137
  965. data/lib/datadog_api_client/v2/models/logs_aggregate_request_page.rb +6 -137
  966. data/lib/datadog_api_client/v2/models/logs_aggregate_response.rb +8 -137
  967. data/lib/datadog_api_client/v2/models/logs_aggregate_response_data.rb +6 -137
  968. data/lib/datadog_api_client/v2/models/logs_aggregate_response_status.rb +4 -19
  969. data/lib/datadog_api_client/v2/models/logs_aggregate_sort.rb +9 -137
  970. data/lib/datadog_api_client/v2/models/logs_aggregate_sort_type.rb +4 -19
  971. data/lib/datadog_api_client/v2/models/logs_aggregation_function.rb +4 -19
  972. data/lib/datadog_api_client/v2/models/logs_archive.rb +7 -137
  973. data/lib/datadog_api_client/v2/models/logs_archive_attributes.rb +30 -140
  974. data/lib/datadog_api_client/v2/models/logs_archive_create_request.rb +7 -137
  975. data/lib/datadog_api_client/v2/models/logs_archive_create_request_attributes.rb +39 -141
  976. data/lib/datadog_api_client/v2/models/logs_archive_create_request_definition.rb +17 -138
  977. data/lib/datadog_api_client/v2/models/logs_archive_create_request_destination.rb +3 -58
  978. data/lib/datadog_api_client/v2/models/logs_archive_definition.rb +17 -138
  979. data/lib/datadog_api_client/v2/models/logs_archive_destination.rb +3 -58
  980. data/lib/datadog_api_client/v2/models/logs_archive_destination_azure.rb +48 -141
  981. data/lib/datadog_api_client/v2/models/logs_archive_destination_azure_type.rb +4 -19
  982. data/lib/datadog_api_client/v2/models/logs_archive_destination_gcs.rb +38 -140
  983. data/lib/datadog_api_client/v2/models/logs_archive_destination_gcs_type.rb +4 -19
  984. data/lib/datadog_api_client/v2/models/logs_archive_destination_s3.rb +38 -140
  985. data/lib/datadog_api_client/v2/models/logs_archive_destination_s3_type.rb +4 -19
  986. data/lib/datadog_api_client/v2/models/logs_archive_integration_azure.rb +26 -139
  987. data/lib/datadog_api_client/v2/models/logs_archive_integration_gcs.rb +26 -139
  988. data/lib/datadog_api_client/v2/models/logs_archive_integration_s3.rb +26 -139
  989. data/lib/datadog_api_client/v2/models/logs_archive_order.rb +7 -137
  990. data/lib/datadog_api_client/v2/models/logs_archive_order_attributes.rb +18 -139
  991. data/lib/datadog_api_client/v2/models/logs_archive_order_definition.rb +28 -139
  992. data/lib/datadog_api_client/v2/models/logs_archive_order_definition_type.rb +4 -19
  993. data/lib/datadog_api_client/v2/models/logs_archive_state.rb +4 -19
  994. data/lib/datadog_api_client/v2/models/logs_archives.rb +6 -137
  995. data/lib/datadog_api_client/v2/models/logs_compute.rb +20 -139
  996. data/lib/datadog_api_client/v2/models/logs_compute_type.rb +4 -19
  997. data/lib/datadog_api_client/v2/models/logs_group_by.rb +23 -138
  998. data/lib/datadog_api_client/v2/models/logs_group_by_histogram.rb +42 -143
  999. data/lib/datadog_api_client/v2/models/logs_group_by_missing.rb +5 -60
  1000. data/lib/datadog_api_client/v2/models/logs_group_by_total.rb +6 -61
  1001. data/lib/datadog_api_client/v2/models/logs_list_request.rb +11 -137
  1002. data/lib/datadog_api_client/v2/models/logs_list_request_page.rb +8 -140
  1003. data/lib/datadog_api_client/v2/models/logs_list_response.rb +8 -137
  1004. data/lib/datadog_api_client/v2/models/logs_list_response_links.rb +8 -138
  1005. data/lib/datadog_api_client/v2/models/logs_metric_compute.rb +18 -139
  1006. data/lib/datadog_api_client/v2/models/logs_metric_compute_aggregation_type.rb +4 -19
  1007. data/lib/datadog_api_client/v2/models/logs_metric_create_attributes.rb +18 -138
  1008. data/lib/datadog_api_client/v2/models/logs_metric_create_data.rb +38 -140
  1009. data/lib/datadog_api_client/v2/models/logs_metric_create_request.rb +17 -138
  1010. data/lib/datadog_api_client/v2/models/logs_metric_filter.rb +6 -137
  1011. data/lib/datadog_api_client/v2/models/logs_metric_group_by.rb +16 -138
  1012. data/lib/datadog_api_client/v2/models/logs_metric_response.rb +7 -137
  1013. data/lib/datadog_api_client/v2/models/logs_metric_response_attributes.rb +8 -137
  1014. data/lib/datadog_api_client/v2/models/logs_metric_response_compute.rb +8 -138
  1015. data/lib/datadog_api_client/v2/models/logs_metric_response_compute_aggregation_type.rb +4 -19
  1016. data/lib/datadog_api_client/v2/models/logs_metric_response_data.rb +8 -137
  1017. data/lib/datadog_api_client/v2/models/logs_metric_response_filter.rb +6 -137
  1018. data/lib/datadog_api_client/v2/models/logs_metric_response_group_by.rb +6 -137
  1019. data/lib/datadog_api_client/v2/models/logs_metric_type.rb +4 -19
  1020. data/lib/datadog_api_client/v2/models/logs_metric_update_attributes.rb +7 -137
  1021. data/lib/datadog_api_client/v2/models/logs_metric_update_data.rb +28 -139
  1022. data/lib/datadog_api_client/v2/models/logs_metric_update_request.rb +17 -138
  1023. data/lib/datadog_api_client/v2/models/logs_metrics_response.rb +6 -137
  1024. data/lib/datadog_api_client/v2/models/logs_query_filter.rb +8 -137
  1025. data/lib/datadog_api_client/v2/models/logs_query_options.rb +9 -139
  1026. data/lib/datadog_api_client/v2/models/logs_response_metadata.rb +10 -138
  1027. data/lib/datadog_api_client/v2/models/logs_response_metadata_page.rb +8 -138
  1028. data/lib/datadog_api_client/v2/models/logs_sort.rb +4 -19
  1029. data/lib/datadog_api_client/v2/models/logs_sort_order.rb +4 -19
  1030. data/lib/datadog_api_client/v2/models/logs_warning.rb +6 -137
  1031. data/lib/datadog_api_client/v2/models/metric.rb +7 -137
  1032. data/lib/datadog_api_client/v2/models/metric_all_tags.rb +8 -137
  1033. data/lib/datadog_api_client/v2/models/metric_all_tags_attributes.rb +6 -137
  1034. data/lib/datadog_api_client/v2/models/metric_all_tags_response.rb +7 -137
  1035. data/lib/datadog_api_client/v2/models/metric_bulk_configure_tags_type.rb +4 -19
  1036. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create.rb +28 -139
  1037. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb +6 -137
  1038. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_request.rb +17 -138
  1039. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete.rb +28 -139
  1040. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete_attributes.rb +6 -137
  1041. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete_request.rb +17 -138
  1042. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_response.rb +8 -137
  1043. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_status.rb +30 -140
  1044. data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_status_attributes.rb +6 -137
  1045. data/lib/datadog_api_client/v2/models/metric_custom_aggregation.rb +28 -139
  1046. data/lib/datadog_api_client/v2/models/metric_custom_space_aggregation.rb +4 -19
  1047. data/lib/datadog_api_client/v2/models/metric_custom_time_aggregation.rb +4 -19
  1048. data/lib/datadog_api_client/v2/models/metric_distinct_volume.rb +8 -137
  1049. data/lib/datadog_api_client/v2/models/metric_distinct_volume_attributes.rb +6 -137
  1050. data/lib/datadog_api_client/v2/models/metric_distinct_volume_type.rb +4 -19
  1051. data/lib/datadog_api_client/v2/models/metric_ingested_indexed_volume.rb +8 -137
  1052. data/lib/datadog_api_client/v2/models/metric_ingested_indexed_volume_attributes.rb +6 -137
  1053. data/lib/datadog_api_client/v2/models/metric_ingested_indexed_volume_type.rb +4 -19
  1054. data/lib/datadog_api_client/v2/models/metric_tag_configuration.rb +8 -137
  1055. data/lib/datadog_api_client/v2/models/metric_tag_configuration_attributes.rb +25 -139
  1056. data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +47 -141
  1057. data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_data.rb +28 -139
  1058. data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_request.rb +17 -138
  1059. data/lib/datadog_api_client/v2/models/metric_tag_configuration_metric_types.rb +4 -19
  1060. data/lib/datadog_api_client/v2/models/metric_tag_configuration_response.rb +7 -137
  1061. data/lib/datadog_api_client/v2/models/metric_tag_configuration_type.rb +4 -19
  1062. data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +26 -139
  1063. data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_data.rb +28 -139
  1064. data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_request.rb +17 -138
  1065. data/lib/datadog_api_client/v2/models/metric_type.rb +4 -19
  1066. data/lib/datadog_api_client/v2/models/metric_volumes.rb +3 -58
  1067. data/lib/datadog_api_client/v2/models/metric_volumes_response.rb +7 -137
  1068. data/lib/datadog_api_client/v2/models/metrics_and_metric_tag_configurations.rb +3 -58
  1069. data/lib/datadog_api_client/v2/models/metrics_and_metric_tag_configurations_response.rb +6 -137
  1070. data/lib/datadog_api_client/v2/models/nullable_relationship_to_user.rb +120 -0
  1071. data/lib/datadog_api_client/v2/models/nullable_relationship_to_user_data.rb +159 -0
  1072. data/lib/datadog_api_client/v2/models/organization.rb +18 -138
  1073. data/lib/datadog_api_client/v2/models/organization_attributes.rb +6 -137
  1074. data/lib/datadog_api_client/v2/models/organizations_type.rb +4 -19
  1075. data/lib/datadog_api_client/v2/models/pagination.rb +6 -137
  1076. data/lib/datadog_api_client/v2/models/partial_api_key.rb +9 -137
  1077. data/lib/datadog_api_client/v2/models/partial_api_key_attributes.rb +8 -142
  1078. data/lib/datadog_api_client/v2/models/partial_application_key.rb +9 -137
  1079. data/lib/datadog_api_client/v2/models/partial_application_key_attributes.rb +9 -143
  1080. data/lib/datadog_api_client/v2/models/partial_application_key_response.rb +7 -137
  1081. data/lib/datadog_api_client/v2/models/permission.rb +18 -138
  1082. data/lib/datadog_api_client/v2/models/permission_attributes.rb +6 -137
  1083. data/lib/datadog_api_client/v2/models/permissions_response.rb +6 -137
  1084. data/lib/datadog_api_client/v2/models/permissions_type.rb +4 -19
  1085. data/lib/datadog_api_client/v2/models/process_summaries_meta.rb +7 -137
  1086. data/lib/datadog_api_client/v2/models/process_summaries_meta_page.rb +10 -143
  1087. data/lib/datadog_api_client/v2/models/process_summaries_response.rb +7 -137
  1088. data/lib/datadog_api_client/v2/models/process_summary.rb +8 -137
  1089. data/lib/datadog_api_client/v2/models/process_summary_attributes.rb +6 -137
  1090. data/lib/datadog_api_client/v2/models/process_summary_type.rb +4 -19
  1091. data/lib/datadog_api_client/v2/models/query_sort_order.rb +4 -19
  1092. data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadata_data.rb +27 -139
  1093. data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadatas.rb +16 -138
  1094. data/lib/datadog_api_client/v2/models/relationship_to_incident_postmortem.rb +17 -138
  1095. data/lib/datadog_api_client/v2/models/relationship_to_incident_postmortem_data.rb +27 -139
  1096. data/lib/datadog_api_client/v2/models/relationship_to_organization.rb +17 -138
  1097. data/lib/datadog_api_client/v2/models/relationship_to_organization_data.rb +27 -139
  1098. data/lib/datadog_api_client/v2/models/relationship_to_organizations.rb +16 -138
  1099. data/lib/datadog_api_client/v2/models/relationship_to_permission.rb +7 -137
  1100. data/lib/datadog_api_client/v2/models/relationship_to_permission_data.rb +7 -137
  1101. data/lib/datadog_api_client/v2/models/relationship_to_permissions.rb +6 -137
  1102. data/lib/datadog_api_client/v2/models/relationship_to_role.rb +7 -137
  1103. data/lib/datadog_api_client/v2/models/relationship_to_role_data.rb +8 -138
  1104. data/lib/datadog_api_client/v2/models/relationship_to_roles.rb +7 -138
  1105. data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute.rb +17 -138
  1106. data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute_data.rb +20 -144
  1107. data/lib/datadog_api_client/v2/models/relationship_to_user.rb +17 -138
  1108. data/lib/datadog_api_client/v2/models/relationship_to_user_data.rb +27 -139
  1109. data/lib/datadog_api_client/v2/models/relationship_to_users.rb +16 -138
  1110. data/lib/datadog_api_client/v2/models/response_meta_attributes.rb +7 -137
  1111. data/lib/datadog_api_client/v2/models/role.rb +20 -139
  1112. data/lib/datadog_api_client/v2/models/role_attributes.rb +7 -138
  1113. data/lib/datadog_api_client/v2/models/role_clone.rb +28 -139
  1114. data/lib/datadog_api_client/v2/models/role_clone_attributes.rb +16 -138
  1115. data/lib/datadog_api_client/v2/models/role_clone_request.rb +17 -138
  1116. data/lib/datadog_api_client/v2/models/role_create_attributes.rb +16 -138
  1117. data/lib/datadog_api_client/v2/models/role_create_data.rb +19 -138
  1118. data/lib/datadog_api_client/v2/models/role_create_request.rb +17 -138
  1119. data/lib/datadog_api_client/v2/models/role_create_response.rb +7 -137
  1120. data/lib/datadog_api_client/v2/models/role_create_response_data.rb +20 -139
  1121. data/lib/datadog_api_client/v2/models/role_relationships.rb +8 -137
  1122. data/lib/datadog_api_client/v2/models/role_response.rb +7 -137
  1123. data/lib/datadog_api_client/v2/models/role_response_relationships.rb +7 -137
  1124. data/lib/datadog_api_client/v2/models/role_update_attributes.rb +6 -137
  1125. data/lib/datadog_api_client/v2/models/role_update_data.rb +39 -141
  1126. data/lib/datadog_api_client/v2/models/role_update_request.rb +17 -138
  1127. data/lib/datadog_api_client/v2/models/role_update_response.rb +7 -137
  1128. data/lib/datadog_api_client/v2/models/role_update_response_data.rb +20 -139
  1129. data/lib/datadog_api_client/v2/models/roles_response.rb +7 -137
  1130. data/lib/datadog_api_client/v2/models/roles_sort.rb +4 -19
  1131. data/lib/datadog_api_client/v2/models/roles_type.rb +4 -19
  1132. data/lib/datadog_api_client/v2/models/rum_event.rb +141 -0
  1133. data/lib/datadog_api_client/v2/models/rum_event_attributes.rb +153 -0
  1134. data/lib/datadog_api_client/v2/models/rum_event_type.rb +26 -0
  1135. data/lib/datadog_api_client/v2/models/rum_events_response.rb +141 -0
  1136. data/lib/datadog_api_client/v2/models/rum_query_filter.rb +145 -0
  1137. data/lib/datadog_api_client/v2/models/rum_query_options.rb +132 -0
  1138. data/lib/datadog_api_client/v2/models/rum_query_page_options.rb +145 -0
  1139. data/lib/datadog_api_client/v2/models/rum_response_links.rb +120 -0
  1140. data/lib/datadog_api_client/v2/models/rum_response_metadata.rb +162 -0
  1141. data/lib/datadog_api_client/v2/models/rum_response_page.rb +119 -0
  1142. data/lib/datadog_api_client/v2/models/rum_response_status.rb +27 -0
  1143. data/lib/datadog_api_client/v2/models/rum_search_events_request.rb +150 -0
  1144. data/lib/datadog_api_client/v2/models/rum_sort.rb +27 -0
  1145. data/lib/datadog_api_client/v2/models/rum_warning.rb +139 -0
  1146. data/lib/datadog_api_client/v2/models/saml_assertion_attribute.rb +21 -144
  1147. data/lib/datadog_api_client/v2/models/saml_assertion_attribute_attributes.rb +6 -137
  1148. data/lib/datadog_api_client/v2/models/saml_assertion_attributes_type.rb +4 -19
  1149. data/lib/datadog_api_client/v2/models/security_filter.rb +8 -137
  1150. data/lib/datadog_api_client/v2/models/security_filter_attributes.rb +9 -140
  1151. data/lib/datadog_api_client/v2/models/security_filter_create_attributes.rb +57 -142
  1152. data/lib/datadog_api_client/v2/models/security_filter_create_data.rb +28 -139
  1153. data/lib/datadog_api_client/v2/models/security_filter_create_request.rb +17 -138
  1154. data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter.rb +26 -139
  1155. data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter_response.rb +6 -137
  1156. data/lib/datadog_api_client/v2/models/security_filter_filtered_data_type.rb +4 -19
  1157. data/lib/datadog_api_client/v2/models/security_filter_meta.rb +6 -137
  1158. data/lib/datadog_api_client/v2/models/security_filter_response.rb +8 -137
  1159. data/lib/datadog_api_client/v2/models/security_filter_type.rb +4 -19
  1160. data/lib/datadog_api_client/v2/models/security_filter_update_attributes.rb +9 -140
  1161. data/lib/datadog_api_client/v2/models/security_filter_update_data.rb +28 -139
  1162. data/lib/datadog_api_client/v2/models/security_filter_update_request.rb +17 -138
  1163. data/lib/datadog_api_client/v2/models/security_filters_response.rb +7 -137
  1164. data/lib/datadog_api_client/v2/models/security_monitoring_filter.rb +7 -137
  1165. data/lib/datadog_api_client/v2/models/security_monitoring_filter_action.rb +4 -19
  1166. data/lib/datadog_api_client/v2/models/security_monitoring_list_rules_response.rb +7 -137
  1167. data/lib/datadog_api_client/v2/models/security_monitoring_rule_case.rb +9 -138
  1168. data/lib/datadog_api_client/v2/models/security_monitoring_rule_case_create.rb +19 -139
  1169. data/lib/datadog_api_client/v2/models/security_monitoring_rule_create_payload.rb +68 -143
  1170. data/lib/datadog_api_client/v2/models/security_monitoring_rule_detection_method.rb +5 -19
  1171. data/lib/datadog_api_client/v2/models/security_monitoring_rule_evaluation_window.rb +5 -19
  1172. data/lib/datadog_api_client/v2/models/security_monitoring_rule_impossible_travel_options.rb +120 -0
  1173. data/lib/datadog_api_client/v2/models/security_monitoring_rule_keep_alive.rb +5 -19
  1174. data/lib/datadog_api_client/v2/models/security_monitoring_rule_max_signal_duration.rb +5 -19
  1175. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +9 -137
  1176. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_forget_after.rb +4 -19
  1177. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_duration.rb +5 -19
  1178. data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +25 -138
  1179. data/lib/datadog_api_client/v2/models/security_monitoring_rule_query.rb +9 -138
  1180. data/lib/datadog_api_client/v2/models/security_monitoring_rule_query_aggregation.rb +5 -19
  1181. data/lib/datadog_api_client/v2/models/security_monitoring_rule_query_create.rb +19 -139
  1182. data/lib/datadog_api_client/v2/models/security_monitoring_rule_response.rb +8 -137
  1183. data/lib/datadog_api_client/v2/models/security_monitoring_rule_severity.rb +4 -19
  1184. data/lib/datadog_api_client/v2/models/security_monitoring_rule_type_create.rb +4 -19
  1185. data/lib/datadog_api_client/v2/models/security_monitoring_rule_type_read.rb +4 -19
  1186. data/lib/datadog_api_client/v2/models/security_monitoring_rule_update_payload.rb +9 -140
  1187. data/lib/datadog_api_client/v2/models/security_monitoring_signal.rb +9 -137
  1188. data/lib/datadog_api_client/v2/models/security_monitoring_signal_attributes.rb +10 -144
  1189. data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request.rb +9 -137
  1190. data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request_filter.rb +6 -137
  1191. data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request_page.rb +8 -140
  1192. data/lib/datadog_api_client/v2/models/security_monitoring_signal_type.rb +4 -19
  1193. data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response.rb +10 -138
  1194. data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_links.rb +8 -138
  1195. data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_meta.rb +7 -137
  1196. data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_meta_page.rb +8 -138
  1197. data/lib/datadog_api_client/v2/models/security_monitoring_signals_sort.rb +4 -19
  1198. data/lib/datadog_api_client/v2/models/service_account_create_attributes.rb +26 -139
  1199. data/lib/datadog_api_client/v2/models/service_account_create_data.rb +29 -139
  1200. data/lib/datadog_api_client/v2/models/service_account_create_request.rb +17 -138
  1201. data/lib/datadog_api_client/v2/models/user.rb +9 -137
  1202. data/lib/datadog_api_client/v2/models/user_attributes.rb +6 -137
  1203. data/lib/datadog_api_client/v2/models/user_create_attributes.rb +16 -138
  1204. data/lib/datadog_api_client/v2/models/user_create_data.rb +29 -139
  1205. data/lib/datadog_api_client/v2/models/user_create_request.rb +17 -138
  1206. data/lib/datadog_api_client/v2/models/user_invitation_data.rb +28 -139
  1207. data/lib/datadog_api_client/v2/models/user_invitation_data_attributes.rb +6 -137
  1208. data/lib/datadog_api_client/v2/models/user_invitation_relationships.rb +17 -138
  1209. data/lib/datadog_api_client/v2/models/user_invitation_response.rb +7 -137
  1210. data/lib/datadog_api_client/v2/models/user_invitation_response_data.rb +8 -137
  1211. data/lib/datadog_api_client/v2/models/user_invitations_request.rb +16 -138
  1212. data/lib/datadog_api_client/v2/models/user_invitations_response.rb +6 -137
  1213. data/lib/datadog_api_client/v2/models/user_invitations_type.rb +4 -19
  1214. data/lib/datadog_api_client/v2/models/user_relationships.rb +7 -137
  1215. data/lib/datadog_api_client/v2/models/user_response.rb +7 -137
  1216. data/lib/datadog_api_client/v2/models/user_response_included_item.rb +3 -58
  1217. data/lib/datadog_api_client/v2/models/user_response_relationships.rb +10 -137
  1218. data/lib/datadog_api_client/v2/models/user_update_attributes.rb +6 -137
  1219. data/lib/datadog_api_client/v2/models/user_update_data.rb +38 -140
  1220. data/lib/datadog_api_client/v2/models/user_update_request.rb +17 -138
  1221. data/lib/datadog_api_client/v2/models/users_response.rb +7 -137
  1222. data/lib/datadog_api_client/v2/models/users_type.rb +4 -19
  1223. data/lib/datadog_api_client/v2.rb +83 -27
  1224. data/lib/datadog_api_client/version.rb +1 -1
  1225. data/spec/spec_helper.rb +3 -3
  1226. metadata +87 -346
  1227. data/.generator/openapitools.json +0 -33
  1228. data/.generator/templates/Gemfile.mustache +0 -9
  1229. data/.generator/templates/README.mustache +0 -82
  1230. data/.generator/templates/Rakefile.mustache +0 -10
  1231. data/.generator/templates/api.mustache +0 -216
  1232. data/.generator/templates/api_client_faraday_partial.mustache +0 -138
  1233. data/.generator/templates/api_client_spec.mustache +0 -220
  1234. data/.generator/templates/api_client_typhoeus_partial.mustache +0 -166
  1235. data/.generator/templates/api_doc.mustache +0 -105
  1236. data/.generator/templates/api_info.mustache +0 -15
  1237. data/.generator/templates/api_test.mustache +0 -47
  1238. data/.generator/templates/base_object.mustache +0 -134
  1239. data/.generator/templates/configuration_spec.mustache +0 -34
  1240. data/.generator/templates/configuration_tls_faraday_partial.mustache +0 -29
  1241. data/.generator/templates/configuration_tls_typhoeus_partial.mustache +0 -34
  1242. data/.generator/templates/gem.mustache +0 -40
  1243. data/.generator/templates/gemspec.mustache +0 -35
  1244. data/.generator/templates/git_push.sh.mustache +0 -57
  1245. data/.generator/templates/gitignore.mustache +0 -39
  1246. data/.generator/templates/model.mustache +0 -26
  1247. data/.generator/templates/model_doc.mustache +0 -12
  1248. data/.generator/templates/model_test.mustache +0 -77
  1249. data/.generator/templates/partial_model_enum_class.mustache +0 -21
  1250. data/.generator/templates/partial_model_generic.mustache +0 -384
  1251. data/.generator/templates/partial_model_generic_doc.mustache +0 -28
  1252. data/.generator/templates/partial_oneof_module.mustache +0 -146
  1253. data/.generator/templates/partial_oneof_module_doc.mustache +0 -92
  1254. data/.generator/templates/rspec.mustache +0 -2
  1255. data/.generator/templates/rubocop.mustache +0 -148
  1256. data/.generator/templates/spec_helper.mustache +0 -103
  1257. data/.generator/templates/travis.mustache +0 -14
  1258. data/.generator/templates/version.mustache +0 -7
  1259. data/.openapi-generator/FILES +0 -1036
  1260. data/.openapi-generator/VERSION +0 -1
  1261. data/.openapi-generator-ignore +0 -32
  1262. data/examples/generated/v1/authentication/Validate.rb +0 -10
  1263. data/examples/generated/v1/aws-integration/CreateAWSAccount.rb +0 -11
  1264. data/examples/generated/v1/aws-integration/CreateAWSTagFilter.rb +0 -11
  1265. data/examples/generated/v1/aws-integration/CreateNewAWSExternalId.rb +0 -11
  1266. data/examples/generated/v1/aws-integration/DeleteAWSAccount.rb +0 -11
  1267. data/examples/generated/v1/aws-integration/DeleteAWSTagFilter.rb +0 -11
  1268. data/examples/generated/v1/aws-integration/ListAWSAccounts.rb +0 -15
  1269. data/examples/generated/v1/aws-integration/ListAWSTagFilters.rb +0 -11
  1270. data/examples/generated/v1/aws-integration/ListAvailableAWSNamespaces.rb +0 -10
  1271. data/examples/generated/v1/aws-integration/UpdateAWSAccount.rb +0 -16
  1272. data/examples/generated/v1/aws-logs-integration/CheckAWSLogsLambdaAsync.rb +0 -11
  1273. data/examples/generated/v1/aws-logs-integration/CheckAWSLogsServicesAsync.rb +0 -11
  1274. data/examples/generated/v1/aws-logs-integration/CreateAWSLambdaArn.rb +0 -11
  1275. data/examples/generated/v1/aws-logs-integration/DeleteAWSLambdaArn.rb +0 -11
  1276. data/examples/generated/v1/aws-logs-integration/EnableAWSLogServices.rb +0 -11
  1277. data/examples/generated/v1/aws-logs-integration/ListAWSLogsIntegrations.rb +0 -10
  1278. data/examples/generated/v1/aws-logs-integration/ListAWSLogsServices.rb +0 -10
  1279. data/examples/generated/v1/azure-integration/CreateAzureIntegration.rb +0 -11
  1280. data/examples/generated/v1/azure-integration/DeleteAzureIntegration.rb +0 -11
  1281. data/examples/generated/v1/azure-integration/ListAzureIntegration.rb +0 -10
  1282. data/examples/generated/v1/azure-integration/UpdateAzureHostFilters.rb +0 -11
  1283. data/examples/generated/v1/azure-integration/UpdateAzureIntegration.rb +0 -11
  1284. data/examples/generated/v1/dashboard-lists/CreateDashboardList.rb +0 -11
  1285. data/examples/generated/v1/dashboard-lists/DeleteDashboardList.rb +0 -11
  1286. data/examples/generated/v1/dashboard-lists/GetDashboardList.rb +0 -11
  1287. data/examples/generated/v1/dashboard-lists/ListDashboardLists.rb +0 -10
  1288. data/examples/generated/v1/dashboard-lists/UpdateDashboardList.rb +0 -12
  1289. data/examples/generated/v1/dashboards/CreateDashboard.rb +0 -11
  1290. data/examples/generated/v1/dashboards/DeleteDashboard.rb +0 -11
  1291. data/examples/generated/v1/dashboards/DeleteDashboards.rb +0 -10
  1292. data/examples/generated/v1/dashboards/GetDashboard.rb +0 -11
  1293. data/examples/generated/v1/dashboards/ListDashboards.rb +0 -14
  1294. data/examples/generated/v1/dashboards/RestoreDashboards.rb +0 -10
  1295. data/examples/generated/v1/dashboards/UpdateDashboard.rb +0 -12
  1296. data/examples/generated/v1/downtimes/CancelDowntime.rb +0 -10
  1297. data/examples/generated/v1/downtimes/CancelDowntimesByScope.rb +0 -11
  1298. data/examples/generated/v1/downtimes/CreateDowntime.rb +0 -11
  1299. data/examples/generated/v1/downtimes/GetDowntime.rb +0 -11
  1300. data/examples/generated/v1/downtimes/ListDowntimes.rb +0 -13
  1301. data/examples/generated/v1/downtimes/ListMonitorDowntimes.rb +0 -11
  1302. data/examples/generated/v1/downtimes/UpdateDowntime.rb +0 -12
  1303. data/examples/generated/v1/events/CreateEvent.rb +0 -11
  1304. data/examples/generated/v1/events/GetEvent.rb +0 -11
  1305. data/examples/generated/v1/events/ListEvents.rb +0 -20
  1306. data/examples/generated/v1/gcp-integration/CreateGCPIntegration.rb +0 -11
  1307. data/examples/generated/v1/gcp-integration/DeleteGCPIntegration.rb +0 -11
  1308. data/examples/generated/v1/gcp-integration/ListGCPIntegration.rb +0 -10
  1309. data/examples/generated/v1/gcp-integration/UpdateGCPIntegration.rb +0 -11
  1310. data/examples/generated/v1/hosts/GetHostTotals.rb +0 -13
  1311. data/examples/generated/v1/hosts/ListHosts.rb +0 -20
  1312. data/examples/generated/v1/hosts/MuteHost.rb +0 -12
  1313. data/examples/generated/v1/hosts/UnmuteHost.rb +0 -11
  1314. data/examples/generated/v1/ip-ranges/GetIPRanges.rb +0 -10
  1315. data/examples/generated/v1/key-management/CreateApiKey.rb +0 -11
  1316. data/examples/generated/v1/key-management/CreateApplicationKey.rb +0 -11
  1317. data/examples/generated/v1/key-management/DeleteApiKey.rb +0 -11
  1318. data/examples/generated/v1/key-management/DeleteApplicationKey.rb +0 -11
  1319. data/examples/generated/v1/key-management/GetApiKey.rb +0 -11
  1320. data/examples/generated/v1/key-management/GetApplicationKey.rb +0 -11
  1321. data/examples/generated/v1/key-management/ListApiKeys.rb +0 -10
  1322. data/examples/generated/v1/key-management/ListApplicationKeys.rb +0 -10
  1323. data/examples/generated/v1/key-management/UpdateApiKey.rb +0 -12
  1324. data/examples/generated/v1/key-management/UpdateApplicationKey.rb +0 -12
  1325. data/examples/generated/v1/logs/ListLogs.rb +0 -11
  1326. data/examples/generated/v1/logs-indexes/CreateLogsIndex.rb +0 -11
  1327. data/examples/generated/v1/logs-indexes/GetLogsIndex.rb +0 -11
  1328. data/examples/generated/v1/logs-indexes/GetLogsIndexOrder.rb +0 -10
  1329. data/examples/generated/v1/logs-indexes/ListLogIndexes.rb +0 -10
  1330. data/examples/generated/v1/logs-indexes/UpdateLogsIndex.rb +0 -12
  1331. data/examples/generated/v1/logs-indexes/UpdateLogsIndexOrder.rb +0 -11
  1332. data/examples/generated/v1/logs-pipelines/CreateLogsPipeline.rb +0 -11
  1333. data/examples/generated/v1/logs-pipelines/DeleteLogsPipeline.rb +0 -10
  1334. data/examples/generated/v1/logs-pipelines/GetLogsPipeline.rb +0 -11
  1335. data/examples/generated/v1/logs-pipelines/GetLogsPipelineOrder.rb +0 -10
  1336. data/examples/generated/v1/logs-pipelines/ListLogsPipelines.rb +0 -10
  1337. data/examples/generated/v1/logs-pipelines/UpdateLogsPipeline.rb +0 -12
  1338. data/examples/generated/v1/logs-pipelines/UpdateLogsPipelineOrder.rb +0 -11
  1339. data/examples/generated/v1/metrics/GetMetricMetadata.rb +0 -11
  1340. data/examples/generated/v1/metrics/ListActiveMetrics.rb +0 -15
  1341. data/examples/generated/v1/metrics/ListMetrics.rb +0 -11
  1342. data/examples/generated/v1/metrics/QueryMetrics.rb +0 -13
  1343. data/examples/generated/v1/metrics/SubmitMetrics.rb +0 -14
  1344. data/examples/generated/v1/metrics/UpdateMetricMetadata.rb +0 -12
  1345. data/examples/generated/v1/monitors/CheckCanDeleteMonitor.rb +0 -11
  1346. data/examples/generated/v1/monitors/CreateMonitor.rb +0 -11
  1347. data/examples/generated/v1/monitors/DeleteMonitor.rb +0 -14
  1348. data/examples/generated/v1/monitors/GetMonitor.rb +0 -14
  1349. data/examples/generated/v1/monitors/ListMonitors.rb +0 -20
  1350. data/examples/generated/v1/monitors/SearchMonitorGroups.rb +0 -16
  1351. data/examples/generated/v1/monitors/SearchMonitors.rb +0 -16
  1352. data/examples/generated/v1/monitors/UpdateMonitor.rb +0 -12
  1353. data/examples/generated/v1/monitors/ValidateMonitor.rb +0 -11
  1354. data/examples/generated/v1/notebooks/CreateNotebook.rb +0 -11
  1355. data/examples/generated/v1/notebooks/DeleteNotebook.rb +0 -10
  1356. data/examples/generated/v1/notebooks/GetNotebook.rb +0 -11
  1357. data/examples/generated/v1/notebooks/ListNotebooks.rb +0 -22
  1358. data/examples/generated/v1/notebooks/UpdateNotebook.rb +0 -12
  1359. data/examples/generated/v1/organizations/CreateChildOrg.rb +0 -11
  1360. data/examples/generated/v1/organizations/GetOrg.rb +0 -11
  1361. data/examples/generated/v1/organizations/ListOrgs.rb +0 -10
  1362. data/examples/generated/v1/organizations/UpdateOrg.rb +0 -12
  1363. data/examples/generated/v1/organizations/UploadIDPForOrg.rb +0 -12
  1364. data/examples/generated/v1/pager-duty-integration/CreatePagerDutyIntegrationService.rb +0 -11
  1365. data/examples/generated/v1/pager-duty-integration/DeletePagerDutyIntegrationService.rb +0 -10
  1366. data/examples/generated/v1/pager-duty-integration/GetPagerDutyIntegrationService.rb +0 -11
  1367. data/examples/generated/v1/pager-duty-integration/UpdatePagerDutyIntegrationService.rb +0 -11
  1368. data/examples/generated/v1/service-checks/SubmitServiceCheck.rb +0 -11
  1369. data/examples/generated/v1/service-level-objective-corrections/CreateSLOCorrection.rb +0 -16
  1370. data/examples/generated/v1/service-level-objective-corrections/DeleteSLOCorrection.rb +0 -15
  1371. data/examples/generated/v1/service-level-objective-corrections/GetSLOCorrection.rb +0 -16
  1372. data/examples/generated/v1/service-level-objective-corrections/ListSLOCorrection.rb +0 -15
  1373. data/examples/generated/v1/service-level-objective-corrections/UpdateSLOCorrection.rb +0 -17
  1374. data/examples/generated/v1/service-level-objectives/CheckCanDeleteSLO.rb +0 -11
  1375. data/examples/generated/v1/service-level-objectives/CreateSLO.rb +0 -11
  1376. data/examples/generated/v1/service-level-objectives/DeleteSLO.rb +0 -14
  1377. data/examples/generated/v1/service-level-objectives/DeleteSLOTimeframeInBulk.rb +0 -11
  1378. data/examples/generated/v1/service-level-objectives/GetSLO.rb +0 -14
  1379. data/examples/generated/v1/service-level-objectives/GetSLOCorrections.rb +0 -16
  1380. data/examples/generated/v1/service-level-objectives/GetSLOHistory.rb +0 -22
  1381. data/examples/generated/v1/service-level-objectives/ListSLOs.rb +0 -18
  1382. data/examples/generated/v1/service-level-objectives/UpdateSLO.rb +0 -12
  1383. data/examples/generated/v1/slack-integration/CreateSlackIntegrationChannel.rb +0 -12
  1384. data/examples/generated/v1/slack-integration/GetSlackIntegrationChannel.rb +0 -12
  1385. data/examples/generated/v1/slack-integration/GetSlackIntegrationChannels.rb +0 -11
  1386. data/examples/generated/v1/slack-integration/RemoveSlackIntegrationChannel.rb +0 -11
  1387. data/examples/generated/v1/slack-integration/UpdateSlackIntegrationChannel.rb +0 -13
  1388. data/examples/generated/v1/snapshots/GetGraphSnapshot.rb +0 -18
  1389. data/examples/generated/v1/synthetics/CreateGlobalVariable.rb +0 -11
  1390. data/examples/generated/v1/synthetics/CreatePrivateLocation.rb +0 -11
  1391. data/examples/generated/v1/synthetics/CreateSyntheticsApiTest.rb +0 -11
  1392. data/examples/generated/v1/synthetics/CreateSyntheticsBrowserTest.rb +0 -11
  1393. data/examples/generated/v1/synthetics/DeleteGlobalVariable.rb +0 -10
  1394. data/examples/generated/v1/synthetics/DeletePrivateLocation.rb +0 -10
  1395. data/examples/generated/v1/synthetics/DeleteTests.rb +0 -11
  1396. data/examples/generated/v1/synthetics/EditGlobalVariable.rb +0 -12
  1397. data/examples/generated/v1/synthetics/GetApiTest.rb +0 -11
  1398. data/examples/generated/v1/synthetics/GetApiTestLatestResults.rb +0 -16
  1399. data/examples/generated/v1/synthetics/GetApiTestResult.rb +0 -12
  1400. data/examples/generated/v1/synthetics/GetBrowserTest.rb +0 -11
  1401. data/examples/generated/v1/synthetics/GetBrowserTestLatestResults.rb +0 -16
  1402. data/examples/generated/v1/synthetics/GetBrowserTestResult.rb +0 -12
  1403. data/examples/generated/v1/synthetics/GetGlobalVariable.rb +0 -11
  1404. data/examples/generated/v1/synthetics/GetPrivateLocation.rb +0 -11
  1405. data/examples/generated/v1/synthetics/GetSyntheticsCiBatch.rb +0 -11
  1406. data/examples/generated/v1/synthetics/GetTest.rb +0 -11
  1407. data/examples/generated/v1/synthetics/ListGlobalVariables.rb +0 -10
  1408. data/examples/generated/v1/synthetics/ListLocations.rb +0 -10
  1409. data/examples/generated/v1/synthetics/ListTests.rb +0 -10
  1410. data/examples/generated/v1/synthetics/TriggerCiTests.rb +0 -11
  1411. data/examples/generated/v1/synthetics/TriggerTests.rb +0 -11
  1412. data/examples/generated/v1/synthetics/UpdateApiTest.rb +0 -12
  1413. data/examples/generated/v1/synthetics/UpdateBrowserTest.rb +0 -12
  1414. data/examples/generated/v1/synthetics/UpdatePrivateLocation.rb +0 -12
  1415. data/examples/generated/v1/synthetics/UpdateTestPauseStatus.rb +0 -12
  1416. data/examples/generated/v1/tags/CreateHostTags.rb +0 -15
  1417. data/examples/generated/v1/tags/DeleteHostTags.rb +0 -13
  1418. data/examples/generated/v1/tags/GetHostTags.rb +0 -14
  1419. data/examples/generated/v1/tags/ListHostTags.rb +0 -13
  1420. data/examples/generated/v1/tags/UpdateHostTags.rb +0 -15
  1421. data/examples/generated/v1/usage-metering/GetDailyCustomReports.rb +0 -21
  1422. data/examples/generated/v1/usage-metering/GetHourlyUsageAttribution.rb +0 -22
  1423. data/examples/generated/v1/usage-metering/GetIncidentManagement.rb +0 -14
  1424. data/examples/generated/v1/usage-metering/GetIngestedSpans.rb +0 -14
  1425. data/examples/generated/v1/usage-metering/GetMonthlyCustomReports.rb +0 -21
  1426. data/examples/generated/v1/usage-metering/GetMonthlyUsageAttribution.rb +0 -24
  1427. data/examples/generated/v1/usage-metering/GetSpecifiedDailyCustomReports.rb +0 -16
  1428. data/examples/generated/v1/usage-metering/GetSpecifiedMonthlyCustomReports.rb +0 -16
  1429. data/examples/generated/v1/usage-metering/GetUsageAnalyzedLogs.rb +0 -14
  1430. data/examples/generated/v1/usage-metering/GetUsageAttribution.rb +0 -25
  1431. data/examples/generated/v1/usage-metering/GetUsageAuditLogs.rb +0 -14
  1432. data/examples/generated/v1/usage-metering/GetUsageBillableSummary.rb +0 -13
  1433. data/examples/generated/v1/usage-metering/GetUsageCloudSecurityPostureManagement.rb +0 -14
  1434. data/examples/generated/v1/usage-metering/GetUsageCws.rb +0 -14
  1435. data/examples/generated/v1/usage-metering/GetUsageDbm.rb +0 -14
  1436. data/examples/generated/v1/usage-metering/GetUsageFargate.rb +0 -14
  1437. data/examples/generated/v1/usage-metering/GetUsageHosts.rb +0 -14
  1438. data/examples/generated/v1/usage-metering/GetUsageIndexedSpans.rb +0 -14
  1439. data/examples/generated/v1/usage-metering/GetUsageInternetOfThings.rb +0 -14
  1440. data/examples/generated/v1/usage-metering/GetUsageLambda.rb +0 -14
  1441. data/examples/generated/v1/usage-metering/GetUsageLogs.rb +0 -14
  1442. data/examples/generated/v1/usage-metering/GetUsageLogsByIndex.rb +0 -15
  1443. data/examples/generated/v1/usage-metering/GetUsageLogsByRetention.rb +0 -14
  1444. data/examples/generated/v1/usage-metering/GetUsageNetworkFlows.rb +0 -14
  1445. data/examples/generated/v1/usage-metering/GetUsageNetworkHosts.rb +0 -14
  1446. data/examples/generated/v1/usage-metering/GetUsageProfiling.rb +0 -14
  1447. data/examples/generated/v1/usage-metering/GetUsageRumSessions.rb +0 -15
  1448. data/examples/generated/v1/usage-metering/GetUsageRumUnits.rb +0 -14
  1449. data/examples/generated/v1/usage-metering/GetUsageSds.rb +0 -14
  1450. data/examples/generated/v1/usage-metering/GetUsageSnmp.rb +0 -14
  1451. data/examples/generated/v1/usage-metering/GetUsageSummary.rb +0 -15
  1452. data/examples/generated/v1/usage-metering/GetUsageSynthetics.rb +0 -14
  1453. data/examples/generated/v1/usage-metering/GetUsageSyntheticsApi.rb +0 -14
  1454. data/examples/generated/v1/usage-metering/GetUsageSyntheticsBrowser.rb +0 -14
  1455. data/examples/generated/v1/usage-metering/GetUsageTimeseries.rb +0 -14
  1456. data/examples/generated/v1/usage-metering/GetUsageTopAvgMetrics.rb +0 -17
  1457. data/examples/generated/v1/users/CreateUser.rb +0 -11
  1458. data/examples/generated/v1/users/DisableUser.rb +0 -11
  1459. data/examples/generated/v1/users/GetUser.rb +0 -11
  1460. data/examples/generated/v1/users/ListUsers.rb +0 -10
  1461. data/examples/generated/v1/users/UpdateUser.rb +0 -12
  1462. data/examples/generated/v1/webhooks-integration/CreateWebhooksIntegration.rb +0 -11
  1463. data/examples/generated/v1/webhooks-integration/CreateWebhooksIntegrationCustomVariable.rb +0 -11
  1464. data/examples/generated/v1/webhooks-integration/DeleteWebhooksIntegration.rb +0 -10
  1465. data/examples/generated/v1/webhooks-integration/DeleteWebhooksIntegrationCustomVariable.rb +0 -10
  1466. data/examples/generated/v1/webhooks-integration/GetWebhooksIntegration.rb +0 -11
  1467. data/examples/generated/v1/webhooks-integration/GetWebhooksIntegrationCustomVariable.rb +0 -11
  1468. data/examples/generated/v1/webhooks-integration/UpdateWebhooksIntegration.rb +0 -12
  1469. data/examples/generated/v1/webhooks-integration/UpdateWebhooksIntegrationCustomVariable.rb +0 -12
  1470. data/examples/generated/v2/authn-mappings/CreateAuthNMapping.rb +0 -11
  1471. data/examples/generated/v2/authn-mappings/DeleteAuthNMapping.rb +0 -10
  1472. data/examples/generated/v2/authn-mappings/GetAuthNMapping.rb +0 -11
  1473. data/examples/generated/v2/authn-mappings/UpdateAuthNMapping.rb +0 -12
  1474. data/examples/generated/v2/cloud-workload-security/CreateCloudWorkloadSecurityAgentRule.rb +0 -11
  1475. data/examples/generated/v2/cloud-workload-security/DeleteCloudWorkloadSecurityAgentRule.rb +0 -10
  1476. data/examples/generated/v2/cloud-workload-security/DownloadCloudWorkloadPolicyFile.rb +0 -10
  1477. data/examples/generated/v2/cloud-workload-security/GetCloudWorkloadSecurityAgentRule.rb +0 -11
  1478. data/examples/generated/v2/cloud-workload-security/ListCloudWorkloadSecurityAgentRules.rb +0 -10
  1479. data/examples/generated/v2/cloud-workload-security/UpdateCloudWorkloadSecurityAgentRule.rb +0 -12
  1480. data/examples/generated/v2/dashboard-lists/CreateDashboardListItems.rb +0 -12
  1481. data/examples/generated/v2/dashboard-lists/DeleteDashboardListItems.rb +0 -12
  1482. data/examples/generated/v2/dashboard-lists/GetDashboardListItems.rb +0 -11
  1483. data/examples/generated/v2/dashboard-lists/UpdateDashboardListItems.rb +0 -12
  1484. data/examples/generated/v2/incident-services/CreateIncidentService.rb +0 -16
  1485. data/examples/generated/v2/incident-services/DeleteIncidentService.rb +0 -15
  1486. data/examples/generated/v2/incident-services/GetIncidentService.rb +0 -19
  1487. data/examples/generated/v2/incident-services/ListIncidentServices.rb +0 -21
  1488. data/examples/generated/v2/incident-services/UpdateIncidentService.rb +0 -17
  1489. data/examples/generated/v2/incident-teams/CreateIncidentTeam.rb +0 -16
  1490. data/examples/generated/v2/incident-teams/DeleteIncidentTeam.rb +0 -15
  1491. data/examples/generated/v2/incident-teams/GetIncidentTeam.rb +0 -19
  1492. data/examples/generated/v2/incident-teams/ListIncidentTeams.rb +0 -21
  1493. data/examples/generated/v2/incident-teams/UpdateIncidentTeam.rb +0 -17
  1494. data/examples/generated/v2/incidents/CreateIncident.rb +0 -16
  1495. data/examples/generated/v2/incidents/DeleteIncident.rb +0 -15
  1496. data/examples/generated/v2/incidents/GetIncident.rb +0 -19
  1497. data/examples/generated/v2/incidents/ListIncidents.rb +0 -20
  1498. data/examples/generated/v2/key-management/CreateApiKey.rb +0 -11
  1499. data/examples/generated/v2/key-management/CreateCurrentUserApplicationKey.rb +0 -11
  1500. data/examples/generated/v2/key-management/DeleteApiKey.rb +0 -10
  1501. data/examples/generated/v2/key-management/DeleteApplicationKey.rb +0 -10
  1502. data/examples/generated/v2/key-management/DeleteCurrentUserApplicationKey.rb +0 -10
  1503. data/examples/generated/v2/key-management/GetApiKey.rb +0 -14
  1504. data/examples/generated/v2/key-management/GetApplicationKey.rb +0 -14
  1505. data/examples/generated/v2/key-management/GetCurrentUserApplicationKey.rb +0 -11
  1506. data/examples/generated/v2/key-management/ListApiKeys.rb +0 -21
  1507. data/examples/generated/v2/key-management/ListApplicationKeys.rb +0 -18
  1508. data/examples/generated/v2/key-management/ListCurrentUserApplicationKeys.rb +0 -18
  1509. data/examples/generated/v2/key-management/UpdateApiKey.rb +0 -12
  1510. data/examples/generated/v2/key-management/UpdateApplicationKey.rb +0 -12
  1511. data/examples/generated/v2/key-management/UpdateCurrentUserApplicationKey.rb +0 -12
  1512. data/examples/generated/v2/logs/AggregateLogs.rb +0 -11
  1513. data/examples/generated/v2/logs/ListLogs.rb +0 -13
  1514. data/examples/generated/v2/logs/ListLogsGet.rb +0 -19
  1515. data/examples/generated/v2/logs/SubmitLog.rb +0 -15
  1516. data/examples/generated/v2/logs-archives/AddReadRoleToArchive.rb +0 -11
  1517. data/examples/generated/v2/logs-archives/CreateLogsArchive.rb +0 -11
  1518. data/examples/generated/v2/logs-archives/DeleteLogsArchive.rb +0 -10
  1519. data/examples/generated/v2/logs-archives/GetLogsArchive.rb +0 -11
  1520. data/examples/generated/v2/logs-archives/GetLogsArchiveOrder.rb +0 -10
  1521. data/examples/generated/v2/logs-archives/ListArchiveReadRoles.rb +0 -11
  1522. data/examples/generated/v2/logs-archives/ListLogsArchives.rb +0 -10
  1523. data/examples/generated/v2/logs-archives/RemoveRoleFromArchive.rb +0 -11
  1524. data/examples/generated/v2/logs-archives/UpdateLogsArchive.rb +0 -12
  1525. data/examples/generated/v2/logs-archives/UpdateLogsArchiveOrder.rb +0 -11
  1526. data/examples/generated/v2/logs-metrics/CreateLogsMetric.rb +0 -11
  1527. data/examples/generated/v2/logs-metrics/DeleteLogsMetric.rb +0 -10
  1528. data/examples/generated/v2/logs-metrics/GetLogsMetric.rb +0 -11
  1529. data/examples/generated/v2/logs-metrics/ListLogsMetrics.rb +0 -10
  1530. data/examples/generated/v2/logs-metrics/UpdateLogsMetric.rb +0 -12
  1531. data/examples/generated/v2/metrics/CreateBulkTagsMetricsConfiguration.rb +0 -11
  1532. data/examples/generated/v2/metrics/CreateTagConfiguration.rb +0 -17
  1533. data/examples/generated/v2/metrics/DeleteBulkTagsMetricsConfiguration.rb +0 -11
  1534. data/examples/generated/v2/metrics/DeleteTagConfiguration.rb +0 -15
  1535. data/examples/generated/v2/metrics/ListTagConfigurationByName.rb +0 -16
  1536. data/examples/generated/v2/metrics/ListTagConfigurations.rb +0 -23
  1537. data/examples/generated/v2/metrics/ListTagsByMetricName.rb +0 -11
  1538. data/examples/generated/v2/metrics/ListVolumesByMetricName.rb +0 -11
  1539. data/examples/generated/v2/metrics/UpdateTagConfiguration.rb +0 -17
  1540. data/examples/generated/v2/processes/ListProcesses.rb +0 -18
  1541. data/examples/generated/v2/roles/AddPermissionToRole.rb +0 -12
  1542. data/examples/generated/v2/roles/CloneRole.rb +0 -12
  1543. data/examples/generated/v2/roles/CreateRole.rb +0 -11
  1544. data/examples/generated/v2/roles/DeleteRole.rb +0 -10
  1545. data/examples/generated/v2/roles/GetRole.rb +0 -11
  1546. data/examples/generated/v2/roles/ListPermissions.rb +0 -10
  1547. data/examples/generated/v2/roles/ListRolePermissions.rb +0 -11
  1548. data/examples/generated/v2/roles/ListRoleUsers.rb +0 -17
  1549. data/examples/generated/v2/roles/ListRoles.rb +0 -16
  1550. data/examples/generated/v2/roles/RemovePermissionFromRole.rb +0 -12
  1551. data/examples/generated/v2/security-monitoring/CreateSecurityFilter.rb +0 -11
  1552. data/examples/generated/v2/security-monitoring/CreateSecurityMonitoringRule.rb +0 -11
  1553. data/examples/generated/v2/security-monitoring/DeleteSecurityFilter.rb +0 -10
  1554. data/examples/generated/v2/security-monitoring/DeleteSecurityMonitoringRule.rb +0 -10
  1555. data/examples/generated/v2/security-monitoring/GetSecurityFilter.rb +0 -11
  1556. data/examples/generated/v2/security-monitoring/GetSecurityMonitoringRule.rb +0 -11
  1557. data/examples/generated/v2/security-monitoring/ListSecurityFilters.rb +0 -10
  1558. data/examples/generated/v2/security-monitoring/ListSecurityMonitoringRules.rb +0 -14
  1559. data/examples/generated/v2/security-monitoring/ListSecurityMonitoringSignals.rb +0 -23
  1560. data/examples/generated/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +0 -18
  1561. data/examples/generated/v2/security-monitoring/UpdateSecurityFilter.rb +0 -12
  1562. data/examples/generated/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +0 -12
  1563. data/examples/generated/v2/users/CreateServiceAccount.rb +0 -11
  1564. data/examples/generated/v2/users/CreateUser.rb +0 -11
  1565. data/examples/generated/v2/users/ListUsers.rb +0 -18
  1566. data/lib/datadog_api_client/v1/models/notebook_cell_create_request_attributes.rb +0 -122
@@ -97,7 +97,7 @@ components:
97
97
 
98
98
  For example, `env:production,instance-type:c1.*,!region:us-east-1`'
99
99
  example:
100
- - <KEY>:<VALUE>
100
+ - $KEY:$VALUE
101
101
  items:
102
102
  description: The list of the filter_tags.
103
103
  type: string
@@ -107,7 +107,7 @@ components:
107
107
 
108
108
  and metrics reporting through this integration.'
109
109
  example:
110
- - <KEY>:<VALUE>
110
+ - $KEY:$VALUE
111
111
  items:
112
112
  description: The list of the the host_tags.
113
113
  type: string
@@ -755,8 +755,7 @@ components:
755
755
  event_query:
756
756
  $ref: '#/components/schemas/LogQueryDefinition'
757
757
  formulas:
758
- description: List of formulas that operate on queries. **This feature is
759
- currently in beta.**
758
+ description: List of formulas that operate on queries.
760
759
  items:
761
760
  $ref: '#/components/schemas/WidgetFormula'
762
761
  type: array
@@ -780,7 +779,6 @@ components:
780
779
  type: string
781
780
  queries:
782
781
  description: List of queries that can be returned directly or used in formulas.
783
- **This feature is currently in beta.**
784
782
  items:
785
783
  $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
786
784
  type: array
@@ -798,17 +796,7 @@ components:
798
796
  description: Response of monitor IDs that can or can't be safely deleted.
799
797
  properties:
800
798
  data:
801
- description: Wrapper object with the list of monitor IDs.
802
- example: {}
803
- properties:
804
- ok:
805
- description: An array of of Monitor IDs that can be safely deleted.
806
- items:
807
- description: ID of a monitor that can be safely deleted.
808
- format: int64
809
- type: integer
810
- type: array
811
- type: object
799
+ $ref: '#/components/schemas/CheckCanDeleteMonitorResponseData'
812
800
  errors:
813
801
  additionalProperties:
814
802
  description: Strings denoting where a monitor is used.
@@ -821,19 +809,23 @@ components:
821
809
  required:
822
810
  - data
823
811
  type: object
812
+ CheckCanDeleteMonitorResponseData:
813
+ description: Wrapper object with the list of monitor IDs.
814
+ example: {}
815
+ properties:
816
+ ok:
817
+ description: An array of of Monitor IDs that can be safely deleted.
818
+ items:
819
+ description: ID of a monitor that can be safely deleted.
820
+ format: int64
821
+ type: integer
822
+ type: array
823
+ type: object
824
824
  CheckCanDeleteSLOResponse:
825
825
  description: A service level objective response containing the requested object.
826
826
  properties:
827
827
  data:
828
- description: An array of service level objective objects.
829
- properties:
830
- ok:
831
- description: An array of of SLO IDs that can be safely deleted.
832
- items:
833
- description: An SLO ID.
834
- type: string
835
- type: array
836
- type: object
828
+ $ref: '#/components/schemas/CheckCanDeleteSLOResponseData'
837
829
  errors:
838
830
  additionalProperties:
839
831
  description: Description of the service level objective reference.
@@ -841,6 +833,16 @@ components:
841
833
  description: A mapping of SLO id to it's current usages.
842
834
  type: object
843
835
  type: object
836
+ CheckCanDeleteSLOResponseData:
837
+ description: An array of service level objective objects.
838
+ properties:
839
+ ok:
840
+ description: An array of of SLO IDs that can be safely deleted.
841
+ items:
842
+ description: An SLO ID.
843
+ type: string
844
+ type: array
845
+ type: object
844
846
  CheckStatusWidgetDefinition:
845
847
  description: Check status shows the current status or number of results for
846
848
  any check performed.
@@ -1905,75 +1907,11 @@ components:
1905
1907
  EventCreateResponse:
1906
1908
  description: Object containing an event response.
1907
1909
  properties:
1908
- alert_type:
1909
- $ref: '#/components/schemas/EventAlertType'
1910
- date_happened:
1911
- description: 'POSIX timestamp of the event. Must be sent as an integer (that
1912
- is no quotes).
1913
-
1914
- Limited to events no older than 7 days.'
1915
- format: int64
1916
- type: integer
1917
- device_name:
1918
- description: A device name.
1919
- type: string
1920
- host:
1921
- description: 'Host name to associate with the event.
1922
-
1923
- Any tags associated with the host are also applied to this event.'
1924
- type: string
1925
- id:
1926
- description: Integer ID of the event.
1927
- format: int64
1928
- readOnly: true
1929
- type: integer
1930
- payload:
1931
- description: Payload of the event.
1932
- example: '{}'
1933
- readOnly: true
1934
- type: string
1935
- priority:
1936
- $ref: '#/components/schemas/EventPriority'
1937
- related_event_id:
1938
- description: ID of the parent event. Must be sent as an integer (that is
1939
- no quotes).
1940
- format: int64
1941
- type: integer
1942
- source_type_name:
1943
- description: 'The type of event being posted. Option examples include nagios,
1944
- hudson, jenkins, my_apps, chef, puppet, git, bitbucket, etc.
1945
-
1946
- A complete list of source attribute values [available here](https://docs.datadoghq.com/integrations/faq/list-of-api-source-attribute-value).'
1947
- type: string
1910
+ event:
1911
+ $ref: '#/components/schemas/Event'
1948
1912
  status:
1949
1913
  description: A status.
1950
1914
  type: string
1951
- tags:
1952
- description: A list of tags to apply to the event.
1953
- example:
1954
- - environment:test
1955
- items:
1956
- description: A tag.
1957
- type: string
1958
- type: array
1959
- text:
1960
- description: 'The body of the event. Limited to 4000 characters. The text
1961
- supports markdown.
1962
-
1963
- Use `msg_text` with the Datadog Ruby library.'
1964
- example: Oh boy!
1965
- maxLength: 4000
1966
- type: string
1967
- title:
1968
- description: The event title. Limited to 100 characters. Use `msg_title`
1969
- with the Datadog Ruby library.
1970
- example: Did you hear the news today?
1971
- maxLength: 100
1972
- type: string
1973
- url:
1974
- description: URL of the event.
1975
- readOnly: true
1976
- type: string
1977
1915
  type: object
1978
1916
  EventListResponse:
1979
1917
  description: An event list response.
@@ -1993,6 +1931,7 @@ components:
1993
1931
  - normal
1994
1932
  - low
1995
1933
  example: normal
1934
+ nullable: true
1996
1935
  type: string
1997
1936
  x-enum-varnames:
1998
1937
  - NORMAL
@@ -2297,22 +2236,7 @@ components:
2297
2236
  description: A formula and functions events query.
2298
2237
  properties:
2299
2238
  compute:
2300
- description: Compute options.
2301
- properties:
2302
- aggregation:
2303
- $ref: '#/components/schemas/FormulaAndFunctionEventAggregation'
2304
- interval:
2305
- description: A time interval in milliseconds.
2306
- example: 60000
2307
- format: int64
2308
- type: integer
2309
- metric:
2310
- description: Measurable attribute to compute.
2311
- example: '@duration'
2312
- type: string
2313
- required:
2314
- - aggregation
2315
- type: object
2239
+ $ref: '#/components/schemas/FormulaAndFunctionEventQueryDefinitionCompute'
2316
2240
  data_source:
2317
2241
  $ref: '#/components/schemas/FormulaAndFunctionEventsDataSource'
2318
2242
  group_by:
@@ -2337,20 +2261,39 @@ components:
2337
2261
  example: query_errors
2338
2262
  type: string
2339
2263
  search:
2340
- description: Search options.
2341
- properties:
2342
- query:
2343
- description: Events search string.
2344
- example: service:query
2345
- type: string
2346
- required:
2347
- - query
2348
- type: object
2264
+ $ref: '#/components/schemas/FormulaAndFunctionEventQueryDefinitionSearch'
2349
2265
  required:
2350
2266
  - data_source
2351
2267
  - compute
2352
2268
  - name
2353
2269
  type: object
2270
+ FormulaAndFunctionEventQueryDefinitionCompute:
2271
+ description: Compute options.
2272
+ properties:
2273
+ aggregation:
2274
+ $ref: '#/components/schemas/FormulaAndFunctionEventAggregation'
2275
+ interval:
2276
+ description: A time interval in milliseconds.
2277
+ example: 60000
2278
+ format: int64
2279
+ type: integer
2280
+ metric:
2281
+ description: Measurable attribute to compute.
2282
+ example: '@duration'
2283
+ type: string
2284
+ required:
2285
+ - aggregation
2286
+ type: object
2287
+ FormulaAndFunctionEventQueryDefinitionSearch:
2288
+ description: Search options.
2289
+ properties:
2290
+ query:
2291
+ description: Events search string.
2292
+ example: service:query
2293
+ type: string
2294
+ required:
2295
+ - query
2296
+ type: object
2354
2297
  FormulaAndFunctionEventQueryGroupBy:
2355
2298
  description: List of objects used to group by.
2356
2299
  properties:
@@ -2364,21 +2307,23 @@ components:
2364
2307
  format: int64
2365
2308
  type: integer
2366
2309
  sort:
2367
- description: Options for sorting group by results.
2368
- properties:
2369
- aggregation:
2370
- $ref: '#/components/schemas/FormulaAndFunctionEventAggregation'
2371
- metric:
2372
- description: Metric used for sorting group by results.
2373
- type: string
2374
- order:
2375
- $ref: '#/components/schemas/QuerySortOrder'
2376
- required:
2377
- - aggregation
2378
- type: object
2310
+ $ref: '#/components/schemas/FormulaAndFunctionEventQueryGroupBySort'
2379
2311
  required:
2380
2312
  - facet
2381
2313
  type: object
2314
+ FormulaAndFunctionEventQueryGroupBySort:
2315
+ description: Options for sorting group by results.
2316
+ properties:
2317
+ aggregation:
2318
+ $ref: '#/components/schemas/FormulaAndFunctionEventAggregation'
2319
+ metric:
2320
+ description: Metric used for sorting group by results.
2321
+ type: string
2322
+ order:
2323
+ $ref: '#/components/schemas/QuerySortOrder'
2324
+ required:
2325
+ - aggregation
2326
+ type: object
2382
2327
  FormulaAndFunctionEventsDataSource:
2383
2328
  description: Data source for event platform-based queries.
2384
2329
  enum:
@@ -2513,7 +2458,7 @@ components:
2513
2458
  - $ref: '#/components/schemas/FormulaAndFunctionApmResourceStatsQueryDefinition'
2514
2459
  type: object
2515
2460
  FormulaAndFunctionResponseFormat:
2516
- description: Timeseries or Scalar response. **This feature is currently in beta.**
2461
+ description: Timeseries or Scalar response.
2517
2462
  enum:
2518
2463
  - timeseries
2519
2464
  - scalar
@@ -2687,11 +2632,11 @@ components:
2687
2632
  example: '123456712345671234567'
2688
2633
  type: string
2689
2634
  client_x509_cert_url:
2690
- description: 'Should be `https://www.googleapis.com/robot/v1/metadata/x509/<CLIENT_EMAIL>`
2635
+ description: 'Should be `https://www.googleapis.com/robot/v1/metadata/x509/$CLIENT_EMAIL`
2691
2636
 
2692
- where `<CLIENT_EMAIL>` is the email found in your JSON service account
2637
+ where `$CLIENT_EMAIL` is the email found in your JSON service account
2693
2638
  key.'
2694
- example: https://www.googleapis.com/robot/v1/metadata/x509/<CLIENT_EMAIL>
2639
+ example: https://www.googleapis.com/robot/v1/metadata/x509/$CLIENT_EMAIL
2695
2640
  type: string
2696
2641
  errors:
2697
2642
  description: An array of errors.
@@ -2764,23 +2709,7 @@ components:
2764
2709
  minItems: 1
2765
2710
  type: array
2766
2711
  style:
2767
- description: The style to apply to the widget.
2768
- example:
2769
- palette: hostmap_blues
2770
- palette_flip: false
2771
- properties:
2772
- palette:
2773
- description: The color palette to apply to the widget.
2774
- example: hostmap_blues
2775
- type: string
2776
- palette_flip:
2777
- description: Whether to flip the palette tones.
2778
- example: false
2779
- type: boolean
2780
- required:
2781
- - palette
2782
- - palette_flip
2783
- type: object
2712
+ $ref: '#/components/schemas/GeomapWidgetDefinitionStyle'
2784
2713
  time:
2785
2714
  $ref: '#/components/schemas/WidgetTime'
2786
2715
  title:
@@ -2794,24 +2723,31 @@ components:
2794
2723
  type:
2795
2724
  $ref: '#/components/schemas/GeomapWidgetDefinitionType'
2796
2725
  view:
2797
- description: The view of the world that the map should render.
2798
- example:
2799
- focus: WORLD
2800
- properties:
2801
- focus:
2802
- description: The 2-letter ISO code of a country to focus the map on.
2803
- Or `WORLD`.
2804
- example: WORLD
2805
- type: string
2806
- required:
2807
- - focus
2808
- type: object
2726
+ $ref: '#/components/schemas/GeomapWidgetDefinitionView'
2809
2727
  required:
2810
2728
  - type
2811
2729
  - requests
2812
2730
  - style
2813
2731
  - view
2814
2732
  type: object
2733
+ GeomapWidgetDefinitionStyle:
2734
+ description: The style to apply to the widget.
2735
+ example:
2736
+ palette: hostmap_blues
2737
+ palette_flip: false
2738
+ properties:
2739
+ palette:
2740
+ description: The color palette to apply to the widget.
2741
+ example: hostmap_blues
2742
+ type: string
2743
+ palette_flip:
2744
+ description: Whether to flip the palette tones.
2745
+ example: false
2746
+ type: boolean
2747
+ required:
2748
+ - palette
2749
+ - palette_flip
2750
+ type: object
2815
2751
  GeomapWidgetDefinitionType:
2816
2752
  default: geomap
2817
2753
  description: Type of the geomap widget.
@@ -2821,12 +2757,24 @@ components:
2821
2757
  type: string
2822
2758
  x-enum-varnames:
2823
2759
  - GEOMAP
2760
+ GeomapWidgetDefinitionView:
2761
+ description: The view of the world that the map should render.
2762
+ example:
2763
+ focus: WORLD
2764
+ properties:
2765
+ focus:
2766
+ description: The 2-letter ISO code of a country to focus the map on. Or
2767
+ `WORLD`.
2768
+ example: WORLD
2769
+ type: string
2770
+ required:
2771
+ - focus
2772
+ type: object
2824
2773
  GeomapWidgetRequest:
2825
2774
  description: An updated geomap widget.
2826
2775
  properties:
2827
2776
  formulas:
2828
- description: List of formulas that operate on queries. **This feature is
2829
- currently in beta.**
2777
+ description: List of formulas that operate on queries.
2830
2778
  items:
2831
2779
  $ref: '#/components/schemas/WidgetFormula'
2832
2780
  type: array
@@ -2837,7 +2785,6 @@ components:
2837
2785
  type: string
2838
2786
  queries:
2839
2787
  description: List of queries that can be returned directly or used in formulas.
2840
- **This feature is currently in beta.**
2841
2788
  items:
2842
2789
  $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
2843
2790
  type: array
@@ -3123,117 +3070,9 @@ components:
3123
3070
  format: int64
3124
3071
  type: integer
3125
3072
  meta:
3126
- description: Metadata associated with your host.
3127
- properties:
3128
- agent_checks:
3129
- description: A list of Agent checks running on the host.
3130
- items:
3131
- $ref: '#/components/schemas/AgentCheck'
3132
- type: array
3133
- agent_version:
3134
- description: The Datadog Agent version.
3135
- example: 7.32.3
3136
- type: string
3137
- cpuCores:
3138
- description: The number of cores.
3139
- example: 1
3140
- format: int64
3141
- type: integer
3142
- fbsdV:
3143
- description: An array of Mac versions.
3144
- items:
3145
- description: The version name.
3146
- example: FreeBSD
3147
- type: string
3148
- type: array
3149
- gohai:
3150
- description: JSON string containing system information.
3151
- example: '{"cpu":{"cache_size":"8192 KB","cpu_cores":"1","cpu_logical_processors":"1","family":"6","mhz":"2712.000","model":"142","model_name":"Intel(R)
3152
- Core(TM) i7-8559U CPU @ 2.70GHz","stepping":"10","vendor_id":"GenuineIntel"},"filesystem":[{"kb_size":"3966896","mounted_on":"/dev","name":"udev"},{"kb_size":"797396","mounted_on":"/run","name":"tmpfs"},{"kb_size":"64800356","mounted_on":"/","name":"/dev/mapper/vagrant--vg-root"},{"kb_size":"3986972","mounted_on":"/dev/shm","name":"tmpfs"},{"kb_size":"5120","mounted_on":"/run/lock","name":"tmpfs"},{"kb_size":"3986972","mounted_on":"/sys/fs/cgroup","name":"tmpfs"},{"kb_size":"488245288","mounted_on":"/vagrant","name":"vagrant"},{"kb_size":"797392","mounted_on":"/run/user/1000","name":"tmpfs"}],"memory":{"swap_total":"1003516kB","total":"7973944kB"},"network":{"interfaces":[{"ipv4":"10.0.2.15","ipv4-network":"10.0.2.0/24","ipv6":"fe80::a00:27ff:fec2:be11","ipv6-network":"fe80::/64","macaddress":"08:00:27:c2:be:11","name":"eth0"},{"ipv4":"192.168.122.1","ipv4-network":"192.168.122.0/24","macaddress":"52:54:00:6f:1c:bf","name":"virbr0"}],"ipaddress":"10.0.2.15","ipaddressv6":"fe80::a00:27ff:fec2:be11","macaddress":"08:00:27:c2:be:11"},"platform":{"GOOARCH":"amd64","GOOS":"linux","goV":"1.16.7","hardware_platform":"x86_64","hostname":"vagrant","kernel_name":"Linux","kernel_release":"4.15.0-29-generic","kernel_version":"#31-Ubuntu
3153
- SMP Tue Jul 17 15:39:52 UTC 2018","machine":"x86_64","os":"GNU/Linux","processor":"x86_64","pythonV":"2.7.15rc1"}}'
3154
- type: string
3155
- install_method:
3156
- description: Agent install method.
3157
- properties:
3158
- installer_version:
3159
- description: The installer version.
3160
- example: install_script-1.7.1
3161
- type: string
3162
- tool:
3163
- description: Tool used to install the agent.
3164
- example: install_script
3165
- type: string
3166
- tool_version:
3167
- description: The tool version.
3168
- example: install_script
3169
- type: string
3170
- type: object
3171
- macV:
3172
- description: An array of Mac versions.
3173
- items:
3174
- description: Version name.
3175
- example: Mac
3176
- type: string
3177
- type: array
3178
- machine:
3179
- description: The machine architecture.
3180
- example: amd64
3181
- type: string
3182
- nixV:
3183
- description: Array of Unix versions.
3184
- items:
3185
- description: Version name.
3186
- example: Ubuntu
3187
- type: string
3188
- type: array
3189
- platform:
3190
- description: The OS platform.
3191
- example: linux
3192
- type: string
3193
- processor:
3194
- description: The processor.
3195
- example: Intel(R) Core(TM) i7-8559U CPU @ 2.70GHz
3196
- type: string
3197
- pythonV:
3198
- description: The Python version.
3199
- example: 3.8.11
3200
- type: string
3201
- socket-fqdn:
3202
- description: The socket fqdn.
3203
- example: vagrant.vm.
3204
- type: string
3205
- socket-hostname:
3206
- description: The socket hostname.
3207
- example: vagrant
3208
- type: string
3209
- winV:
3210
- description: An array of Windows versions.
3211
- items:
3212
- description: Version name.
3213
- example: Windows
3214
- type: string
3215
- type: array
3216
- type: object
3073
+ $ref: '#/components/schemas/HostMeta'
3217
3074
  metrics:
3218
- description: Host Metrics collected.
3219
- properties:
3220
- cpu:
3221
- description: The percent of CPU used (everything but idle).
3222
- example: 99.0
3223
- format: double
3224
- type: number
3225
- iowait:
3226
- description: The percent of CPU spent waiting on the IO (not reported
3227
- for all platforms).
3228
- example: 3.2
3229
- format: double
3230
- type: number
3231
- load:
3232
- description: The system load over the last 15 minutes.
3233
- example: 0.5
3234
- format: double
3235
- type: number
3236
- type: object
3075
+ $ref: '#/components/schemas/HostMetrics'
3237
3076
  mute_timeout:
3238
3077
  description: Timeout of the mute applied to your host.
3239
3078
  format: int64
@@ -3334,14 +3173,7 @@ components:
3334
3173
  description: Notes on the title.
3335
3174
  type: string
3336
3175
  requests:
3337
- description: List of definitions.
3338
- example: {}
3339
- properties:
3340
- fill:
3341
- $ref: '#/components/schemas/HostMapRequest'
3342
- size:
3343
- $ref: '#/components/schemas/HostMapRequest'
3344
- type: object
3176
+ $ref: '#/components/schemas/HostMapWidgetDefinitionRequests'
3345
3177
  scope:
3346
3178
  description: List of tags used to filter the map.
3347
3179
  items:
@@ -3349,21 +3181,7 @@ components:
3349
3181
  type: string
3350
3182
  type: array
3351
3183
  style:
3352
- description: The style to apply to the widget.
3353
- properties:
3354
- fill_max:
3355
- description: Max value to use to color the map.
3356
- type: string
3357
- fill_min:
3358
- description: Min value to use to color the map.
3359
- type: string
3360
- palette:
3361
- description: Color palette to apply to the widget.
3362
- type: string
3363
- palette_flip:
3364
- description: Whether to flip the palette tones.
3365
- type: boolean
3366
- type: object
3184
+ $ref: '#/components/schemas/HostMapWidgetDefinitionStyle'
3367
3185
  title:
3368
3186
  description: Title of the widget.
3369
3187
  type: string
@@ -3378,6 +3196,31 @@ components:
3378
3196
  - type
3379
3197
  - requests
3380
3198
  type: object
3199
+ HostMapWidgetDefinitionRequests:
3200
+ description: List of definitions.
3201
+ example: {}
3202
+ properties:
3203
+ fill:
3204
+ $ref: '#/components/schemas/HostMapRequest'
3205
+ size:
3206
+ $ref: '#/components/schemas/HostMapRequest'
3207
+ type: object
3208
+ HostMapWidgetDefinitionStyle:
3209
+ description: The style to apply to the widget.
3210
+ properties:
3211
+ fill_max:
3212
+ description: Max value to use to color the map.
3213
+ type: string
3214
+ fill_min:
3215
+ description: Min value to use to color the map.
3216
+ type: string
3217
+ palette:
3218
+ description: Color palette to apply to the widget.
3219
+ type: string
3220
+ palette_flip:
3221
+ description: Whether to flip the palette tones.
3222
+ type: boolean
3223
+ type: object
3381
3224
  HostMapWidgetDefinitionType:
3382
3225
  default: hostmap
3383
3226
  description: Type of the host map widget.
@@ -3387,6 +3230,120 @@ components:
3387
3230
  type: string
3388
3231
  x-enum-varnames:
3389
3232
  - HOSTMAP
3233
+ HostMeta:
3234
+ description: Metadata associated with your host.
3235
+ properties:
3236
+ agent_checks:
3237
+ description: A list of Agent checks running on the host.
3238
+ items:
3239
+ $ref: '#/components/schemas/AgentCheck'
3240
+ type: array
3241
+ agent_version:
3242
+ description: The Datadog Agent version.
3243
+ example: 7.32.3
3244
+ type: string
3245
+ cpuCores:
3246
+ description: The number of cores.
3247
+ example: 1
3248
+ format: int64
3249
+ type: integer
3250
+ fbsdV:
3251
+ description: An array of Mac versions.
3252
+ items:
3253
+ description: The version name.
3254
+ example: FreeBSD
3255
+ type: string
3256
+ type: array
3257
+ gohai:
3258
+ description: JSON string containing system information.
3259
+ example: '{"cpu":{"cache_size":"8192 KB","cpu_cores":"1","cpu_logical_processors":"1","family":"6","mhz":"2712.000","model":"142","model_name":"Intel(R)
3260
+ Core(TM) i7-8559U CPU @ 2.70GHz","stepping":"10","vendor_id":"GenuineIntel"},"filesystem":[{"kb_size":"3966896","mounted_on":"/dev","name":"udev"},{"kb_size":"797396","mounted_on":"/run","name":"tmpfs"},{"kb_size":"64800356","mounted_on":"/","name":"/dev/mapper/vagrant--vg-root"},{"kb_size":"3986972","mounted_on":"/dev/shm","name":"tmpfs"},{"kb_size":"5120","mounted_on":"/run/lock","name":"tmpfs"},{"kb_size":"3986972","mounted_on":"/sys/fs/cgroup","name":"tmpfs"},{"kb_size":"488245288","mounted_on":"/vagrant","name":"vagrant"},{"kb_size":"797392","mounted_on":"/run/user/1000","name":"tmpfs"}],"memory":{"swap_total":"1003516kB","total":"7973944kB"},"network":{"interfaces":[{"ipv4":"10.0.2.15","ipv4-network":"10.0.2.0/24","ipv6":"fe80::a00:27ff:fec2:be11","ipv6-network":"fe80::/64","macaddress":"08:00:27:c2:be:11","name":"eth0"},{"ipv4":"192.168.122.1","ipv4-network":"192.168.122.0/24","macaddress":"52:54:00:6f:1c:bf","name":"virbr0"}],"ipaddress":"10.0.2.15","ipaddressv6":"fe80::a00:27ff:fec2:be11","macaddress":"08:00:27:c2:be:11"},"platform":{"GOOARCH":"amd64","GOOS":"linux","goV":"1.16.7","hardware_platform":"x86_64","hostname":"vagrant","kernel_name":"Linux","kernel_release":"4.15.0-29-generic","kernel_version":"#31-Ubuntu
3261
+ SMP Tue Jul 17 15:39:52 UTC 2018","machine":"x86_64","os":"GNU/Linux","processor":"x86_64","pythonV":"2.7.15rc1"}}'
3262
+ type: string
3263
+ install_method:
3264
+ $ref: '#/components/schemas/HostMetaInstallMethod'
3265
+ macV:
3266
+ description: An array of Mac versions.
3267
+ items:
3268
+ description: Version name.
3269
+ example: Mac
3270
+ type: string
3271
+ type: array
3272
+ machine:
3273
+ description: The machine architecture.
3274
+ example: amd64
3275
+ type: string
3276
+ nixV:
3277
+ description: Array of Unix versions.
3278
+ items:
3279
+ description: Version name.
3280
+ example: Ubuntu
3281
+ type: string
3282
+ type: array
3283
+ platform:
3284
+ description: The OS platform.
3285
+ example: linux
3286
+ type: string
3287
+ processor:
3288
+ description: The processor.
3289
+ example: Intel(R) Core(TM) i7-8559U CPU @ 2.70GHz
3290
+ type: string
3291
+ pythonV:
3292
+ description: The Python version.
3293
+ example: 3.8.11
3294
+ type: string
3295
+ socket-fqdn:
3296
+ description: The socket fqdn.
3297
+ example: vagrant.vm.
3298
+ type: string
3299
+ socket-hostname:
3300
+ description: The socket hostname.
3301
+ example: vagrant
3302
+ type: string
3303
+ winV:
3304
+ description: An array of Windows versions.
3305
+ items:
3306
+ description: Version name.
3307
+ example: Windows
3308
+ type: string
3309
+ type: array
3310
+ type: object
3311
+ HostMetaInstallMethod:
3312
+ description: Agent install method.
3313
+ properties:
3314
+ installer_version:
3315
+ description: The installer version.
3316
+ example: install_script-1.7.1
3317
+ type: string
3318
+ tool:
3319
+ description: Tool used to install the agent.
3320
+ example: install_script
3321
+ type: string
3322
+ tool_version:
3323
+ description: The tool version.
3324
+ example: install_script
3325
+ type: string
3326
+ type: object
3327
+ HostMetrics:
3328
+ description: Host Metrics collected.
3329
+ properties:
3330
+ cpu:
3331
+ description: The percent of CPU used (everything but idle).
3332
+ example: 99.0
3333
+ format: double
3334
+ type: number
3335
+ iowait:
3336
+ description: The percent of CPU spent waiting on the IO (not reported for
3337
+ all platforms).
3338
+ example: 3.2
3339
+ format: double
3340
+ type: number
3341
+ load:
3342
+ description: The system load over the last 15 minutes.
3343
+ example: 0.5
3344
+ format: double
3345
+ type: number
3346
+ type: object
3390
3347
  HostMuteResponse:
3391
3348
  description: Response with the list of muted host for your organization.
3392
3349
  properties:
@@ -3947,90 +3904,83 @@ components:
3947
3904
  description: Object describing a log after being processed and stored by Datadog.
3948
3905
  properties:
3949
3906
  content:
3950
- description: JSON object containing all log attributes and their associated
3951
- values.
3952
- properties:
3953
- attributes:
3954
- additionalProperties: {}
3955
- description: JSON object of attributes from your log.
3956
- example:
3957
- customAttribute: 123
3958
- duration: 2345
3959
- type: object
3960
- host:
3961
- description: Name of the machine from where the logs are being sent.
3962
- example: i-0123
3963
- type: string
3964
- message:
3965
- description: 'The message [reserved attribute](https://docs.datadoghq.com/logs/log_collection/#reserved-attributes)
3966
-
3967
- of your log. By default, Datadog ingests the value of the message
3968
- attribute as the body of the log entry.
3969
-
3970
- That value is then highlighted and displayed in the Logstream, where
3971
- it is indexed for full text search.'
3972
- example: Host connected to remote
3973
- type: string
3974
- service:
3975
- description: 'The name of the application or service generating the
3976
- log events.
3977
-
3978
- It is used to switch from Logs to APM, so make sure you define the
3979
- same
3980
-
3981
- value when you use both products.'
3982
- example: agent
3983
- type: string
3984
- tags:
3985
- description: Array of tags associated with your log.
3986
- example:
3987
- - team:A
3988
- format: array
3989
- items:
3990
- description: Tag associated with your log.
3991
- format: string
3992
- timestamp:
3993
- description: Timestamp of your log.
3994
- example: '2020-05-26T13:36:14Z'
3995
- format: date-time
3996
- type: string
3997
- type: object
3907
+ $ref: '#/components/schemas/LogContent'
3998
3908
  id:
3999
3909
  description: Unique ID of the Log.
4000
3910
  example: AAAAAWgN8Xwgr1vKDQAAAABBV2dOOFh3ZzZobm1mWXJFYTR0OA
4001
3911
  type: string
4002
3912
  type: object
4003
- LogQueryDefinition:
4004
- description: The log query.
3913
+ LogContent:
3914
+ description: JSON object containing all log attributes and their associated
3915
+ values.
4005
3916
  properties:
4006
- compute:
4007
- $ref: '#/components/schemas/LogsQueryCompute'
4008
- group_by:
4009
- description: List of tag prefixes to group by in the case of a cluster check.
4010
- items:
4011
- $ref: '#/components/schemas/LogQueryDefinitionGroupBy'
4012
- type: array
4013
- index:
4014
- description: A coma separated-list of index names. Use "*" query all indexes
4015
- at once. [Multiple Indexes](https://docs.datadoghq.com/logs/indexes/#multiple-indexes)
4016
- example: days-3,days-7
4017
- type: string
4018
- multi_compute:
4019
- description: This field is mutually exclusive with `compute`.
4020
- items:
4021
- $ref: '#/components/schemas/LogsQueryCompute'
4022
- type: array
4023
- search:
4024
- description: The query being made on the logs.
4025
- properties:
4026
- query:
4027
- description: Search value to apply.
4028
- example: ''
4029
- type: string
4030
- required:
4031
- - query
3917
+ attributes:
3918
+ additionalProperties: {}
3919
+ description: JSON object of attributes from your log.
3920
+ example:
3921
+ customAttribute: 123
3922
+ duration: 2345
4032
3923
  type: object
4033
- type: object
3924
+ host:
3925
+ description: Name of the machine from where the logs are being sent.
3926
+ example: i-0123
3927
+ type: string
3928
+ message:
3929
+ description: 'The message [reserved attribute](https://docs.datadoghq.com/logs/log_collection/#reserved-attributes)
3930
+
3931
+ of your log. By default, Datadog ingests the value of the message attribute
3932
+ as the body of the log entry.
3933
+
3934
+ That value is then highlighted and displayed in the Logstream, where it
3935
+ is indexed for full text search.'
3936
+ example: Host connected to remote
3937
+ type: string
3938
+ service:
3939
+ description: 'The name of the application or service generating the log
3940
+ events.
3941
+
3942
+ It is used to switch from Logs to APM, so make sure you define the same
3943
+
3944
+ value when you use both products.'
3945
+ example: agent
3946
+ type: string
3947
+ tags:
3948
+ description: Array of tags associated with your log.
3949
+ example:
3950
+ - team:A
3951
+ format: array
3952
+ items:
3953
+ description: Tag associated with your log.
3954
+ format: string
3955
+ timestamp:
3956
+ description: Timestamp of your log.
3957
+ example: '2020-05-26T13:36:14Z'
3958
+ format: date-time
3959
+ type: string
3960
+ type: object
3961
+ LogQueryDefinition:
3962
+ description: The log query.
3963
+ properties:
3964
+ compute:
3965
+ $ref: '#/components/schemas/LogsQueryCompute'
3966
+ group_by:
3967
+ description: List of tag prefixes to group by in the case of a cluster check.
3968
+ items:
3969
+ $ref: '#/components/schemas/LogQueryDefinitionGroupBy'
3970
+ type: array
3971
+ index:
3972
+ description: A coma separated-list of index names. Use "*" query all indexes
3973
+ at once. [Multiple Indexes](https://docs.datadoghq.com/logs/indexes/#multiple-indexes)
3974
+ example: days-3,days-7
3975
+ type: string
3976
+ multi_compute:
3977
+ description: This field is mutually exclusive with `compute`.
3978
+ items:
3979
+ $ref: '#/components/schemas/LogsQueryCompute'
3980
+ type: array
3981
+ search:
3982
+ $ref: '#/components/schemas/LogQueryDefinitionSearch'
3983
+ type: object
4034
3984
  LogQueryDefinitionGroupBy:
4035
3985
  description: Defined items in the group.
4036
3986
  properties:
@@ -4044,25 +3994,37 @@ components:
4044
3994
  format: int64
4045
3995
  type: integer
4046
3996
  sort:
4047
- description: Define a sorting method.
4048
- properties:
4049
- aggregation:
4050
- description: The aggregation method.
4051
- example: avg
4052
- type: string
4053
- facet:
4054
- description: Facet name.
4055
- example: '@string_query.interval'
4056
- type: string
4057
- order:
4058
- $ref: '#/components/schemas/WidgetSort'
4059
- required:
4060
- - aggregation
4061
- - order
4062
- type: object
3997
+ $ref: '#/components/schemas/LogQueryDefinitionGroupBySort'
4063
3998
  required:
4064
3999
  - facet
4065
4000
  type: object
4001
+ LogQueryDefinitionGroupBySort:
4002
+ description: Define a sorting method.
4003
+ properties:
4004
+ aggregation:
4005
+ description: The aggregation method.
4006
+ example: avg
4007
+ type: string
4008
+ facet:
4009
+ description: Facet name.
4010
+ example: '@string_query.interval'
4011
+ type: string
4012
+ order:
4013
+ $ref: '#/components/schemas/WidgetSort'
4014
+ required:
4015
+ - aggregation
4016
+ - order
4017
+ type: object
4018
+ LogQueryDefinitionSearch:
4019
+ description: The query being made on the logs.
4020
+ properties:
4021
+ query:
4022
+ description: Search value to apply.
4023
+ example: ''
4024
+ type: string
4025
+ required:
4026
+ - query
4027
+ type: object
4066
4028
  LogStreamWidgetDefinition:
4067
4029
  description: The Log Stream displays a log flow matching the defined query.
4068
4030
  Only available on FREE layout dashboards.
@@ -4273,15 +4235,7 @@ components:
4273
4235
  description: Object containing logs usage data broken down by retention period.
4274
4236
  properties:
4275
4237
  orgs:
4276
- description: Indexed logs usage summary for each organization for each retention
4277
- period with usage.
4278
- properties:
4279
- usage:
4280
- description: Indexed logs usage summary for each organization.
4281
- items:
4282
- $ref: '#/components/schemas/LogsByRetentionOrgUsage'
4283
- type: array
4284
- type: object
4238
+ $ref: '#/components/schemas/LogsByRetentionOrgs'
4285
4239
  usage:
4286
4240
  description: Aggregated index logs usage for each retention period with
4287
4241
  usage.
@@ -4297,7 +4251,7 @@ components:
4297
4251
  properties:
4298
4252
  date:
4299
4253
  description: The month for the usage.
4300
- format: datetime
4254
+ format: date-time
4301
4255
  type: string
4302
4256
  usage:
4303
4257
  description: Indexed logs usage for each active retention for the month.
@@ -4314,6 +4268,16 @@ components:
4314
4268
  $ref: '#/components/schemas/LogsRetentionSumUsage'
4315
4269
  type: array
4316
4270
  type: object
4271
+ LogsByRetentionOrgs:
4272
+ description: Indexed logs usage summary for each organization for each retention
4273
+ period with usage.
4274
+ properties:
4275
+ usage:
4276
+ description: Indexed logs usage summary for each organization.
4277
+ items:
4278
+ $ref: '#/components/schemas/LogsByRetentionOrgUsage'
4279
+ type: array
4280
+ type: object
4317
4281
  LogsCategoryProcessor:
4318
4282
  description: "Use the Category Processor to add a new attribute (without spaces
4319
4283
  or special characters in the new attribute name)\nto a log matching a provided
@@ -4735,31 +4699,32 @@ components:
4735
4699
  is out of the scope of the specified time window.'
4736
4700
  type: string
4737
4701
  time:
4738
- description: Timeframe to retrieve the log from.
4739
- properties:
4740
- from:
4741
- description: Minimum timestamp for requested logs.
4742
- example: '2020-02-02T02:02:02Z'
4743
- format: date-time
4744
- type: string
4745
- timezone:
4746
- description: 'Timezone can be specified both as an offset (for example
4747
- "UTC+03:00")
4748
-
4749
- or a regional zone (for example "Europe/Paris").'
4750
- type: string
4751
- to:
4752
- description: Maximum timestamp for requested logs.
4753
- example: '2020-02-02T20:20:20Z'
4754
- format: date-time
4755
- type: string
4756
- required:
4757
- - from
4758
- - to
4759
- type: object
4702
+ $ref: '#/components/schemas/LogsListRequestTime'
4760
4703
  required:
4761
4704
  - time
4762
4705
  type: object
4706
+ LogsListRequestTime:
4707
+ description: Timeframe to retrieve the log from.
4708
+ properties:
4709
+ from:
4710
+ description: Minimum timestamp for requested logs.
4711
+ example: '2020-02-02T02:02:02Z'
4712
+ format: date-time
4713
+ type: string
4714
+ timezone:
4715
+ description: 'Timezone can be specified both as an offset (for example "UTC+03:00")
4716
+
4717
+ or a regional zone (for example "Europe/Paris").'
4718
+ type: string
4719
+ to:
4720
+ description: Maximum timestamp for requested logs.
4721
+ example: '2020-02-02T20:20:20Z'
4722
+ format: date-time
4723
+ type: string
4724
+ required:
4725
+ - from
4726
+ - to
4727
+ type: object
4763
4728
  LogsListResponse:
4764
4729
  description: Response object with all logs matching the request and pagination
4765
4730
  information.
@@ -5394,15 +5359,17 @@ components:
5394
5359
  description: Object containing the list of metrics matching the search query.
5395
5360
  properties:
5396
5361
  results:
5397
- description: Search result.
5398
- properties:
5399
- metrics:
5400
- description: List of metrics that match the search query.
5401
- items:
5402
- description: Metric name.
5403
- type: string
5404
- type: array
5405
- type: object
5362
+ $ref: '#/components/schemas/MetricSearchResponseResults'
5363
+ type: object
5364
+ MetricSearchResponseResults:
5365
+ description: Search result.
5366
+ properties:
5367
+ metrics:
5368
+ description: List of metrics that match the search query.
5369
+ items:
5370
+ description: Metric name.
5371
+ type: string
5372
+ type: array
5406
5373
  type: object
5407
5374
  MetricsListResponse:
5408
5375
  description: Object listing all metric names stored by Datadog since a given
@@ -5652,8 +5619,12 @@ components:
5652
5619
  example: avg(last_5m):sum:system.net.bytes_rcvd{host:host0} > 100
5653
5620
  type: string
5654
5621
  restricted_roles:
5655
- description: A list of role identifiers that can be pulled from the Roles
5656
- API. Cannot be used with `locked` option.
5622
+ description: A list of unique role identifiers to define which roles are
5623
+ allowed to edit the monitor. Editing a monitor includes any updates to
5624
+ the monitor configuration, monitor deletion, and muting of the monitor
5625
+ for any amount of time. Roles unique identifiers can be pulled from the
5626
+ [Roles API](https://docs.datadoghq.com/api/latest/roles/#list-roles) in
5627
+ the `data.id` field.
5657
5628
  items:
5658
5629
  description: A role UUID.
5659
5630
  type: string
@@ -5866,14 +5837,7 @@ components:
5866
5837
  total_count: 2
5867
5838
  properties:
5868
5839
  counts:
5869
- description: The counts of monitor groups per different criteria.
5870
- properties:
5871
- status:
5872
- $ref: '#/components/schemas/MonitorSearchCount'
5873
- type:
5874
- $ref: '#/components/schemas/MonitorSearchCount'
5875
- readOnly: true
5876
- type: object
5840
+ $ref: '#/components/schemas/MonitorGroupSearchResponseCounts'
5877
5841
  groups:
5878
5842
  description: The list of found monitor groups.
5879
5843
  items:
@@ -5883,6 +5847,15 @@ components:
5883
5847
  metadata:
5884
5848
  $ref: '#/components/schemas/MonitorSearchResponseMetadata'
5885
5849
  type: object
5850
+ MonitorGroupSearchResponseCounts:
5851
+ description: The counts of monitor groups per different criteria.
5852
+ properties:
5853
+ status:
5854
+ $ref: '#/components/schemas/MonitorSearchCount'
5855
+ type:
5856
+ $ref: '#/components/schemas/MonitorSearchCount'
5857
+ readOnly: true
5858
+ type: object
5886
5859
  MonitorGroupSearchResult:
5887
5860
  description: A single monitor group search result.
5888
5861
  properties:
@@ -5925,22 +5898,7 @@ components:
5925
5898
  description: List of options associated with your monitor.
5926
5899
  properties:
5927
5900
  aggregation:
5928
- description: Type of aggregation performed in the monitor query.
5929
- properties:
5930
- group_by:
5931
- description: Group to break down the monitor on.
5932
- example: host
5933
- type: string
5934
- metric:
5935
- description: Metric name used in the monitor.
5936
- example: metrics.name
5937
- type: string
5938
- type:
5939
- description: Metric type used in the monitor.
5940
- example: count
5941
- type: string
5942
- readOnly: true
5943
- type: object
5901
+ $ref: '#/components/schemas/MonitorOptionsAggregation'
5944
5902
  device_ids:
5945
5903
  deprecated: true
5946
5904
  description: IDs of the device the Synthetics monitor is running on.
@@ -5991,8 +5949,9 @@ components:
5991
5949
  - If `False`, `[Triggered] Monitor Title`'
5992
5950
  type: boolean
5993
5951
  locked:
5952
+ deprecated: true
5994
5953
  description: Whether or not the monitor is locked (only editable by creator
5995
- and admins).
5954
+ and admins). Use `restricted_roles` instead.
5996
5955
  type: boolean
5997
5956
  min_failure_duration:
5998
5957
  default: 0
@@ -6123,6 +6082,23 @@ components:
6123
6082
  $ref: '#/components/schemas/MonitorFormulaAndFunctionQueryDefinition'
6124
6083
  type: array
6125
6084
  type: object
6085
+ MonitorOptionsAggregation:
6086
+ description: Type of aggregation performed in the monitor query.
6087
+ properties:
6088
+ group_by:
6089
+ description: Group to break down the monitor on.
6090
+ example: host
6091
+ type: string
6092
+ metric:
6093
+ description: Metric name used in the monitor.
6094
+ example: metrics.name
6095
+ type: string
6096
+ type:
6097
+ description: Metric type used in the monitor.
6098
+ example: count
6099
+ type: string
6100
+ readOnly: true
6101
+ type: object
6126
6102
  MonitorOverallStates:
6127
6103
  description: The different states your monitor can be in.
6128
6104
  enum:
@@ -6217,18 +6193,7 @@ components:
6217
6193
  type: query alert
6218
6194
  properties:
6219
6195
  counts:
6220
- description: The counts of monitors per different criteria.
6221
- properties:
6222
- muted:
6223
- $ref: '#/components/schemas/MonitorSearchCount'
6224
- status:
6225
- $ref: '#/components/schemas/MonitorSearchCount'
6226
- tag:
6227
- $ref: '#/components/schemas/MonitorSearchCount'
6228
- type:
6229
- $ref: '#/components/schemas/MonitorSearchCount'
6230
- readOnly: true
6231
- type: object
6196
+ $ref: '#/components/schemas/MonitorSearchResponseCounts'
6232
6197
  metadata:
6233
6198
  $ref: '#/components/schemas/MonitorSearchResponseMetadata'
6234
6199
  monitors:
@@ -6238,6 +6203,19 @@ components:
6238
6203
  readOnly: true
6239
6204
  type: array
6240
6205
  type: object
6206
+ MonitorSearchResponseCounts:
6207
+ description: The counts of monitors per different criteria.
6208
+ properties:
6209
+ muted:
6210
+ $ref: '#/components/schemas/MonitorSearchCount'
6211
+ status:
6212
+ $ref: '#/components/schemas/MonitorSearchCount'
6213
+ tag:
6214
+ $ref: '#/components/schemas/MonitorSearchCount'
6215
+ type:
6216
+ $ref: '#/components/schemas/MonitorSearchCount'
6217
+ readOnly: true
6218
+ type: object
6241
6219
  MonitorSearchResponseMetadata:
6242
6220
  description: Metadata about the response.
6243
6221
  properties:
@@ -6513,6 +6491,7 @@ components:
6513
6491
  - event-v2 alert
6514
6492
  - audit alert
6515
6493
  - ci-pipelines alert
6494
+ - error-tracking alert
6516
6495
  example: query alert
6517
6496
  type: string
6518
6497
  x-enum-varnames:
@@ -6530,6 +6509,7 @@ components:
6530
6509
  - EVENT_V2_ALERT
6531
6510
  - AUDIT_ALERT
6532
6511
  - CI_PIPELINES_ALERT
6512
+ - ERROR_TRACKING_ALERT
6533
6513
  MonitorUpdateRequest:
6534
6514
  description: Object describing a monitor update request.
6535
6515
  properties:
@@ -6580,8 +6560,12 @@ components:
6580
6560
  description: The monitor query.
6581
6561
  type: string
6582
6562
  restricted_roles:
6583
- description: A list of role identifiers that can be pulled from the Roles
6584
- API. Cannot be used with `locked` option.
6563
+ description: A list of unique role identifiers to define which roles are
6564
+ allowed to edit the monitor. Editing a monitor includes any updates to
6565
+ the monitor configuration, monitor deletion, and muting of the monitor
6566
+ for any amount of time. Roles unique identifiers can be pulled from the
6567
+ [Roles API](https://docs.datadoghq.com/api/latest/roles/#list-roles) in
6568
+ the `data.id` field.
6585
6569
  items:
6586
6570
  description: A role UUID.
6587
6571
  type: string
@@ -7592,11 +7576,7 @@ components:
7592
7576
  $ref: '#/components/schemas/NotebooksResponseData'
7593
7577
  type: array
7594
7578
  meta:
7595
- description: Searches metadata returned by the API.
7596
- properties:
7597
- page:
7598
- $ref: '#/components/schemas/NotebooksResponsePage'
7599
- type: object
7579
+ $ref: '#/components/schemas/NotebooksResponseMeta'
7600
7580
  type: object
7601
7581
  NotebooksResponseData:
7602
7582
  description: The data for a notebook in get all response.
@@ -7653,6 +7633,12 @@ components:
7653
7633
  required:
7654
7634
  - name
7655
7635
  type: object
7636
+ NotebooksResponseMeta:
7637
+ description: Searches metadata returned by the API.
7638
+ properties:
7639
+ page:
7640
+ $ref: '#/components/schemas/NotebooksResponsePage'
7641
+ type: object
7656
7642
  NotebooksResponsePage:
7657
7643
  description: Pagination metadata returned by the API.
7658
7644
  properties:
@@ -7683,91 +7669,14 @@ components:
7683
7669
  name:
7684
7670
  description: The name of the new child-organization, limited to 32 characters.
7685
7671
  example: New child org
7686
- maximum: 32
7672
+ maxLength: 32
7687
7673
  type: string
7688
7674
  public_id:
7689
7675
  description: The `public_id` of the organization you are operating within.
7690
7676
  example: abcdef12345
7691
7677
  type: string
7692
7678
  settings:
7693
- description: A JSON array of settings.
7694
- properties:
7695
- private_widget_share:
7696
- description: Whether or not the organization users can share widgets
7697
- outside of Datadog.
7698
- example: false
7699
- type: boolean
7700
- saml:
7701
- description: 'Set the boolean property enabled to enable or disable
7702
- single sign on with SAML.
7703
-
7704
- See the SAML documentation for more information about all SAML settings.'
7705
- properties:
7706
- enabled:
7707
- description: Whether or not SAML is enabled for this organization.
7708
- example: false
7709
- type: boolean
7710
- type: object
7711
- saml_autocreate_access_role:
7712
- $ref: '#/components/schemas/AccessRole'
7713
- saml_autocreate_users_domains:
7714
- description: Has two properties, `enabled` (boolean) and `domains`,
7715
- which is a list of domains without the @ symbol.
7716
- properties:
7717
- domains:
7718
- description: List of domains where the SAML automated user creation
7719
- is enabled.
7720
- items:
7721
- description: Domain to automate user creation from.
7722
- example: example.com
7723
- type: string
7724
- type: array
7725
- enabled:
7726
- description: Whether or not the automated user creation based on
7727
- SAML domain is enabled.
7728
- example: false
7729
- type: boolean
7730
- type: object
7731
- saml_can_be_enabled:
7732
- description: Whether or not SAML can be enabled for this organization.
7733
- example: false
7734
- type: boolean
7735
- saml_idp_endpoint:
7736
- description: Identity provider endpoint for SAML authentication.
7737
- example: https://my.saml.endpoint
7738
- type: string
7739
- saml_idp_initiated_login:
7740
- description: Has one property enabled (boolean).
7741
- properties:
7742
- enabled:
7743
- description: 'Whether SAML IdP initiated login is enabled, learn
7744
- more
7745
-
7746
- in the [SAML documentation](https://docs.datadoghq.com/account_management/saml/#idp-initiated-login).'
7747
- example: false
7748
- type: boolean
7749
- type: object
7750
- saml_idp_metadata_uploaded:
7751
- description: Whether or not a SAML identity provider metadata file was
7752
- provided to the Datadog organization.
7753
- example: false
7754
- type: boolean
7755
- saml_login_url:
7756
- description: URL for SAML logging.
7757
- example: https://my.saml.login.url
7758
- type: string
7759
- saml_strict_mode:
7760
- description: Has one property enabled (boolean).
7761
- properties:
7762
- enabled:
7763
- description: 'Whether or not the SAML strict mode is enabled. If
7764
- true, all users must log in with SAML.
7765
-
7766
- Learn more on the [SAML Strict documentation](https://docs.datadoghq.com/account_management/saml/#saml-strict).'
7767
- example: false
7768
- type: boolean
7769
- type: object
7770
- type: object
7679
+ $ref: '#/components/schemas/OrganizationSettings'
7771
7680
  subscription:
7772
7681
  $ref: '#/components/schemas/OrganizationSubscription'
7773
7682
  type: object
@@ -7789,7 +7698,7 @@ components:
7789
7698
  name:
7790
7699
  description: The name of the new child-organization, limited to 32 characters.
7791
7700
  example: New child org
7792
- maximum: 32
7701
+ maxLength: 32
7793
7702
  type: string
7794
7703
  subscription:
7795
7704
  $ref: '#/components/schemas/OrganizationSubscription'
@@ -7823,6 +7732,91 @@ components:
7823
7732
  org:
7824
7733
  $ref: '#/components/schemas/Organization'
7825
7734
  type: object
7735
+ OrganizationSettings:
7736
+ description: A JSON array of settings.
7737
+ properties:
7738
+ private_widget_share:
7739
+ description: Whether or not the organization users can share widgets outside
7740
+ of Datadog.
7741
+ example: false
7742
+ type: boolean
7743
+ saml:
7744
+ $ref: '#/components/schemas/OrganizationSettingsSaml'
7745
+ saml_autocreate_access_role:
7746
+ $ref: '#/components/schemas/AccessRole'
7747
+ saml_autocreate_users_domains:
7748
+ $ref: '#/components/schemas/OrganizationSettingsSamlAutocreateUsersDomains'
7749
+ saml_can_be_enabled:
7750
+ description: Whether or not SAML can be enabled for this organization.
7751
+ example: false
7752
+ type: boolean
7753
+ saml_idp_endpoint:
7754
+ description: Identity provider endpoint for SAML authentication.
7755
+ example: https://my.saml.endpoint
7756
+ type: string
7757
+ saml_idp_initiated_login:
7758
+ $ref: '#/components/schemas/OrganizationSettingsSamlIdpInitiatedLogin'
7759
+ saml_idp_metadata_uploaded:
7760
+ description: Whether or not a SAML identity provider metadata file was provided
7761
+ to the Datadog organization.
7762
+ example: false
7763
+ type: boolean
7764
+ saml_login_url:
7765
+ description: URL for SAML logging.
7766
+ example: https://my.saml.login.url
7767
+ type: string
7768
+ saml_strict_mode:
7769
+ $ref: '#/components/schemas/OrganizationSettingsSamlStrictMode'
7770
+ type: object
7771
+ OrganizationSettingsSaml:
7772
+ description: 'Set the boolean property enabled to enable or disable single sign
7773
+ on with SAML.
7774
+
7775
+ See the SAML documentation for more information about all SAML settings.'
7776
+ properties:
7777
+ enabled:
7778
+ description: Whether or not SAML is enabled for this organization.
7779
+ example: false
7780
+ type: boolean
7781
+ type: object
7782
+ OrganizationSettingsSamlAutocreateUsersDomains:
7783
+ description: Has two properties, `enabled` (boolean) and `domains`, which is
7784
+ a list of domains without the @ symbol.
7785
+ properties:
7786
+ domains:
7787
+ description: List of domains where the SAML automated user creation is enabled.
7788
+ items:
7789
+ description: Domain to automate user creation from.
7790
+ example: example.com
7791
+ type: string
7792
+ type: array
7793
+ enabled:
7794
+ description: Whether or not the automated user creation based on SAML domain
7795
+ is enabled.
7796
+ example: false
7797
+ type: boolean
7798
+ type: object
7799
+ OrganizationSettingsSamlIdpInitiatedLogin:
7800
+ description: Has one property enabled (boolean).
7801
+ properties:
7802
+ enabled:
7803
+ description: 'Whether SAML IdP initiated login is enabled, learn more
7804
+
7805
+ in the [SAML documentation](https://docs.datadoghq.com/account_management/saml/#idp-initiated-login).'
7806
+ example: false
7807
+ type: boolean
7808
+ type: object
7809
+ OrganizationSettingsSamlStrictMode:
7810
+ description: Has one property enabled (boolean).
7811
+ properties:
7812
+ enabled:
7813
+ description: 'Whether or not the SAML strict mode is enabled. If true, all
7814
+ users must log in with SAML.
7815
+
7816
+ Learn more on the [SAML Strict documentation](https://docs.datadoghq.com/account_management/saml/#saml-strict).'
7817
+ example: false
7818
+ type: boolean
7819
+ type: object
7826
7820
  OrganizationSubscription:
7827
7821
  deprecated: true
7828
7822
  description: Subscription definition.
@@ -8008,8 +8002,7 @@ components:
8008
8002
  event_query:
8009
8003
  $ref: '#/components/schemas/LogQueryDefinition'
8010
8004
  formulas:
8011
- description: List of formulas that operate on queries. **This feature is
8012
- currently in beta.**
8005
+ description: List of formulas that operate on queries.
8013
8006
  items:
8014
8007
  $ref: '#/components/schemas/WidgetFormula'
8015
8008
  type: array
@@ -8026,7 +8019,6 @@ components:
8026
8019
  type: string
8027
8020
  queries:
8028
8021
  description: List of queries that can be returned directly or used in formulas.
8029
- **This feature is currently in beta.**
8030
8022
  items:
8031
8023
  $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
8032
8024
  type: array
@@ -8093,33 +8085,35 @@ components:
8093
8085
  fields in this response indicate which deletions succeeded and failed.'
8094
8086
  properties:
8095
8087
  data:
8096
- description: An array of service level objective objects.
8097
- properties:
8098
- deleted:
8099
- description: 'An array of service level objective object IDs that indicates
8100
-
8101
- which objects that were completely deleted.'
8102
- items:
8103
- description: A deleted SLO ID.
8104
- type: string
8105
- type: array
8106
- updated:
8107
- description: 'An array of service level objective object IDs that indicates
8108
-
8109
- which objects that were modified (objects for which at least one
8110
-
8111
- threshold was deleted, but that were not completely deleted).'
8112
- items:
8113
- description: An updated SLO ID.
8114
- type: string
8115
- type: array
8116
- type: object
8088
+ $ref: '#/components/schemas/SLOBulkDeleteResponseData'
8117
8089
  errors:
8118
8090
  description: Array of errors object returned.
8119
8091
  items:
8120
8092
  $ref: '#/components/schemas/SLOBulkDeleteError'
8121
8093
  type: array
8122
8094
  type: object
8095
+ SLOBulkDeleteResponseData:
8096
+ description: An array of service level objective objects.
8097
+ properties:
8098
+ deleted:
8099
+ description: 'An array of service level objective object IDs that indicates
8100
+
8101
+ which objects that were completely deleted.'
8102
+ items:
8103
+ description: A deleted SLO ID.
8104
+ type: string
8105
+ type: array
8106
+ updated:
8107
+ description: 'An array of service level objective object IDs that indicates
8108
+
8109
+ which objects that were modified (objects for which at least one
8110
+
8111
+ threshold was deleted, but that were not completely deleted).'
8112
+ items:
8113
+ description: An updated SLO ID.
8114
+ type: string
8115
+ type: array
8116
+ type: object
8123
8117
  SLOCorrection:
8124
8118
  description: The response object of a list of SLO corrections.
8125
8119
  properties:
@@ -8253,19 +8247,7 @@ components:
8253
8247
  format: int64
8254
8248
  type: integer
8255
8249
  modifier:
8256
- description: Modifier of the object.
8257
- nullable: true
8258
- properties:
8259
- email:
8260
- description: Email of the Modifier.
8261
- type: string
8262
- handle:
8263
- description: Handle of the Modifier.
8264
- type: string
8265
- name:
8266
- description: Name of the Modifier.
8267
- type: string
8268
- type: object
8250
+ $ref: '#/components/schemas/SLOCorrectionResponseAttributesModifier'
8269
8251
  rrule:
8270
8252
  description: 'The recurrence rules as defined in the iCalendar RFC 5545.
8271
8253
  The supported rules for SLO corrections
@@ -8286,6 +8268,20 @@ components:
8286
8268
  (defaults to "UTC").
8287
8269
  type: string
8288
8270
  type: object
8271
+ SLOCorrectionResponseAttributesModifier:
8272
+ description: Modifier of the object.
8273
+ nullable: true
8274
+ properties:
8275
+ email:
8276
+ description: Email of the Modifier.
8277
+ type: string
8278
+ handle:
8279
+ description: Handle of the Modifier.
8280
+ type: string
8281
+ name:
8282
+ description: Name of the Modifier.
8283
+ type: string
8284
+ type: object
8289
8285
  SLOCorrectionType:
8290
8286
  default: correction
8291
8287
  description: SLO correction resource type.
@@ -8453,47 +8449,7 @@ components:
8453
8449
  format: int64
8454
8450
  type: integer
8455
8451
  metadata:
8456
- description: Query metadata.
8457
- example: {}
8458
- properties:
8459
- aggr:
8460
- description: Query aggregator function.
8461
- type: string
8462
- expression:
8463
- description: Query expression.
8464
- type: string
8465
- metric:
8466
- description: Query metric used.
8467
- type: string
8468
- query_index:
8469
- description: Query index from original combined query.
8470
- format: int64
8471
- type: integer
8472
- scope:
8473
- description: Query scope.
8474
- type: string
8475
- unit:
8476
- description: 'An array of metric units that contains up to two unit
8477
- objects.
8478
-
8479
- For example, bytes represents one unit object and bytes per second
8480
- represents two unit objects.
8481
-
8482
- If a metric query only has one unit object, the second array element
8483
- is null.'
8484
- example:
8485
- - family: bytes
8486
- id: 2
8487
- name: byte
8488
- plural: bytes
8489
- scale_factor: 1.0
8490
- short_name: B
8491
- - null
8492
- items:
8493
- $ref: '#/components/schemas/SLOHistoryMetricsSeriesMetadataUnit'
8494
- nullable: true
8495
- type: array
8496
- type: object
8452
+ $ref: '#/components/schemas/SLOHistoryMetricsSeriesMetadata'
8497
8453
  sum:
8498
8454
  description: Total sum of the query.
8499
8455
  example: 0.0
@@ -8512,6 +8468,47 @@ components:
8512
8468
  - sum
8513
8469
  - values
8514
8470
  type: object
8471
+ SLOHistoryMetricsSeriesMetadata:
8472
+ description: Query metadata.
8473
+ example: {}
8474
+ properties:
8475
+ aggr:
8476
+ description: Query aggregator function.
8477
+ type: string
8478
+ expression:
8479
+ description: Query expression.
8480
+ type: string
8481
+ metric:
8482
+ description: Query metric used.
8483
+ type: string
8484
+ query_index:
8485
+ description: Query index from original combined query.
8486
+ format: int64
8487
+ type: integer
8488
+ scope:
8489
+ description: Query scope.
8490
+ type: string
8491
+ unit:
8492
+ description: 'An array of metric units that contains up to two unit objects.
8493
+
8494
+ For example, bytes represents one unit object and bytes per second represents
8495
+ two unit objects.
8496
+
8497
+ If a metric query only has one unit object, the second array element is
8498
+ null.'
8499
+ example:
8500
+ - family: bytes
8501
+ id: 2
8502
+ name: byte
8503
+ plural: bytes
8504
+ scale_factor: 1.0
8505
+ short_name: B
8506
+ - null
8507
+ items:
8508
+ $ref: '#/components/schemas/SLOHistoryMetricsSeriesMetadataUnit'
8509
+ nullable: true
8510
+ type: array
8511
+ type: object
8515
8512
  SLOHistoryMetricsSeriesMetadataUnit:
8516
8513
  description: An Object of metric units.
8517
8514
  nullable: true
@@ -8632,64 +8629,7 @@ components:
8632
8629
  description: A service level objective history response.
8633
8630
  properties:
8634
8631
  data:
8635
- description: An array of service level objective objects.
8636
- properties:
8637
- from_ts:
8638
- description: The `from` timestamp in epoch seconds.
8639
- example: 1615323990
8640
- format: int64
8641
- type: integer
8642
- group_by:
8643
- description: 'For `metric` based SLOs where the query includes a group-by
8644
- clause, this represents the list of grouping parameters.
8645
-
8646
-
8647
- This is not included in responses for `monitor` based SLOs.'
8648
- items:
8649
- description: A grouping parameter.
8650
- type: string
8651
- type: array
8652
- groups:
8653
- description: 'For grouped SLOs, this represents SLI data for specific
8654
- groups.
8655
-
8656
-
8657
- This is not included in the responses for `metric` based SLOs.'
8658
- items:
8659
- $ref: '#/components/schemas/SLOHistoryMonitor'
8660
- type: array
8661
- monitors:
8662
- description: 'For multi-monitor SLOs, this represents SLI data for specific
8663
- monitors.
8664
-
8665
-
8666
- This is not included in the responses for `metric` based SLOs.'
8667
- items:
8668
- $ref: '#/components/schemas/SLOHistoryMonitor'
8669
- type: array
8670
- overall:
8671
- $ref: '#/components/schemas/SLOHistorySLIData'
8672
- series:
8673
- $ref: '#/components/schemas/SLOHistoryMetrics'
8674
- thresholds:
8675
- additionalProperties:
8676
- $ref: '#/components/schemas/SLOThreshold'
8677
- description: mapping of string timeframe to the SLO threshold.
8678
- example:
8679
- my_service:
8680
- target: 95
8681
- timeframe: 7d
8682
- type: object
8683
- to_ts:
8684
- description: The `to` timestamp in epoch seconds.
8685
- example: 1615928790
8686
- format: int64
8687
- type: integer
8688
- type:
8689
- $ref: '#/components/schemas/SLOType'
8690
- type_id:
8691
- $ref: '#/components/schemas/SLOTypeNumeric'
8692
- type: object
8632
+ $ref: '#/components/schemas/SLOHistoryResponseData'
8693
8633
  errors:
8694
8634
  description: A list of errors while querying the history data for the service
8695
8635
  level objective.
@@ -8697,32 +8637,90 @@ components:
8697
8637
  $ref: '#/components/schemas/SLOHistoryResponseError'
8698
8638
  type: array
8699
8639
  type: object
8700
- SLOHistoryResponseError:
8701
- description: A list of errors while querying the history data for the service
8702
- level objective.
8703
- properties:
8704
- error:
8705
- description: Human readable error.
8706
- type: string
8707
- type: object
8708
- SLOHistoryResponseErrorWithType:
8709
- description: An object describing the error with error type and error message.
8640
+ SLOHistoryResponseData:
8641
+ description: An array of service level objective objects.
8710
8642
  properties:
8711
- error_message:
8712
- description: A message with more details about the error.
8713
- example: ''
8714
- type: string
8715
- error_type:
8716
- description: Type of the error.
8717
- example: ''
8718
- type: string
8719
- required:
8720
- - error_type
8721
- - error_message
8722
- type: object
8723
- SLOHistorySLIData:
8724
- description: 'An object that holds an SLI value and its associated data. It
8725
- can represent an SLO''s overall SLI value.
8643
+ from_ts:
8644
+ description: The `from` timestamp in epoch seconds.
8645
+ example: 1615323990
8646
+ format: int64
8647
+ type: integer
8648
+ group_by:
8649
+ description: 'For `metric` based SLOs where the query includes a group-by
8650
+ clause, this represents the list of grouping parameters.
8651
+
8652
+
8653
+ This is not included in responses for `monitor` based SLOs.'
8654
+ items:
8655
+ description: A grouping parameter.
8656
+ type: string
8657
+ type: array
8658
+ groups:
8659
+ description: 'For grouped SLOs, this represents SLI data for specific groups.
8660
+
8661
+
8662
+ This is not included in the responses for `metric` based SLOs.'
8663
+ items:
8664
+ $ref: '#/components/schemas/SLOHistoryMonitor'
8665
+ type: array
8666
+ monitors:
8667
+ description: 'For multi-monitor SLOs, this represents SLI data for specific
8668
+ monitors.
8669
+
8670
+
8671
+ This is not included in the responses for `metric` based SLOs.'
8672
+ items:
8673
+ $ref: '#/components/schemas/SLOHistoryMonitor'
8674
+ type: array
8675
+ overall:
8676
+ $ref: '#/components/schemas/SLOHistorySLIData'
8677
+ series:
8678
+ $ref: '#/components/schemas/SLOHistoryMetrics'
8679
+ thresholds:
8680
+ additionalProperties:
8681
+ $ref: '#/components/schemas/SLOThreshold'
8682
+ description: mapping of string timeframe to the SLO threshold.
8683
+ example:
8684
+ my_service:
8685
+ target: 95
8686
+ timeframe: 7d
8687
+ type: object
8688
+ to_ts:
8689
+ description: The `to` timestamp in epoch seconds.
8690
+ example: 1615928790
8691
+ format: int64
8692
+ type: integer
8693
+ type:
8694
+ $ref: '#/components/schemas/SLOType'
8695
+ type_id:
8696
+ $ref: '#/components/schemas/SLOTypeNumeric'
8697
+ type: object
8698
+ SLOHistoryResponseError:
8699
+ description: A list of errors while querying the history data for the service
8700
+ level objective.
8701
+ properties:
8702
+ error:
8703
+ description: Human readable error.
8704
+ type: string
8705
+ type: object
8706
+ SLOHistoryResponseErrorWithType:
8707
+ description: An object describing the error with error type and error message.
8708
+ properties:
8709
+ error_message:
8710
+ description: A message with more details about the error.
8711
+ example: ''
8712
+ type: string
8713
+ error_type:
8714
+ description: Type of the error.
8715
+ example: ''
8716
+ type: string
8717
+ required:
8718
+ - error_type
8719
+ - error_message
8720
+ type: object
8721
+ SLOHistorySLIData:
8722
+ description: 'An object that holds an SLI value and its associated data. It
8723
+ can represent an SLO''s overall SLI value.
8726
8724
 
8727
8725
  This can also represent the SLI value for a specific monitor in multi-monitor
8728
8726
  SLOs, or a group in grouped SLOs.'
@@ -8829,179 +8827,184 @@ components:
8829
8827
  type: string
8830
8828
  type: array
8831
8829
  metadata:
8832
- description: The metadata object containing additional information about
8833
- the list of SLOs.
8834
- properties:
8835
- page:
8836
- description: The object containing information about the pages of the
8837
- list of SLOs.
8838
- properties:
8839
- total_count:
8840
- description: The total number of resources that could be retrieved
8841
- ignoring the parameters and filters in the request.
8842
- format: int64
8843
- type: integer
8844
- total_filtered_count:
8845
- description: The total number of resources that match the parameters
8846
- and filters in the request. This attribute can be used by a client
8847
- to determine the total number of pages.
8848
- format: int64
8849
- type: integer
8850
- type: object
8851
- type: object
8830
+ $ref: '#/components/schemas/SLOListResponseMetadata'
8831
+ type: object
8832
+ SLOListResponseMetadata:
8833
+ description: The metadata object containing additional information about the
8834
+ list of SLOs.
8835
+ properties:
8836
+ page:
8837
+ $ref: '#/components/schemas/SLOListResponseMetadataPage'
8838
+ type: object
8839
+ SLOListResponseMetadataPage:
8840
+ description: The object containing information about the pages of the list of
8841
+ SLOs.
8842
+ properties:
8843
+ total_count:
8844
+ description: The total number of resources that could be retrieved ignoring
8845
+ the parameters and filters in the request.
8846
+ format: int64
8847
+ type: integer
8848
+ total_filtered_count:
8849
+ description: The total number of resources that match the parameters and
8850
+ filters in the request. This attribute can be used by a client to determine
8851
+ the total number of pages.
8852
+ format: int64
8853
+ type: integer
8852
8854
  type: object
8853
8855
  SLOResponse:
8854
8856
  description: A service level objective response containing a single service
8855
8857
  level objective.
8856
8858
  properties:
8857
8859
  data:
8858
- description: 'A service level objective object includes a service level
8859
- indicator, thresholds
8860
-
8861
- for one or more timeframes, and metadata (`name`, `description`, `tags`,
8862
- etc.).'
8863
- properties:
8864
- configured_alert_ids:
8865
- description: A list of SLO monitors IDs that reference this SLO. This
8866
- field is returned only when `with_configured_alert_ids` parameter
8867
- is true in query.
8868
- example:
8869
- - 123
8870
- - 456
8871
- - 789
8872
- items:
8873
- description: A monitor ID.
8874
- format: int64
8875
- type: integer
8876
- type: array
8877
- created_at:
8878
- description: 'Creation timestamp (UNIX time in seconds)
8879
-
8880
-
8881
- Always included in service level objective responses.'
8882
- format: int64
8883
- readOnly: true
8884
- type: integer
8885
- creator:
8886
- $ref: '#/components/schemas/Creator'
8887
- description:
8888
- description: 'A user-defined description of the service level objective.
8889
-
8890
-
8891
- Always included in service level objective responses (but may be `null`).
8892
-
8893
- Optional in create/update requests.'
8894
- nullable: true
8895
- type: string
8896
- groups:
8897
- description: 'A list of (up to 20) monitor groups that narrow the scope
8898
- of a monitor service level objective.
8860
+ $ref: '#/components/schemas/SLOResponseData'
8861
+ errors:
8862
+ description: 'An array of error messages. Each endpoint documents how/whether
8863
+ this field is
8899
8864
 
8865
+ used.'
8866
+ items:
8867
+ description: The error message.
8868
+ type: string
8869
+ type: array
8870
+ type: object
8871
+ SLOResponseData:
8872
+ description: 'A service level objective object includes a service level indicator,
8873
+ thresholds
8900
8874
 
8901
- Included in service level objective responses if it is not empty.
8902
- Optional in
8875
+ for one or more timeframes, and metadata (`name`, `description`, `tags`, etc.).'
8876
+ properties:
8877
+ configured_alert_ids:
8878
+ description: A list of SLO monitors IDs that reference this SLO. This field
8879
+ is returned only when `with_configured_alert_ids` parameter is true in
8880
+ query.
8881
+ example:
8882
+ - 123
8883
+ - 456
8884
+ - 789
8885
+ items:
8886
+ description: A monitor ID.
8887
+ format: int64
8888
+ type: integer
8889
+ type: array
8890
+ created_at:
8891
+ description: 'Creation timestamp (UNIX time in seconds)
8903
8892
 
8904
- create/update requests for monitor service level objectives, but may
8905
- only be
8906
8893
 
8907
- used when then length of the `monitor_ids` field is one.'
8908
- example:
8909
- - env:prod
8910
- - role:mysql
8911
- items:
8912
- description: A group name, for instance `env:prod`.
8913
- type: string
8914
- type: array
8915
- id:
8916
- description: 'A unique identifier for the service level objective object.
8894
+ Always included in service level objective responses.'
8895
+ format: int64
8896
+ readOnly: true
8897
+ type: integer
8898
+ creator:
8899
+ $ref: '#/components/schemas/Creator'
8900
+ description:
8901
+ description: 'A user-defined description of the service level objective.
8917
8902
 
8918
8903
 
8919
- Always included in service level objective responses.'
8920
- readOnly: true
8921
- type: string
8922
- modified_at:
8923
- description: 'Modification timestamp (UNIX time in seconds)
8924
-
8925
-
8926
- Always included in service level objective responses.'
8927
- format: int64
8928
- readOnly: true
8929
- type: integer
8930
- monitor_ids:
8931
- description: 'A list of monitor ids that defines the scope of a monitor
8932
- service level
8933
-
8934
- objective. **Required if type is `monitor`**.'
8935
- items:
8936
- description: A monitor ID.
8937
- format: int64
8938
- type: integer
8939
- type: array
8940
- monitor_tags:
8941
- description: 'The union of monitor tags for all monitors referenced
8942
- by the `monitor_ids`
8943
-
8944
- field.
8945
-
8946
- Always included in service level objective responses for monitor service
8947
- level
8948
-
8949
- objectives (but may be empty). Ignored in create/update requests.
8950
- Does not
8951
-
8952
- affect which monitors are included in the service level objective
8953
- (that is
8954
-
8955
- determined entirely by the `monitor_ids` field).'
8956
- items:
8957
- description: A monitor tag.
8958
- type: string
8959
- type: array
8960
- name:
8961
- description: The name of the service level objective object.
8962
- example: Custom Metric SLO
8963
- type: string
8964
- query:
8965
- $ref: '#/components/schemas/ServiceLevelObjectiveQuery'
8966
- tags:
8967
- description: 'A list of tags associated with this service level objective.
8968
-
8969
- Always included in service level objective responses (but may be empty).
8970
-
8971
- Optional in create/update requests.'
8972
- example:
8973
- - env:prod
8974
- - app:core
8975
- items:
8976
- description: A tag to apply to your SLO.
8977
- type: string
8978
- type: array
8979
- thresholds:
8980
- description: 'The thresholds (timeframes and associated targets) for
8981
- this service level
8982
-
8983
- objective object.'
8984
- example:
8985
- - target: 95
8986
- timeframe: 7d
8987
- - target: 95
8988
- timeframe: 30d
8989
- warning: 97
8990
- items:
8991
- $ref: '#/components/schemas/SLOThreshold'
8992
- type: array
8993
- type:
8994
- $ref: '#/components/schemas/SLOType'
8995
- type: object
8996
- errors:
8997
- description: 'An array of error messages. Each endpoint documents how/whether
8998
- this field is
8904
+ Always included in service level objective responses (but may be `null`).
8999
8905
 
9000
- used.'
8906
+ Optional in create/update requests.'
8907
+ nullable: true
8908
+ type: string
8909
+ groups:
8910
+ description: 'A list of (up to 20) monitor groups that narrow the scope
8911
+ of a monitor service level objective.
8912
+
8913
+
8914
+ Included in service level objective responses if it is not empty. Optional
8915
+ in
8916
+
8917
+ create/update requests for monitor service level objectives, but may only
8918
+ be
8919
+
8920
+ used when then length of the `monitor_ids` field is one.'
8921
+ example:
8922
+ - env:prod
8923
+ - role:mysql
9001
8924
  items:
9002
- description: The error message.
8925
+ description: A group name, for instance `env:prod`.
8926
+ type: string
8927
+ type: array
8928
+ id:
8929
+ description: 'A unique identifier for the service level objective object.
8930
+
8931
+
8932
+ Always included in service level objective responses.'
8933
+ readOnly: true
8934
+ type: string
8935
+ modified_at:
8936
+ description: 'Modification timestamp (UNIX time in seconds)
8937
+
8938
+
8939
+ Always included in service level objective responses.'
8940
+ format: int64
8941
+ readOnly: true
8942
+ type: integer
8943
+ monitor_ids:
8944
+ description: 'A list of monitor ids that defines the scope of a monitor
8945
+ service level
8946
+
8947
+ objective. **Required if type is `monitor`**.'
8948
+ items:
8949
+ description: A monitor ID.
8950
+ format: int64
8951
+ type: integer
8952
+ type: array
8953
+ monitor_tags:
8954
+ description: 'The union of monitor tags for all monitors referenced by the
8955
+ `monitor_ids`
8956
+
8957
+ field.
8958
+
8959
+ Always included in service level objective responses for monitor service
8960
+ level
8961
+
8962
+ objectives (but may be empty). Ignored in create/update requests. Does
8963
+ not
8964
+
8965
+ affect which monitors are included in the service level objective (that
8966
+ is
8967
+
8968
+ determined entirely by the `monitor_ids` field).'
8969
+ items:
8970
+ description: A monitor tag.
8971
+ type: string
8972
+ type: array
8973
+ name:
8974
+ description: The name of the service level objective object.
8975
+ example: Custom Metric SLO
8976
+ type: string
8977
+ query:
8978
+ $ref: '#/components/schemas/ServiceLevelObjectiveQuery'
8979
+ tags:
8980
+ description: 'A list of tags associated with this service level objective.
8981
+
8982
+ Always included in service level objective responses (but may be empty).
8983
+
8984
+ Optional in create/update requests.'
8985
+ example:
8986
+ - env:prod
8987
+ - app:core
8988
+ items:
8989
+ description: A tag to apply to your SLO.
9003
8990
  type: string
9004
8991
  type: array
8992
+ thresholds:
8993
+ description: 'The thresholds (timeframes and associated targets) for this
8994
+ service level
8995
+
8996
+ objective object.'
8997
+ example:
8998
+ - target: 95
8999
+ timeframe: 7d
9000
+ - target: 95
9001
+ timeframe: 30d
9002
+ warning: 97
9003
+ items:
9004
+ $ref: '#/components/schemas/SLOThreshold'
9005
+ type: array
9006
+ type:
9007
+ $ref: '#/components/schemas/SLOType'
9005
9008
  type: object
9006
9009
  SLOThreshold:
9007
9010
  description: SLO thresholds (target and optionally warning) for a single time
@@ -9179,20 +9182,7 @@ components:
9179
9182
  $ref: '#/components/schemas/WidgetCustomLink'
9180
9183
  type: array
9181
9184
  requests:
9182
- description: Widget definition.
9183
- example:
9184
- x:
9185
- q: system.cpu.user
9186
- y:
9187
- q: system.mem.used
9188
- properties:
9189
- table:
9190
- $ref: '#/components/schemas/ScatterplotTableRequest'
9191
- x:
9192
- $ref: '#/components/schemas/ScatterPlotRequest'
9193
- y:
9194
- $ref: '#/components/schemas/ScatterPlotRequest'
9195
- type: object
9185
+ $ref: '#/components/schemas/ScatterPlotWidgetDefinitionRequests'
9196
9186
  time:
9197
9187
  $ref: '#/components/schemas/WidgetTime'
9198
9188
  title:
@@ -9213,6 +9203,21 @@ components:
9213
9203
  - type
9214
9204
  - requests
9215
9205
  type: object
9206
+ ScatterPlotWidgetDefinitionRequests:
9207
+ description: Widget definition.
9208
+ example:
9209
+ x:
9210
+ q: system.cpu.user
9211
+ y:
9212
+ q: system.mem.used
9213
+ properties:
9214
+ table:
9215
+ $ref: '#/components/schemas/ScatterplotTableRequest'
9216
+ x:
9217
+ $ref: '#/components/schemas/ScatterPlotRequest'
9218
+ y:
9219
+ $ref: '#/components/schemas/ScatterPlotRequest'
9220
+ type: object
9216
9221
  ScatterPlotWidgetDefinitionType:
9217
9222
  default: scatterplot
9218
9223
  description: Type of the scatter plot widget.
@@ -9240,14 +9245,12 @@ components:
9240
9245
  description: Scatterplot request containing formulas and functions.
9241
9246
  properties:
9242
9247
  formulas:
9243
- description: List of Scatterplot formulas that operate on queries. **This
9244
- feature is currently in beta.**
9248
+ description: List of Scatterplot formulas that operate on queries.
9245
9249
  items:
9246
9250
  $ref: '#/components/schemas/ScatterplotWidgetFormula'
9247
9251
  type: array
9248
9252
  queries:
9249
9253
  description: List of queries that can be returned directly or used in formulas.
9250
- **This feature is currently in beta.**
9251
9254
  items:
9252
9255
  $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
9253
9256
  type: array
@@ -9735,30 +9738,32 @@ components:
9735
9738
  description: The Slack channel configuration.
9736
9739
  properties:
9737
9740
  display:
9738
- description: Configuration options for what is shown in an alert event message.
9739
- properties:
9740
- message:
9741
- default: true
9742
- description: Show the main body of the alert event.
9743
- type: boolean
9744
- notified:
9745
- default: true
9746
- description: Show the list of @-handles in the alert event.
9747
- type: boolean
9748
- snapshot:
9749
- default: true
9750
- description: Show the alert event's snapshot image.
9751
- type: boolean
9752
- tags:
9753
- default: true
9754
- description: Show the scopes on which the monitor alerted.
9755
- type: boolean
9756
- type: object
9741
+ $ref: '#/components/schemas/SlackIntegrationChannelDisplay'
9757
9742
  name:
9758
9743
  description: Your channel name.
9759
9744
  example: '#general'
9760
9745
  type: string
9761
9746
  type: object
9747
+ SlackIntegrationChannelDisplay:
9748
+ description: Configuration options for what is shown in an alert event message.
9749
+ properties:
9750
+ message:
9751
+ default: true
9752
+ description: Show the main body of the alert event.
9753
+ type: boolean
9754
+ notified:
9755
+ default: true
9756
+ description: Show the list of @-handles in the alert event.
9757
+ type: boolean
9758
+ snapshot:
9759
+ default: true
9760
+ description: Show the alert event's snapshot image.
9761
+ type: boolean
9762
+ tags:
9763
+ default: true
9764
+ description: Show the scopes on which the monitor alerted.
9765
+ type: boolean
9766
+ type: object
9762
9767
  SlackIntegrationChannels:
9763
9768
  description: A list of configured Slack channels.
9764
9769
  example:
@@ -9880,8 +9885,7 @@ components:
9880
9885
  event_query:
9881
9886
  $ref: '#/components/schemas/LogQueryDefinition'
9882
9887
  formulas:
9883
- description: List of formulas that operate on queries. **This feature is
9884
- currently in beta.**
9888
+ description: List of formulas that operate on queries.
9885
9889
  items:
9886
9890
  $ref: '#/components/schemas/WidgetFormula'
9887
9891
  type: array
@@ -9898,7 +9902,6 @@ components:
9898
9902
  type: string
9899
9903
  queries:
9900
9904
  description: List of queries that can be returned directly or used in formulas.
9901
- **This feature is currently in beta.**
9902
9905
  items:
9903
9906
  $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
9904
9907
  type: array
@@ -10091,13 +10094,7 @@ components:
10091
10094
  description: Object returned describing a API test result.
10092
10095
  properties:
10093
10096
  check:
10094
- description: Object describing the API test configuration.
10095
- properties:
10096
- config:
10097
- $ref: '#/components/schemas/SyntheticsTestConfig'
10098
- required:
10099
- - config
10100
- type: object
10097
+ $ref: '#/components/schemas/SyntheticsAPITestResultFullCheck'
10101
10098
  check_time:
10102
10099
  description: When the API test was conducted.
10103
10100
  format: double
@@ -10117,6 +10114,14 @@ components:
10117
10114
  status:
10118
10115
  $ref: '#/components/schemas/SyntheticsTestMonitorStatus'
10119
10116
  type: object
10117
+ SyntheticsAPITestResultFullCheck:
10118
+ description: Object describing the API test configuration.
10119
+ properties:
10120
+ config:
10121
+ $ref: '#/components/schemas/SyntheticsTestConfig'
10122
+ required:
10123
+ - config
10124
+ type: object
10120
10125
  SyntheticsAPITestResultShort:
10121
10126
  description: Object with the results of a single Synthetic API test.
10122
10127
  properties:
@@ -10128,20 +10133,22 @@ components:
10128
10133
  description: Location from which the API test was performed.
10129
10134
  type: string
10130
10135
  result:
10131
- description: Result of the last API test run.
10132
- properties:
10133
- passed:
10134
- description: Describes if the test run has passed or failed.
10135
- type: boolean
10136
- timings:
10137
- $ref: '#/components/schemas/SyntheticsTiming'
10138
- type: object
10136
+ $ref: '#/components/schemas/SyntheticsAPITestResultShortResult'
10139
10137
  result_id:
10140
10138
  description: ID of the API test result.
10141
10139
  type: string
10142
10140
  status:
10143
10141
  $ref: '#/components/schemas/SyntheticsTestMonitorStatus'
10144
10142
  type: object
10143
+ SyntheticsAPITestResultShortResult:
10144
+ description: Result of the last API test run.
10145
+ properties:
10146
+ passed:
10147
+ description: Describes if the test run has passed or failed.
10148
+ type: boolean
10149
+ timings:
10150
+ $ref: '#/components/schemas/SyntheticsTiming'
10151
+ type: object
10145
10152
  SyntheticsAPITestType:
10146
10153
  default: api
10147
10154
  description: Type of the Synthetic test, `api`.
@@ -10243,23 +10250,25 @@ components:
10243
10250
  description: The associated assertion property.
10244
10251
  type: string
10245
10252
  target:
10246
- description: Composed target for `validatesJSONPath` operator.
10247
- properties:
10248
- jsonPath:
10249
- description: The JSON path to assert.
10250
- type: string
10251
- operator:
10252
- description: The specific operator to use on the path.
10253
- type: string
10254
- targetValue:
10255
- description: The path target value to compare to.
10256
- type: object
10253
+ $ref: '#/components/schemas/SyntheticsAssertionJSONPathTargetTarget'
10257
10254
  type:
10258
10255
  $ref: '#/components/schemas/SyntheticsAssertionType'
10259
10256
  required:
10260
10257
  - type
10261
10258
  - operator
10262
10259
  type: object
10260
+ SyntheticsAssertionJSONPathTargetTarget:
10261
+ description: Composed target for `validatesJSONPath` operator.
10262
+ properties:
10263
+ jsonPath:
10264
+ description: The JSON path to assert.
10265
+ type: string
10266
+ operator:
10267
+ description: The specific operator to use on the path.
10268
+ type: string
10269
+ targetValue:
10270
+ description: The path target value to compare to.
10271
+ type: object
10263
10272
  SyntheticsAssertionOperator:
10264
10273
  description: Assertion operator to apply.
10265
10274
  enum:
@@ -10762,13 +10771,7 @@ components:
10762
10771
  description: Object returned describing a browser test result.
10763
10772
  properties:
10764
10773
  check:
10765
- description: Object describing the browser test configuration.
10766
- properties:
10767
- config:
10768
- $ref: '#/components/schemas/SyntheticsTestConfig'
10769
- required:
10770
- - config
10771
- type: object
10774
+ $ref: '#/components/schemas/SyntheticsBrowserTestResultFullCheck'
10772
10775
  check_time:
10773
10776
  description: When the browser test was conducted.
10774
10777
  format: double
@@ -10788,6 +10791,14 @@ components:
10788
10791
  status:
10789
10792
  $ref: '#/components/schemas/SyntheticsTestMonitorStatus'
10790
10793
  type: object
10794
+ SyntheticsBrowserTestResultFullCheck:
10795
+ description: Object describing the browser test configuration.
10796
+ properties:
10797
+ config:
10798
+ $ref: '#/components/schemas/SyntheticsTestConfig'
10799
+ required:
10800
+ - config
10801
+ type: object
10791
10802
  SyntheticsBrowserTestResultShort:
10792
10803
  description: Object with the results of a single Synthetic browser test.
10793
10804
  properties:
@@ -10799,27 +10810,7 @@ components:
10799
10810
  description: Location from which the Browser test was performed.
10800
10811
  type: string
10801
10812
  result:
10802
- description: Object with the result of the last browser test run.
10803
- properties:
10804
- device:
10805
- $ref: '#/components/schemas/SyntheticsDevice'
10806
- duration:
10807
- description: Length in milliseconds of the browser test run.
10808
- format: double
10809
- type: number
10810
- errorCount:
10811
- description: Amount of errors collected for a single browser test run.
10812
- format: int64
10813
- type: integer
10814
- stepCountCompleted:
10815
- description: Amount of browser test steps completed before failing.
10816
- format: int64
10817
- type: integer
10818
- stepCountTotal:
10819
- description: Total amount of browser test steps.
10820
- format: int64
10821
- type: integer
10822
- type: object
10813
+ $ref: '#/components/schemas/SyntheticsBrowserTestResultShortResult'
10823
10814
  result_id:
10824
10815
  description: ID of the browser test result.
10825
10816
  type: string
@@ -10829,6 +10820,28 @@ components:
10829
10820
  - from_ts
10830
10821
  - to_ts
10831
10822
  type: object
10823
+ SyntheticsBrowserTestResultShortResult:
10824
+ description: Object with the result of the last browser test run.
10825
+ properties:
10826
+ device:
10827
+ $ref: '#/components/schemas/SyntheticsDevice'
10828
+ duration:
10829
+ description: Length in milliseconds of the browser test run.
10830
+ format: double
10831
+ type: number
10832
+ errorCount:
10833
+ description: Amount of errors collected for a single browser test run.
10834
+ format: int64
10835
+ type: integer
10836
+ stepCountCompleted:
10837
+ description: Amount of browser test steps completed before failing.
10838
+ format: int64
10839
+ type: integer
10840
+ stepCountTotal:
10841
+ description: Total amount of browser test steps.
10842
+ format: int64
10843
+ type: integer
10844
+ type: object
10832
10845
  SyntheticsBrowserTestType:
10833
10846
  default: browser
10834
10847
  description: Type of the Synthetic test, `browser`.
@@ -11187,16 +11200,7 @@ components:
11187
11200
  description: Synthetics global variable.
11188
11201
  properties:
11189
11202
  attributes:
11190
- description: Attributes of the global variable.
11191
- properties:
11192
- restricted_roles:
11193
- description: List of role identifiers that can be pulled from the Roles
11194
- API.
11195
- items:
11196
- description: UUID for a role.
11197
- type: string
11198
- type: array
11199
- type: object
11203
+ $ref: '#/components/schemas/SyntheticsGlobalVariableAttributes'
11200
11204
  description:
11201
11205
  description: Description of the global variable.
11202
11206
  example: Example description
@@ -11211,22 +11215,7 @@ components:
11211
11215
  example: MY_VARIABLE
11212
11216
  type: string
11213
11217
  parse_test_options:
11214
- description: Parser options to use for retrieving a Synthetics global variable
11215
- from a Synthetics Test. Used in conjunction with `parse_test_public_id`.
11216
- properties:
11217
- field:
11218
- description: When type is `http_header`, name of the header to use to
11219
- extract the value.
11220
- example: content-type
11221
- type: string
11222
- parser:
11223
- $ref: '#/components/schemas/SyntheticsVariableParser'
11224
- type:
11225
- $ref: '#/components/schemas/SyntheticsGlobalVariableParseTestOptionsType'
11226
- required:
11227
- - type
11228
- - parser
11229
- type: object
11218
+ $ref: '#/components/schemas/SyntheticsGlobalVariableParseTestOptions'
11230
11219
  parse_test_public_id:
11231
11220
  description: A Synthetic test ID to use as a test to generate the variable
11232
11221
  value.
@@ -11249,6 +11238,34 @@ components:
11249
11238
  - tags
11250
11239
  - value
11251
11240
  type: object
11241
+ SyntheticsGlobalVariableAttributes:
11242
+ description: Attributes of the global variable.
11243
+ properties:
11244
+ restricted_roles:
11245
+ description: List of role identifiers that can be pulled from the Roles
11246
+ API.
11247
+ items:
11248
+ description: UUID for a role.
11249
+ type: string
11250
+ type: array
11251
+ type: object
11252
+ SyntheticsGlobalVariableParseTestOptions:
11253
+ description: Parser options to use for retrieving a Synthetics global variable
11254
+ from a Synthetics Test. Used in conjunction with `parse_test_public_id`.
11255
+ properties:
11256
+ field:
11257
+ description: When type is `http_header`, name of the header to use to extract
11258
+ the value.
11259
+ example: content-type
11260
+ type: string
11261
+ parser:
11262
+ $ref: '#/components/schemas/SyntheticsVariableParser'
11263
+ type:
11264
+ $ref: '#/components/schemas/SyntheticsGlobalVariableParseTestOptionsType'
11265
+ required:
11266
+ - type
11267
+ - parser
11268
+ type: object
11252
11269
  SyntheticsGlobalVariableParseTestOptionsType:
11253
11270
  description: Property of the Synthetics Test Response to use for a Synthetics
11254
11271
  global variable.
@@ -11380,31 +11397,7 @@ components:
11380
11397
  example: New private location
11381
11398
  type: string
11382
11399
  secrets:
11383
- description: Secrets for the private location. Only present in the response
11384
- when creating the private location.
11385
- properties:
11386
- authentication:
11387
- description: Authentication part of the secrets.
11388
- properties:
11389
- id:
11390
- description: Access key for the private location.
11391
- readOnly: true
11392
- type: string
11393
- key:
11394
- description: Secret access key for the private location.
11395
- readOnly: true
11396
- type: string
11397
- type: object
11398
- config_decryption:
11399
- description: Private key for the private location.
11400
- properties:
11401
- key:
11402
- description: Private key for the private location.
11403
- readOnly: true
11404
- type: string
11405
- type: object
11406
- readOnly: true
11407
- type: object
11400
+ $ref: '#/components/schemas/SyntheticsPrivateLocationSecrets'
11408
11401
  tags:
11409
11402
  description: Array of tags attached to the private location.
11410
11403
  example:
@@ -11430,15 +11423,47 @@ components:
11430
11423
  private_location:
11431
11424
  $ref: '#/components/schemas/SyntheticsPrivateLocation'
11432
11425
  result_encryption:
11433
- description: Public key for the result encryption.
11434
- properties:
11435
- id:
11436
- description: Fingerprint for the encryption key.
11437
- type: string
11438
- key:
11439
- description: Public key for result encryption.
11440
- type: string
11441
- type: object
11426
+ $ref: '#/components/schemas/SyntheticsPrivateLocationCreationResponseResultEncryption'
11427
+ type: object
11428
+ SyntheticsPrivateLocationCreationResponseResultEncryption:
11429
+ description: Public key for the result encryption.
11430
+ properties:
11431
+ id:
11432
+ description: Fingerprint for the encryption key.
11433
+ type: string
11434
+ key:
11435
+ description: Public key for result encryption.
11436
+ type: string
11437
+ type: object
11438
+ SyntheticsPrivateLocationSecrets:
11439
+ description: Secrets for the private location. Only present in the response
11440
+ when creating the private location.
11441
+ properties:
11442
+ authentication:
11443
+ $ref: '#/components/schemas/SyntheticsPrivateLocationSecretsAuthentication'
11444
+ config_decryption:
11445
+ $ref: '#/components/schemas/SyntheticsPrivateLocationSecretsConfigDecryption'
11446
+ readOnly: true
11447
+ type: object
11448
+ SyntheticsPrivateLocationSecretsAuthentication:
11449
+ description: Authentication part of the secrets.
11450
+ properties:
11451
+ id:
11452
+ description: Access key for the private location.
11453
+ readOnly: true
11454
+ type: string
11455
+ key:
11456
+ description: Secret access key for the private location.
11457
+ readOnly: true
11458
+ type: string
11459
+ type: object
11460
+ SyntheticsPrivateLocationSecretsConfigDecryption:
11461
+ description: Private key for the private location.
11462
+ properties:
11463
+ key:
11464
+ description: Private key for the private location.
11465
+ readOnly: true
11466
+ type: string
11442
11467
  type: object
11443
11468
  SyntheticsSSLCertificate:
11444
11469
  description: Object describing the SSL certificate used for a Synthetic test.
@@ -11463,61 +11488,18 @@ components:
11463
11488
  description: SHA-1 digest of the DER-encoded Certificate information.
11464
11489
  type: string
11465
11490
  issuer:
11466
- description: Object describing the issuer of a SSL certificate.
11467
- properties:
11468
- C:
11469
- description: Country Name that issued the certificate.
11470
- type: string
11471
- CN:
11472
- description: Common Name that issued certificate.
11473
- type: string
11474
- L:
11475
- description: Locality that issued the certificate.
11476
- type: string
11477
- O:
11478
- description: Organization that issued the certificate.
11479
- type: string
11480
- OU:
11481
- description: Organizational Unit that issued the certificate.
11482
- type: string
11483
- ST:
11484
- description: State Or Province Name that issued the certificate.
11485
- type: string
11486
- type: object
11491
+ $ref: '#/components/schemas/SyntheticsSSLCertificateIssuer'
11487
11492
  modulus:
11488
11493
  description: Modulus associated to the SSL certificate private key.
11489
11494
  type: string
11490
- protocol:
11491
- description: TLS protocol used for the test.
11492
- type: string
11493
- serialNumber:
11494
- description: Serial Number assigned by Symantec to the SSL certificate.
11495
- type: string
11496
- subject:
11497
- description: Object describing the SSL certificate used for the test.
11498
- properties:
11499
- C:
11500
- description: Country Name associated with the certificate.
11501
- type: string
11502
- CN:
11503
- description: Common Name that associated with the certificate.
11504
- type: string
11505
- L:
11506
- description: Locality associated with the certificate.
11507
- type: string
11508
- O:
11509
- description: Organization associated with the certificate.
11510
- type: string
11511
- OU:
11512
- description: Organizational Unit associated with the certificate.
11513
- type: string
11514
- ST:
11515
- description: State Or Province Name associated with the certificate.
11516
- type: string
11517
- altName:
11518
- description: Subject Alternative Name associated with the certificate.
11519
- type: string
11520
- type: object
11495
+ protocol:
11496
+ description: TLS protocol used for the test.
11497
+ type: string
11498
+ serialNumber:
11499
+ description: Serial Number assigned by Symantec to the SSL certificate.
11500
+ type: string
11501
+ subject:
11502
+ $ref: '#/components/schemas/SyntheticsSSLCertificateSubject'
11521
11503
  validFrom:
11522
11504
  description: Date from which the SSL certificate is valid.
11523
11505
  format: date-time
@@ -11527,6 +11509,53 @@ components:
11527
11509
  format: date-time
11528
11510
  type: string
11529
11511
  type: object
11512
+ SyntheticsSSLCertificateIssuer:
11513
+ description: Object describing the issuer of a SSL certificate.
11514
+ properties:
11515
+ C:
11516
+ description: Country Name that issued the certificate.
11517
+ type: string
11518
+ CN:
11519
+ description: Common Name that issued certificate.
11520
+ type: string
11521
+ L:
11522
+ description: Locality that issued the certificate.
11523
+ type: string
11524
+ O:
11525
+ description: Organization that issued the certificate.
11526
+ type: string
11527
+ OU:
11528
+ description: Organizational Unit that issued the certificate.
11529
+ type: string
11530
+ ST:
11531
+ description: State Or Province Name that issued the certificate.
11532
+ type: string
11533
+ type: object
11534
+ SyntheticsSSLCertificateSubject:
11535
+ description: Object describing the SSL certificate used for the test.
11536
+ properties:
11537
+ C:
11538
+ description: Country Name associated with the certificate.
11539
+ type: string
11540
+ CN:
11541
+ description: Common Name that associated with the certificate.
11542
+ type: string
11543
+ L:
11544
+ description: Locality associated with the certificate.
11545
+ type: string
11546
+ O:
11547
+ description: Organization associated with the certificate.
11548
+ type: string
11549
+ OU:
11550
+ description: Organizational Unit associated with the certificate.
11551
+ type: string
11552
+ ST:
11553
+ description: State Or Province Name associated with the certificate.
11554
+ type: string
11555
+ altName:
11556
+ description: Subject Alternative Name associated with the certificate.
11557
+ type: string
11558
+ type: object
11530
11559
  SyntheticsStatus:
11531
11560
  description: Determines whether or not the batch has passed, failed, or is in
11532
11561
  progress.
@@ -11846,6 +11875,10 @@ components:
11846
11875
  allow_insecure:
11847
11876
  description: Allows loading insecure content for an HTTP request.
11848
11877
  type: boolean
11878
+ checkCertificateRevocation:
11879
+ description: For SSL test, whether or not the test should fail on revoked
11880
+ certificate in stapled OCSP.
11881
+ type: boolean
11849
11882
  device_ids:
11850
11883
  description: For browser test, array with the different device IDs used
11851
11884
  to run the test.
@@ -11873,20 +11906,7 @@ components:
11873
11906
  all monitor dashboard widgets and SLOs.
11874
11907
  type: string
11875
11908
  monitor_options:
11876
- description: 'Object containing the options for a Synthetic test as a monitor
11877
-
11878
- (for example, renotification).'
11879
- properties:
11880
- renotify_interval:
11881
- description: 'Time interval before renotifying if the test is still
11882
- failing
11883
-
11884
- (in minutes).'
11885
- format: int64
11886
- maximum: 1440
11887
- minimum: 0
11888
- type: integer
11889
- type: object
11909
+ $ref: '#/components/schemas/SyntheticsTestOptionsMonitorOptions'
11890
11910
  monitor_priority:
11891
11911
  description: Integer from 1 (high) to 5 (low) indicating alert severity.
11892
11912
  format: int32
@@ -11905,6 +11925,20 @@ components:
11905
11925
  minimum: 30
11906
11926
  type: integer
11907
11927
  type: object
11928
+ SyntheticsTestOptionsMonitorOptions:
11929
+ description: 'Object containing the options for a Synthetic test as a monitor
11930
+
11931
+ (for example, renotification).'
11932
+ properties:
11933
+ renotify_interval:
11934
+ description: 'Time interval before renotifying if the test is still failing
11935
+
11936
+ (in minutes).'
11937
+ format: int64
11938
+ maximum: 1440
11939
+ minimum: 0
11940
+ type: integer
11941
+ type: object
11908
11942
  SyntheticsTestOptionsRetry:
11909
11943
  description: Object describing the retry strategy to apply to a Synthetic test.
11910
11944
  properties:
@@ -12295,8 +12329,7 @@ components:
12295
12329
  event_query:
12296
12330
  $ref: '#/components/schemas/LogQueryDefinition'
12297
12331
  formulas:
12298
- description: List of formulas that operate on queries. **This feature is
12299
- currently in beta.**
12332
+ description: List of formulas that operate on queries.
12300
12333
  items:
12301
12334
  $ref: '#/components/schemas/WidgetFormula'
12302
12335
  type: array
@@ -12320,7 +12353,6 @@ components:
12320
12353
  type: string
12321
12354
  queries:
12322
12355
  description: List of queries that can be returned directly or used in formulas.
12323
- **This feature is currently in beta.**
12324
12356
  items:
12325
12357
  $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
12326
12358
  type: array
@@ -12484,8 +12516,7 @@ components:
12484
12516
  event_query:
12485
12517
  $ref: '#/components/schemas/LogQueryDefinition'
12486
12518
  formulas:
12487
- description: List of formulas that operate on queries. **This feature is
12488
- currently in beta.**
12519
+ description: List of formulas that operate on queries.
12489
12520
  items:
12490
12521
  $ref: '#/components/schemas/WidgetFormula'
12491
12522
  type: array
@@ -12510,7 +12541,6 @@ components:
12510
12541
  type: string
12511
12542
  queries:
12512
12543
  description: List of queries that can be returned directly or used in formulas.
12513
- **This feature is currently in beta.**
12514
12544
  items:
12515
12545
  $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
12516
12546
  type: array
@@ -12585,8 +12615,7 @@ components:
12585
12615
  event_query:
12586
12616
  $ref: '#/components/schemas/LogQueryDefinition'
12587
12617
  formulas:
12588
- description: List of formulas that operate on queries. **This feature is
12589
- currently in beta.**
12618
+ description: List of formulas that operate on queries.
12590
12619
  items:
12591
12620
  $ref: '#/components/schemas/WidgetFormula'
12592
12621
  type: array
@@ -12603,7 +12632,6 @@ components:
12603
12632
  type: string
12604
12633
  queries:
12605
12634
  description: List of queries that can be returned directly or used in formulas.
12606
- **This feature is currently in beta.**
12607
12635
  items:
12608
12636
  $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
12609
12637
  type: array
@@ -12691,8 +12719,7 @@ components:
12691
12719
  description: An updated treemap widget.
12692
12720
  properties:
12693
12721
  formulas:
12694
- description: List of formulas that operate on queries. **This feature is
12695
- currently in beta.**
12722
+ description: List of formulas that operate on queries.
12696
12723
  items:
12697
12724
  $ref: '#/components/schemas/WidgetFormula'
12698
12725
  type: array
@@ -12701,7 +12728,6 @@ components:
12701
12728
  type: string
12702
12729
  queries:
12703
12730
  description: List of queries that can be returned directly or used in formulas.
12704
- **This feature is currently in beta.**
12705
12731
  items:
12706
12732
  $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
12707
12733
  type: array
@@ -13319,6 +13345,41 @@ components:
13319
13345
  $ref: '#/components/schemas/UsageBillableSummaryHour'
13320
13346
  type: array
13321
13347
  type: object
13348
+ UsageCIVisibilityHour:
13349
+ description: CI visibility usage in a given hour.
13350
+ properties:
13351
+ ci_pipeline_indexed_spans:
13352
+ description: The number of spans for pipelines in the queried hour.
13353
+ type: integer
13354
+ ci_test_indexed_spans:
13355
+ description: The number of spans for tests in the queried hour.
13356
+ type: integer
13357
+ ci_visibility_pipeline_committers:
13358
+ description: Shows the total count of all active Git committers for Pipelines
13359
+ in the current month. A committer is active if they commit at least 3
13360
+ times in a given month.
13361
+ type: integer
13362
+ ci_visibility_test_committers:
13363
+ description: The total count of all active Git committers for tests in the
13364
+ current month. A committer is active if they commit at least 3 times in
13365
+ a given month.
13366
+ type: integer
13367
+ org_name:
13368
+ description: The organization name.
13369
+ type: string
13370
+ public_id:
13371
+ description: The organization public ID.
13372
+ type: string
13373
+ type: object
13374
+ UsageCIVisibilityResponse:
13375
+ description: CI visibility usage response
13376
+ properties:
13377
+ usage:
13378
+ description: Response containing CI visibility usage.
13379
+ items:
13380
+ $ref: '#/components/schemas/UsageCIVisibilityHour'
13381
+ type: array
13382
+ type: object
13322
13383
  UsageCWSHour:
13323
13384
  description: Cloud Workload Security usage for a given organization for a given
13324
13385
  hour.
@@ -13992,6 +14053,32 @@ components:
13992
14053
  $ref: '#/components/schemas/UsageNetworkHostsHour'
13993
14054
  type: array
13994
14055
  type: object
14056
+ UsageOnlineArchiveHour:
14057
+ description: Online Archive usage in a given hour.
14058
+ properties:
14059
+ hour:
14060
+ description: The hour for the usage.
14061
+ format: date-time
14062
+ type: string
14063
+ online_archive_events_count:
14064
+ description: Total count of online archived events within the hour.
14065
+ type: integer
14066
+ org_name:
14067
+ description: The organization name.
14068
+ type: string
14069
+ public_id:
14070
+ description: The organization public ID.
14071
+ type: string
14072
+ type: object
14073
+ UsageOnlineArchiveResponse:
14074
+ description: Online Archive usage response.
14075
+ properties:
14076
+ usage:
14077
+ description: Response containing Online Archive usage.
14078
+ items:
14079
+ $ref: '#/components/schemas/UsageOnlineArchiveHour'
14080
+ type: array
14081
+ type: object
13995
14082
  UsageProfilingHour:
13996
14083
  description: The number of profiled hosts for each hour for a given organization.
13997
14084
  properties:
@@ -14328,6 +14415,26 @@ components:
14328
14415
  current date for all organizations.
14329
14416
  format: int64
14330
14417
  type: integer
14418
+ ci_pipeline_indexed_spans_sum:
14419
+ description: Shows the sum of all CI pipeline indexed spans over all hours
14420
+ in the current month for all organizations.
14421
+ format: int64
14422
+ type: integer
14423
+ ci_test_indexed_spans_sum:
14424
+ description: Shows the sum of all CI test indexed spans over all hours in
14425
+ the current month for all organizations.
14426
+ format: int64
14427
+ type: integer
14428
+ ci_visibility_pipeline_committers_hwm:
14429
+ description: Shows the high-water mark of all CI visibility pipeline committers
14430
+ over all hours in the current month for all organizations.
14431
+ format: int64
14432
+ type: integer
14433
+ ci_visibility_test_committers_hwm:
14434
+ description: Shows the high-water mark of all CI visibility test committers
14435
+ over all hours in the current month for all organizations.
14436
+ format: int64
14437
+ type: integer
14331
14438
  container_avg:
14332
14439
  description: Shows the average of all distinct containers over all hours
14333
14440
  in the current date for all organizations.
@@ -14477,6 +14584,11 @@ components:
14477
14584
  all hours in the current date for all organizations.
14478
14585
  format: int64
14479
14586
  type: integer
14587
+ online_archive_events_count_sum:
14588
+ description: Sum of all online archived events over all hours in the current
14589
+ date for all organizations.
14590
+ format: int64
14591
+ type: integer
14480
14592
  opentelemetry_host_top99p:
14481
14593
  description: Shows the 99th percentile of all hosts reported by the Datadog
14482
14594
  exporter for the OpenTelemetry Collector over all hours in the current
@@ -14618,6 +14730,26 @@ components:
14618
14730
  current date for the given org.
14619
14731
  format: int64
14620
14732
  type: integer
14733
+ ci_pipeline_indexed_spans_sum:
14734
+ description: Shows the sum of all CI pipeline indexed spans over all hours
14735
+ in the current date for the given org.
14736
+ format: int64
14737
+ type: integer
14738
+ ci_test_indexed_spans_sum:
14739
+ description: Shows the sum of all CI test indexed spans over all hours in
14740
+ the current date for the given org.
14741
+ format: int64
14742
+ type: integer
14743
+ ci_visibility_pipeline_committers_hwm:
14744
+ description: Shows the high-water mark of all CI visibility pipeline committers
14745
+ over all hours in the current date for the given org.
14746
+ format: int64
14747
+ type: integer
14748
+ ci_visibility_test_committers_hwm:
14749
+ description: Shows the high-water mark of all CI visibility test committers
14750
+ over all hours in the current date for the given org.
14751
+ format: int64
14752
+ type: integer
14621
14753
  container_avg:
14622
14754
  description: Shows the average of all distinct containers over all hours
14623
14755
  in the current date for the given org.
@@ -14769,6 +14901,11 @@ components:
14769
14901
  all hours in the current date for the given org.
14770
14902
  format: int64
14771
14903
  type: integer
14904
+ online_archive_events_count_sum:
14905
+ description: Sum of all online archived events over all hours in the current
14906
+ date for the given org.
14907
+ format: int64
14908
+ type: integer
14772
14909
  opentelemetry_host_top99p:
14773
14910
  description: Shows the 99th percentile of all hosts reported by the Datadog
14774
14911
  exporter for the OpenTelemetry Collector over all hours in the current
@@ -14914,6 +15051,26 @@ components:
14914
15051
  current months for all organizations.
14915
15052
  format: int64
14916
15053
  type: integer
15054
+ ci_pipeline_indexed_spans_agg_sum:
15055
+ description: Shows the sum of all CI pipeline indexed spans over all hours
15056
+ in the current months for all organizations.
15057
+ format: int64
15058
+ type: integer
15059
+ ci_test_indexed_spans_agg_sum:
15060
+ description: Shows the sum of all CI test indexed spans over all hours in
15061
+ the current months for all organizations.
15062
+ format: int64
15063
+ type: integer
15064
+ ci_visibility_pipeline_committers_hwm_sum:
15065
+ description: Shows the high-water mark of all CI visibility pipeline committers
15066
+ over all hours in the current months for all organizations.
15067
+ format: int64
15068
+ type: integer
15069
+ ci_visibility_test_committers_hwm_sum:
15070
+ description: Shows the high-water mark of all CI visibility test committers
15071
+ over all hours in the current months for all organizations.
15072
+ format: int64
15073
+ type: integer
14917
15074
  container_avg_sum:
14918
15075
  description: Shows the average of all distinct containers over all hours
14919
15076
  in the current months for all organizations.
@@ -15085,6 +15242,11 @@ components:
15085
15242
  all hours in the current months for all organizations.
15086
15243
  format: int64
15087
15244
  type: integer
15245
+ online_archive_events_count_agg_sum:
15246
+ description: Sum of all online archived events over all hours in the current
15247
+ months for all organizations.
15248
+ format: int64
15249
+ type: integer
15088
15250
  opentelemetry_host_top99p_sum:
15089
15251
  description: Shows the 99th percentile of all hosts reported by the Datadog
15090
15252
  exporter for the OpenTelemetry Collector over all hours in the current
@@ -15825,18 +15987,20 @@ components:
15825
15987
  example: func(a) + b
15826
15988
  type: string
15827
15989
  limit:
15828
- description: Options for limiting results returned.
15829
- properties:
15830
- count:
15831
- description: Number of results to return.
15832
- format: int64
15833
- type: integer
15834
- order:
15835
- $ref: '#/components/schemas/QuerySortOrder'
15836
- type: object
15990
+ $ref: '#/components/schemas/WidgetFormulaLimit'
15837
15991
  required:
15838
15992
  - formula
15839
15993
  type: object
15994
+ WidgetFormulaLimit:
15995
+ description: Options for limiting results returned.
15996
+ properties:
15997
+ count:
15998
+ description: Number of results to return.
15999
+ format: int64
16000
+ type: integer
16001
+ order:
16002
+ $ref: '#/components/schemas/QuerySortOrder'
16003
+ type: object
15840
16004
  WidgetGrouping:
15841
16005
  description: The kind of grouping to use.
15842
16006
  enum:
@@ -16312,31 +16476,31 @@ components:
16312
16476
  authorizationCode:
16313
16477
  authorizationUrl: /oauth2/v1/authorize
16314
16478
  scopes:
16315
- dashboards_public_share: The ability to share dashboards externally.
16316
- dashboards_read: The ability to view dashboards.
16317
- dashboards_write: The ability to create and change dashboards.
16318
- events_read: The ability to read Events data.
16319
- metrics_read: The ability to view custom metrics.
16320
- monitors_downtime: The ability to set downtimes to suppress alerts from
16321
- any monitor in an organization. The ability to write monitors is not
16322
- required to set downtimes.
16323
- monitors_read: The ability to view monitors.
16324
- monitors_write: The ability to change, mute, and delete individual monitors.
16325
- synthetics_global_variable_read: The ability to view, search and use in
16326
- tests the list of global variables available for Synthetics.
16327
- synthetics_global_variable_write: The ability to create, edit, and delete
16328
- global variables for Synthetics.
16329
- synthetics_private_location_read: The ability to view, search and use
16330
- in tests the list of private locations available.
16331
- synthetics_private_location_write: The ability to create and delete private
16332
- locations as well as seeing the associated installation guidelines.
16333
- synthetics_read: The ability to list and view configured Synthetic tests.
16334
- synthetics_write: The ability to create, edit, and delete Synthetic tests.
16335
- timeseries_query: The ability to query Timeseries data.
16336
- usage_read: The ability to view your organization's usage and usage attribution.
16337
- user_access_invite: The ability to invite other users to your organization.
16338
- user_access_manage: The ability to disable users, manage user roles, and
16339
- manage SAML-to-role mappings.
16479
+ dashboards_public_share: Share dashboards externally.
16480
+ dashboards_read: View dashboards.
16481
+ dashboards_write: Create and change dashboards.
16482
+ events_read: Read Events data.
16483
+ metrics_read: View custom metrics.
16484
+ monitors_downtime: Set downtimes to suppress alerts from any monitor in
16485
+ an organization. The ability to write monitors is not required to set
16486
+ downtimes.
16487
+ monitors_read: View monitors.
16488
+ monitors_write: Change, mute, and delete individual monitors.
16489
+ synthetics_global_variable_read: View, search, and use in tests the list
16490
+ of global variables available for Synthetics.
16491
+ synthetics_global_variable_write: Create, edit, and delete global variables
16492
+ for Synthetics.
16493
+ synthetics_private_location_read: View, search, and use in tests the list
16494
+ of available private locations.
16495
+ synthetics_private_location_write: Create and delete private locations
16496
+ as well as seeing the associated installation guidelines.
16497
+ synthetics_read: List and view configured Synthetic tests.
16498
+ synthetics_write: Create, edit, and delete Synthetic tests.
16499
+ timeseries_query: Query Timeseries data.
16500
+ usage_read: View your organization's usage and usage attribution.
16501
+ user_access_invite: Invite other users to your organization.
16502
+ user_access_manage: Disable users, manage user roles, and manage SAML-to-role
16503
+ mappings.
16340
16504
  tokenUrl: /oauth2/v1/token
16341
16505
  type: oauth2
16342
16506
  apiKeyAuth:
@@ -21096,6 +21260,8 @@ paths:
21096
21260
 
21097
21261
  - audit: `audit alert`
21098
21262
 
21263
+ - error-tracking: `error-tracking alert`
21264
+
21099
21265
 
21100
21266
  #### Query Types
21101
21267
 
@@ -21372,7 +21538,32 @@ paths:
21372
21538
  - **`#`** an integer or decimal number used to set the threshold.
21373
21539
 
21374
21540
 
21375
- **NOTE** Only available in closed beta on US1, EU, US3 and US5.'
21541
+ **NOTE** Only available in closed beta on US1, EU, US3 and US5.
21542
+
21543
+
21544
+ **Error Tracking Alert Query**
21545
+
21546
+
21547
+ Example(RUM): `error-tracking-rum(query).rollup(rollup_method[, measure]).last(time_window)
21548
+ operator #`
21549
+
21550
+ Example(APM Traces): `error-tracking-traces(query).rollup(rollup_method[,
21551
+ measure]).last(time_window) operator #`
21552
+
21553
+
21554
+ - **`query`** The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
21555
+
21556
+ - **`rollup_method`** The stats roll-up method - supports `count`, `avg`,
21557
+ and `cardinality`.
21558
+
21559
+ - **`measure`** For `avg` and cardinality `rollup_method` - specify the measure
21560
+ or the facet name you want to use.
21561
+
21562
+ - **`time_window`** #m (between 1 and 2880), #h (between 1 and 48).
21563
+
21564
+ - **`operator`** `<`, `<=`, `>`, `>=`, `==`, or `!=`.
21565
+
21566
+ - **`#`** an integer or decimal number used to set the threshold.'
21376
21567
  operationId: CreateMonitor
21377
21568
  requestBody:
21378
21569
  content:
@@ -22184,10 +22375,6 @@ paths:
22184
22375
  description: Authentication Error
22185
22376
  '429':
22186
22377
  $ref: '#/components/responses/TooManyRequestsResponse'
22187
- security:
22188
- - apiKeyAuth: []
22189
- appKeyAuth: []
22190
- - AuthZ: []
22191
22378
  summary: Get all notebooks
22192
22379
  tags:
22193
22380
  - Notebooks
@@ -22355,10 +22542,6 @@ paths:
22355
22542
  description: Not Found
22356
22543
  '429':
22357
22544
  $ref: '#/components/responses/TooManyRequestsResponse'
22358
- security:
22359
- - apiKeyAuth: []
22360
- appKeyAuth: []
22361
- - AuthZ: []
22362
22545
  summary: Get a notebook
22363
22546
  tags:
22364
22547
  - Notebooks
@@ -22810,13 +22993,8 @@ paths:
22810
22993
  dynamic-points:
22811
22994
  description: "Post time-series data that can be graphed on Datadog\u2019s
22812
22995
  dashboards."
22996
+ externalValue: examples/metrics/dynamic-points.json.sh
22813
22997
  summary: Dynamic Points
22814
- value:
22815
- series:
22816
- - metric: system.load.1
22817
- points:
22818
- - - ${NOW}
22819
- - 1234.5
22820
22998
  x-variables:
22821
22999
  NOW: $(date +%s)
22822
23000
  schema:
@@ -24052,7 +24230,7 @@ paths:
24052
24230
  x-given:
24053
24231
  synthetics_api_test:
24054
24232
  parameters:
24055
- - file: synthetics_api_test_payload.json
24233
+ - file: synthetics_api_http_test_payload.json
24056
24234
  name: body
24057
24235
  step: there is a valid "synthetics_api_test" in the system
24058
24236
  synthetics_api_test_with_wrong_dns:
@@ -25612,6 +25790,66 @@ paths:
25612
25790
  x-menu-order: 19
25613
25791
  x-undo:
25614
25792
  type: safe
25793
+ /api/v1/usage/ci-app:
25794
+ get:
25795
+ description: Get hourly usage for CI Visibility (Tests, Pipeline, Combo, and
25796
+ Spans).
25797
+ operationId: GetUsageCIApp
25798
+ parameters:
25799
+ - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
25800
+ for usage beginning at this hour.'
25801
+ in: query
25802
+ name: start_hr
25803
+ required: true
25804
+ schema:
25805
+ format: date-time
25806
+ type: string
25807
+ - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
25808
+ for usage ending
25809
+
25810
+ **before** this hour.'
25811
+ in: query
25812
+ name: end_hr
25813
+ required: false
25814
+ schema:
25815
+ format: date-time
25816
+ type: string
25817
+ responses:
25818
+ '200':
25819
+ content:
25820
+ application/json;datetime-format=rfc3339:
25821
+ schema:
25822
+ $ref: '#/components/schemas/UsageCIVisibilityResponse'
25823
+ description: OK
25824
+ '400':
25825
+ content:
25826
+ application/json;datetime-format=rfc3339:
25827
+ schema:
25828
+ $ref: '#/components/schemas/APIErrorResponse'
25829
+ description: Bad Request
25830
+ '403':
25831
+ content:
25832
+ application/json;datetime-format=rfc3339:
25833
+ schema:
25834
+ $ref: '#/components/schemas/APIErrorResponse'
25835
+ description: Forbidden - User is not authorized
25836
+ '429':
25837
+ content:
25838
+ application/json;datetime-format=rfc3339:
25839
+ schema:
25840
+ $ref: '#/components/schemas/APIErrorResponse'
25841
+ description: Too many requests
25842
+ security:
25843
+ - apiKeyAuth: []
25844
+ appKeyAuth: []
25845
+ - AuthZ:
25846
+ - usage_read
25847
+ summary: Get hourly usage for CI Visibility
25848
+ tags:
25849
+ - Usage Metering
25850
+ x-menu-order: 38
25851
+ x-undo:
25852
+ type: safe
25615
25853
  /api/v1/usage/cspm:
25616
25854
  get:
25617
25855
  description: Get hourly usage for Cloud Security Posture Management (CSPM).
@@ -26598,6 +26836,65 @@ paths:
26598
26836
  x-menu-order: 14
26599
26837
  x-undo:
26600
26838
  type: safe
26839
+ /api/v1/usage/online-archive:
26840
+ get:
26841
+ description: Get hourly usage for Online Archive.
26842
+ operationId: GetUsageOnlineArchive
26843
+ parameters:
26844
+ - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
26845
+ for usage beginning at this hour.'
26846
+ in: query
26847
+ name: start_hr
26848
+ required: true
26849
+ schema:
26850
+ format: date-time
26851
+ type: string
26852
+ - description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
26853
+ for usage ending
26854
+
26855
+ **before** this hour.'
26856
+ in: query
26857
+ name: end_hr
26858
+ required: false
26859
+ schema:
26860
+ format: date-time
26861
+ type: string
26862
+ responses:
26863
+ '200':
26864
+ content:
26865
+ application/json;datetime-format=rfc3339:
26866
+ schema:
26867
+ $ref: '#/components/schemas/UsageOnlineArchiveResponse'
26868
+ description: OK
26869
+ '400':
26870
+ content:
26871
+ application/json;datetime-format=rfc3339:
26872
+ schema:
26873
+ $ref: '#/components/schemas/APIErrorResponse'
26874
+ description: Bad Request
26875
+ '403':
26876
+ content:
26877
+ application/json;datetime-format=rfc3339:
26878
+ schema:
26879
+ $ref: '#/components/schemas/APIErrorResponse'
26880
+ description: Forbidden - User is not authorized
26881
+ '429':
26882
+ content:
26883
+ application/json;datetime-format=rfc3339:
26884
+ schema:
26885
+ $ref: '#/components/schemas/APIErrorResponse'
26886
+ description: Too many requests
26887
+ security:
26888
+ - apiKeyAuth: []
26889
+ appKeyAuth: []
26890
+ - AuthZ:
26891
+ - usage_read
26892
+ summary: Get hourly usage for Online Archive
26893
+ tags:
26894
+ - Usage Metering
26895
+ x-menu-order: 38
26896
+ x-undo:
26897
+ type: safe
26601
26898
  /api/v1/usage/profiling:
26602
26899
  get:
26603
26900
  description: Get hourly usage for profiled hosts.