datadog_api_client 2.44.0 → 2.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (318) hide show
  1. checksums.yaml +4 -4
  2. data/.generator/schemas/v1/openapi.yaml +564 -36
  3. data/.generator/schemas/v2/openapi.yaml +3946 -412
  4. data/CHANGELOG.md +25 -0
  5. data/examples/v2/aws-integration/CreateAWSEventBridgeSource.rb +17 -0
  6. data/examples/v2/aws-integration/DeleteAWSEventBridgeSource.rb +16 -0
  7. data/examples/v2/aws-integration/ListAWSEventBridgeSources.rb +5 -0
  8. data/examples/v2/fleet-automation/CreateFleetDeploymentConfigure.rb +1 -1
  9. data/examples/v2/fleet-automation/CreateFleetDeploymentUpgrade.rb +23 -0
  10. data/examples/v2/fleet-automation/CreateFleetSchedule.rb +30 -0
  11. data/examples/v2/fleet-automation/DeleteFleetSchedule.rb +8 -0
  12. data/examples/v2/fleet-automation/GetFleetDeployment.rb +2 -5
  13. data/examples/v2/fleet-automation/GetFleetDeployment_1482493803.rb +11 -0
  14. data/examples/v2/fleet-automation/GetFleetSchedule.rb +8 -0
  15. data/examples/v2/fleet-automation/ListFleetAgentVersions.rb +8 -0
  16. data/examples/v2/fleet-automation/ListFleetSchedules.rb +8 -0
  17. data/examples/v2/fleet-automation/TriggerFleetSchedule.rb +8 -0
  18. data/examples/v2/fleet-automation/UpdateFleetSchedule.rb +30 -0
  19. data/examples/v2/reference-tables/UpdateReferenceTable.rb +0 -1
  20. data/examples/v2/rum-audience-management/CreateConnection.rb +36 -0
  21. data/examples/v2/rum-audience-management/DeleteConnection.rb +8 -0
  22. data/examples/v2/rum-audience-management/GetAccountFacetInfo.rb +25 -0
  23. data/examples/v2/rum-audience-management/GetMapping.rb +8 -0
  24. data/examples/v2/rum-audience-management/GetUserFacetInfo.rb +25 -0
  25. data/examples/v2/rum-audience-management/ListConnections.rb +8 -0
  26. data/examples/v2/rum-audience-management/QueryAccounts.rb +34 -0
  27. data/examples/v2/rum-audience-management/QueryEventFilteredUsers.rb +37 -0
  28. data/examples/v2/rum-audience-management/QueryUsers.rb +34 -0
  29. data/examples/v2/rum-audience-management/UpdateConnection.rb +43 -0
  30. data/examples/v2/security-monitoring/CancelThreatHuntingJob.rb +8 -0
  31. data/examples/v2/security-monitoring/CancelThreatHuntingJob_1945505845.rb +12 -0
  32. data/examples/v2/security-monitoring/CreateSecurityMonitoringSuppression.rb +4 -0
  33. data/examples/v2/security-monitoring/{DeleteHistoricalJob.rb → DeleteThreatHuntingJob.rb} +2 -2
  34. data/examples/v2/security-monitoring/GetSecretsRules.rb +8 -0
  35. data/examples/v2/security-monitoring/GetThreatHuntingJob.rb +12 -0
  36. data/examples/v2/security-monitoring/ListMultipleRulesets.rb +17 -0
  37. data/examples/v2/security-monitoring/ListThreatHuntingJobs.rb +8 -0
  38. data/examples/v2/security-monitoring/ListThreatHuntingJobs_1365512061.rb +15 -0
  39. data/examples/v2/security-monitoring/{RunHistoricalJob.rb → RunThreatHuntingJob.rb} +9 -9
  40. data/examples/v2/software-catalog/PreviewCatalogEntities.rb +5 -0
  41. data/examples/v2/team-connections/CreateTeamConnections.rb +37 -0
  42. data/examples/v2/team-connections/DeleteTeamConnections.rb +17 -0
  43. data/examples/v2/team-connections/ListTeamConnections.rb +8 -0
  44. data/examples/v2/team-connections/ListTeamConnections_1473516764.rb +14 -0
  45. data/examples/v2/team-connections/ListTeamConnections_2418873869.rb +8 -0
  46. data/lib/datadog_api_client/configuration.rb +28 -5
  47. data/lib/datadog_api_client/inflector.rb +172 -12
  48. data/lib/datadog_api_client/v1/api/aws_integration_api.rb +18 -9
  49. data/lib/datadog_api_client/v1/api/aws_logs_integration_api.rb +1 -1
  50. data/lib/datadog_api_client/v1/api/key_management_api.rb +5 -0
  51. data/lib/datadog_api_client/v1/api/metrics_api.rb +5 -0
  52. data/lib/datadog_api_client/v1/models/aws_account.rb +5 -3
  53. data/lib/datadog_api_client/v1/models/formula_and_function_events_data_source.rb +1 -0
  54. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +304 -4
  55. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +304 -4
  56. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +301 -1
  57. data/lib/datadog_api_client/v2/api/aws_integration_api.rb +194 -0
  58. data/lib/datadog_api_client/v2/api/error_tracking_api.rb +2 -2
  59. data/lib/datadog_api_client/v2/api/events_api.rb +2 -0
  60. data/lib/datadog_api_client/v2/api/fleet_automation_api.rb +683 -8
  61. data/lib/datadog_api_client/v2/api/incidents_api.rb +3 -0
  62. data/lib/datadog_api_client/v2/api/key_management_api.rb +4 -2
  63. data/lib/datadog_api_client/v2/api/reference_tables_api.rb +20 -16
  64. data/lib/datadog_api_client/v2/api/restriction_policies_api.rb +5 -3
  65. data/lib/datadog_api_client/v2/api/rum_audience_management_api.rb +765 -0
  66. data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +344 -205
  67. data/lib/datadog_api_client/v2/api/software_catalog_api.rb +57 -0
  68. data/lib/datadog_api_client/v2/api/team_connections_api.rb +272 -0
  69. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +1 -1
  70. data/lib/datadog_api_client/v2/models/aws_account_create_request_attributes.rb +2 -1
  71. data/lib/datadog_api_client/v2/models/aws_account_partition.rb +2 -1
  72. data/lib/datadog_api_client/v2/models/aws_account_response_attributes.rb +2 -1
  73. data/lib/datadog_api_client/v2/models/aws_account_response_data.rb +2 -1
  74. data/lib/datadog_api_client/v2/models/aws_account_update_request_attributes.rb +2 -1
  75. data/lib/datadog_api_client/v2/models/aws_account_update_request_data.rb +2 -1
  76. data/lib/datadog_api_client/v2/models/aws_event_bridge_account_configuration.rb +130 -0
  77. data/lib/datadog_api_client/v2/models/aws_event_bridge_create_request.rb +123 -0
  78. data/lib/datadog_api_client/v2/models/aws_event_bridge_create_request_attributes.rb +178 -0
  79. data/lib/datadog_api_client/v2/models/aws_event_bridge_create_request_data.rb +144 -0
  80. data/lib/datadog_api_client/v2/models/aws_event_bridge_create_response.rb +123 -0
  81. data/lib/datadog_api_client/v2/models/aws_event_bridge_create_response_attributes.rb +136 -0
  82. data/lib/datadog_api_client/v2/models/aws_event_bridge_create_response_data.rb +154 -0
  83. data/lib/datadog_api_client/v2/models/aws_event_bridge_create_status.rb +26 -0
  84. data/lib/datadog_api_client/v2/models/aws_event_bridge_delete_request.rb +123 -0
  85. data/lib/datadog_api_client/v2/models/aws_event_bridge_delete_request_attributes.rb +166 -0
  86. data/lib/datadog_api_client/v2/models/aws_event_bridge_delete_request_data.rb +144 -0
  87. data/lib/datadog_api_client/v2/models/aws_event_bridge_delete_response.rb +123 -0
  88. data/lib/datadog_api_client/v2/models/aws_event_bridge_delete_response_attributes.rb +105 -0
  89. data/lib/datadog_api_client/v2/models/aws_event_bridge_delete_response_data.rb +154 -0
  90. data/lib/datadog_api_client/v2/models/aws_event_bridge_delete_status.rb +26 -0
  91. data/lib/datadog_api_client/v2/models/aws_event_bridge_list_response.rb +123 -0
  92. data/lib/datadog_api_client/v2/models/aws_event_bridge_list_response_attributes.rb +117 -0
  93. data/lib/datadog_api_client/v2/models/aws_event_bridge_list_response_data.rb +165 -0
  94. data/lib/datadog_api_client/v2/models/aws_event_bridge_source.rb +116 -0
  95. data/lib/datadog_api_client/v2/models/aws_event_bridge_type.rb +26 -0
  96. data/lib/datadog_api_client/v2/models/aws_lambda_forwarder_config.rb +7 -4
  97. data/lib/datadog_api_client/v2/models/aws_log_source_tag_filter.rb +7 -3
  98. data/lib/datadog_api_client/v2/models/aws_logs_config.rb +3 -2
  99. data/lib/datadog_api_client/v2/models/aws_namespace_filters_exclude_only.rb +8 -4
  100. data/lib/datadog_api_client/v2/models/aws_namespace_tag_filter.rb +6 -4
  101. data/lib/datadog_api_client/v2/models/aws_resources_config.rb +5 -2
  102. data/lib/datadog_api_client/v2/models/connected_team_ref.rb +105 -0
  103. data/lib/datadog_api_client/v2/models/connected_team_ref_data.rb +144 -0
  104. data/lib/datadog_api_client/v2/models/connected_team_ref_data_type.rb +26 -0
  105. data/lib/datadog_api_client/v2/models/connections_page_pagination.rb +184 -0
  106. data/lib/datadog_api_client/v2/models/connections_response_meta.rb +105 -0
  107. data/lib/datadog_api_client/v2/models/convert_job_results_to_signals_attributes.rb +1 -1
  108. data/lib/datadog_api_client/v2/models/convert_job_results_to_signals_data.rb +2 -2
  109. data/lib/datadog_api_client/v2/models/convert_job_results_to_signals_request.rb +2 -2
  110. data/lib/datadog_api_client/v2/models/{historical_job_response.rb → create_connection_request.rb} +5 -5
  111. data/lib/datadog_api_client/v2/models/create_connection_request_data.rb +143 -0
  112. data/lib/datadog_api_client/v2/models/create_connection_request_data_attributes.rb +187 -0
  113. data/lib/datadog_api_client/v2/models/create_connection_request_data_attributes_fields_items.rb +197 -0
  114. data/lib/datadog_api_client/v2/models/create_table_request.rb +2 -2
  115. data/lib/datadog_api_client/v2/models/create_table_request_data.rb +6 -41
  116. data/lib/datadog_api_client/v2/models/create_table_request_data_attributes.rb +6 -6
  117. data/lib/datadog_api_client/v2/models/create_table_request_data_attributes_file_metadata.rb +1 -1
  118. data/lib/datadog_api_client/v2/models/create_table_request_data_attributes_file_metadata_cloud_storage.rb +1 -1
  119. data/lib/datadog_api_client/v2/models/create_table_request_data_attributes_file_metadata_one_of_access_details.rb +4 -4
  120. data/lib/datadog_api_client/v2/models/create_table_request_data_attributes_file_metadata_one_of_access_details_aws_detail.rb +3 -3
  121. data/lib/datadog_api_client/v2/models/create_table_request_data_attributes_file_metadata_one_of_access_details_azure_detail.rb +5 -5
  122. data/lib/datadog_api_client/v2/models/create_table_request_data_attributes_file_metadata_one_of_access_details_gcp_detail.rb +4 -4
  123. data/lib/datadog_api_client/v2/models/create_table_request_data_attributes_schema.rb +2 -2
  124. data/lib/datadog_api_client/v2/models/create_table_request_data_attributes_schema_fields_items.rb +1 -1
  125. data/lib/datadog_api_client/v2/models/create_upload_request.rb +2 -2
  126. data/lib/datadog_api_client/v2/models/create_upload_request_data.rb +6 -41
  127. data/lib/datadog_api_client/v2/models/create_upload_request_data_attributes.rb +5 -5
  128. data/lib/datadog_api_client/v2/models/create_upload_response.rb +2 -2
  129. data/lib/datadog_api_client/v2/models/create_upload_response_data.rb +7 -32
  130. data/lib/datadog_api_client/v2/models/create_upload_response_data_attributes.rb +2 -2
  131. data/lib/datadog_api_client/v2/models/entity_response_array.rb +125 -0
  132. data/lib/datadog_api_client/v2/models/entity_response_data_attributes.rb +187 -0
  133. data/lib/datadog_api_client/v2/models/entity_response_data_relationships.rb +145 -0
  134. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_incidents.rb +107 -0
  135. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_incidents_data_items.rb +144 -0
  136. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_incidents_data_items_type.rb +26 -0
  137. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_oncalls.rb +107 -0
  138. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_oncalls_data_items.rb +144 -0
  139. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_oncalls_data_items_type.rb +26 -0
  140. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_raw_schema.rb +123 -0
  141. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_raw_schema_data.rb +144 -0
  142. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_raw_schema_data_type.rb +26 -0
  143. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_related_entities.rb +107 -0
  144. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_related_entities_data_items.rb +144 -0
  145. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_related_entities_data_items_type.rb +26 -0
  146. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_schema.rb +123 -0
  147. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_schema_data.rb +144 -0
  148. data/lib/datadog_api_client/v2/models/entity_response_data_relationships_schema_data_type.rb +26 -0
  149. data/lib/datadog_api_client/v2/models/entity_response_data_type.rb +26 -0
  150. data/lib/datadog_api_client/v2/models/facet_info_request.rb +105 -0
  151. data/lib/datadog_api_client/v2/models/facet_info_request_data.rb +143 -0
  152. data/lib/datadog_api_client/v2/models/facet_info_request_data_attributes.rb +164 -0
  153. data/lib/datadog_api_client/v2/models/facet_info_request_data_attributes_search.rb +105 -0
  154. data/lib/datadog_api_client/v2/models/facet_info_request_data_attributes_term_search.rb +105 -0
  155. data/lib/datadog_api_client/v2/models/facet_info_request_data_type.rb +26 -0
  156. data/lib/datadog_api_client/v2/models/facet_info_response.rb +105 -0
  157. data/lib/datadog_api_client/v2/models/facet_info_response_data.rb +143 -0
  158. data/lib/datadog_api_client/v2/models/facet_info_response_data_attributes.rb +105 -0
  159. data/lib/datadog_api_client/v2/models/facet_info_response_data_attributes_result.rb +117 -0
  160. data/lib/datadog_api_client/v2/models/facet_info_response_data_attributes_result_range.rb +115 -0
  161. data/lib/datadog_api_client/v2/models/facet_info_response_data_attributes_result_values_items.rb +115 -0
  162. data/lib/datadog_api_client/v2/models/facet_info_response_data_type.rb +26 -0
  163. data/lib/datadog_api_client/v2/models/fleet_agent_version.rb +154 -0
  164. data/lib/datadog_api_client/v2/models/fleet_agent_version_attributes.rb +105 -0
  165. data/lib/datadog_api_client/v2/models/fleet_agent_version_resource_type.rb +26 -0
  166. data/lib/datadog_api_client/v2/models/fleet_agent_versions_response.rb +125 -0
  167. data/lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb +29 -2
  168. data/lib/datadog_api_client/v2/models/fleet_deployment_configure_create.rb +1 -1
  169. data/lib/datadog_api_client/v2/models/fleet_deployment_configure_create_request.rb +2 -2
  170. data/lib/datadog_api_client/v2/models/fleet_deployment_host.rb +137 -0
  171. data/lib/datadog_api_client/v2/models/fleet_deployment_host_package.rb +136 -0
  172. data/lib/datadog_api_client/v2/models/fleet_deployment_hosts_page.rb +135 -0
  173. data/lib/datadog_api_client/v2/models/fleet_deployment_operation.rb +2 -2
  174. data/lib/datadog_api_client/v2/models/fleet_deployment_package.rb +144 -0
  175. data/lib/datadog_api_client/v2/models/fleet_deployment_package_upgrade_attributes.rb +135 -0
  176. data/lib/datadog_api_client/v2/models/fleet_deployment_package_upgrade_create.rb +144 -0
  177. data/lib/datadog_api_client/v2/models/fleet_deployment_package_upgrade_create_request.rb +123 -0
  178. data/lib/datadog_api_client/v2/models/fleet_deployment_response.rb +13 -3
  179. data/lib/datadog_api_client/v2/models/fleet_deployment_response_meta.rb +105 -0
  180. data/lib/datadog_api_client/v2/models/fleet_schedule.rb +165 -0
  181. data/lib/datadog_api_client/v2/models/fleet_schedule_attributes.rb +214 -0
  182. data/lib/datadog_api_client/v2/models/fleet_schedule_create.rb +144 -0
  183. data/lib/datadog_api_client/v2/models/fleet_schedule_create_attributes.rb +207 -0
  184. data/lib/datadog_api_client/v2/models/fleet_schedule_create_request.rb +123 -0
  185. data/lib/datadog_api_client/v2/models/fleet_schedule_patch.rb +133 -0
  186. data/lib/datadog_api_client/v2/models/fleet_schedule_patch_attributes.rb +174 -0
  187. data/lib/datadog_api_client/v2/models/fleet_schedule_patch_request.rb +123 -0
  188. data/lib/datadog_api_client/v2/models/fleet_schedule_recurrence_rule.rb +191 -0
  189. data/lib/datadog_api_client/v2/models/fleet_schedule_resource_type.rb +26 -0
  190. data/lib/datadog_api_client/v2/models/fleet_schedule_response.rb +105 -0
  191. data/lib/datadog_api_client/v2/models/fleet_schedule_status.rb +29 -0
  192. data/lib/datadog_api_client/v2/models/fleet_schedules_response.rb +125 -0
  193. data/lib/datadog_api_client/v2/models/gcp_metric_namespace_config.rb +13 -1
  194. data/lib/datadog_api_client/v2/models/get_mapping_response.rb +105 -0
  195. data/lib/datadog_api_client/v2/models/get_mapping_response_data.rb +143 -0
  196. data/lib/datadog_api_client/v2/models/get_mapping_response_data_attributes.rb +107 -0
  197. data/lib/datadog_api_client/v2/models/get_mapping_response_data_attributes_attributes_items.rb +157 -0
  198. data/lib/datadog_api_client/v2/models/get_mapping_response_data_type.rb +26 -0
  199. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_request.rb +105 -0
  200. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_request_data.rb +143 -0
  201. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_request_data_attributes.rb +127 -0
  202. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_request_data_type.rb +26 -0
  203. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response.rb +105 -0
  204. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data.rb +143 -0
  205. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_attributes.rb +107 -0
  206. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_attributes_rulesets_items.rb +165 -0
  207. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_attributes_rulesets_items_data.rb +133 -0
  208. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_attributes_rulesets_items_data_type.rb +26 -0
  209. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_attributes_rulesets_items_rules_items.rb +367 -0
  210. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_attributes_rulesets_items_rules_items_arguments_items.rb +115 -0
  211. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_attributes_rulesets_items_rules_items_data.rb +133 -0
  212. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_attributes_rulesets_items_rules_items_data_type.rb +26 -0
  213. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_attributes_rulesets_items_rules_items_tests_items.rb +147 -0
  214. data/lib/datadog_api_client/v2/models/get_multiple_rulesets_response_data_type.rb +26 -0
  215. data/lib/datadog_api_client/v2/models/job_create_response.rb +1 -1
  216. data/lib/datadog_api_client/v2/models/job_create_response_data.rb +1 -1
  217. data/lib/datadog_api_client/v2/models/job_definition.rb +3 -3
  218. data/lib/datadog_api_client/v2/models/job_definition_from_rule.rb +1 -1
  219. data/lib/datadog_api_client/v2/models/{run_historical_job_request.rb → list_connections_response.rb} +5 -5
  220. data/lib/datadog_api_client/v2/models/list_connections_response_data.rb +143 -0
  221. data/lib/datadog_api_client/v2/models/list_connections_response_data_attributes.rb +107 -0
  222. data/lib/datadog_api_client/v2/models/list_connections_response_data_attributes_connections_items.rb +187 -0
  223. data/lib/datadog_api_client/v2/models/list_connections_response_data_attributes_connections_items_join.rb +115 -0
  224. data/lib/datadog_api_client/v2/models/list_connections_response_data_type.rb +26 -0
  225. data/lib/datadog_api_client/v2/models/{list_historical_jobs_response.rb → list_threat_hunting_jobs_response.rb} +6 -6
  226. data/lib/datadog_api_client/v2/models/patch_table_request.rb +2 -2
  227. data/lib/datadog_api_client/v2/models/patch_table_request_data.rb +6 -41
  228. data/lib/datadog_api_client/v2/models/patch_table_request_data_attributes.rb +5 -5
  229. data/lib/datadog_api_client/v2/models/patch_table_request_data_attributes_file_metadata.rb +1 -1
  230. data/lib/datadog_api_client/v2/models/patch_table_request_data_attributes_file_metadata_cloud_storage.rb +1 -1
  231. data/lib/datadog_api_client/v2/models/patch_table_request_data_attributes_file_metadata_one_of_access_details.rb +4 -4
  232. data/lib/datadog_api_client/v2/models/patch_table_request_data_attributes_file_metadata_one_of_access_details_aws_detail.rb +3 -3
  233. data/lib/datadog_api_client/v2/models/patch_table_request_data_attributes_file_metadata_one_of_access_details_azure_detail.rb +5 -5
  234. data/lib/datadog_api_client/v2/models/patch_table_request_data_attributes_file_metadata_one_of_access_details_gcp_detail.rb +4 -4
  235. data/lib/datadog_api_client/v2/models/patch_table_request_data_attributes_schema.rb +3 -3
  236. data/lib/datadog_api_client/v2/models/patch_table_request_data_attributes_schema_fields_items.rb +1 -1
  237. data/lib/datadog_api_client/v2/models/preview_entity_response_data.rb +153 -0
  238. data/lib/datadog_api_client/v2/models/query_account_request.rb +105 -0
  239. data/lib/datadog_api_client/v2/models/query_account_request_data.rb +143 -0
  240. data/lib/datadog_api_client/v2/models/query_account_request_data_attributes.rb +147 -0
  241. data/lib/datadog_api_client/v2/models/query_account_request_data_attributes_sort.rb +115 -0
  242. data/lib/datadog_api_client/v2/models/query_account_request_data_type.rb +26 -0
  243. data/lib/datadog_api_client/v2/models/query_event_filtered_users_request.rb +105 -0
  244. data/lib/datadog_api_client/v2/models/query_event_filtered_users_request_data.rb +143 -0
  245. data/lib/datadog_api_client/v2/models/query_event_filtered_users_request_data_attributes.rb +147 -0
  246. data/lib/datadog_api_client/v2/models/query_event_filtered_users_request_data_attributes_event_query.rb +115 -0
  247. data/lib/datadog_api_client/v2/models/query_event_filtered_users_request_data_attributes_event_query_time_frame.rb +115 -0
  248. data/lib/datadog_api_client/v2/models/query_event_filtered_users_request_data_type.rb +26 -0
  249. data/lib/datadog_api_client/v2/models/query_response.rb +105 -0
  250. data/lib/datadog_api_client/v2/models/query_response_data.rb +143 -0
  251. data/lib/datadog_api_client/v2/models/query_response_data_attributes.rb +117 -0
  252. data/lib/datadog_api_client/v2/models/query_response_data_type.rb +26 -0
  253. data/lib/datadog_api_client/v2/models/query_users_request.rb +105 -0
  254. data/lib/datadog_api_client/v2/models/query_users_request_data.rb +143 -0
  255. data/lib/datadog_api_client/v2/models/query_users_request_data_attributes.rb +147 -0
  256. data/lib/datadog_api_client/v2/models/query_users_request_data_attributes_sort.rb +115 -0
  257. data/lib/datadog_api_client/v2/models/query_users_request_data_type.rb +26 -0
  258. data/lib/datadog_api_client/v2/models/run_threat_hunting_job_request.rb +105 -0
  259. data/lib/datadog_api_client/v2/models/{run_historical_job_request_attributes.rb → run_threat_hunting_job_request_attributes.rb} +5 -5
  260. data/lib/datadog_api_client/v2/models/{run_historical_job_request_data.rb → run_threat_hunting_job_request_data.rb} +6 -6
  261. data/lib/datadog_api_client/v2/models/{run_historical_job_request_data_type.rb → run_threat_hunting_job_request_data_type.rb} +1 -1
  262. data/lib/datadog_api_client/v2/models/secret_rule_array.rb +125 -0
  263. data/lib/datadog_api_client/v2/models/secret_rule_data.rb +143 -0
  264. data/lib/datadog_api_client/v2/models/secret_rule_data_attributes.rb +189 -0
  265. data/lib/datadog_api_client/v2/models/secret_rule_data_attributes_match_validation.rb +203 -0
  266. data/lib/datadog_api_client/v2/models/secret_rule_data_attributes_match_validation_invalid_http_status_code_items.rb +152 -0
  267. data/lib/datadog_api_client/v2/models/secret_rule_data_attributes_match_validation_valid_http_status_code_items.rb +152 -0
  268. data/lib/datadog_api_client/v2/models/secret_rule_data_type.rb +26 -0
  269. data/lib/datadog_api_client/v2/models/security_monitoring_signal_archive_reason.rb +2 -0
  270. data/lib/datadog_api_client/v2/models/security_monitoring_suppression_attributes.rb +13 -1
  271. data/lib/datadog_api_client/v2/models/security_monitoring_suppression_create_attributes.rb +15 -3
  272. data/lib/datadog_api_client/v2/models/security_monitoring_suppression_update_attributes.rb +13 -1
  273. data/lib/datadog_api_client/v2/models/table_result_v2.rb +2 -2
  274. data/lib/datadog_api_client/v2/models/table_result_v2_array.rb +1 -1
  275. data/lib/datadog_api_client/v2/models/table_result_v2_data.rb +7 -32
  276. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes.rb +8 -8
  277. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_file_metadata.rb +1 -1
  278. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_file_metadata_cloud_storage.rb +19 -26
  279. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_file_metadata_local_file.rb +7 -42
  280. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_file_metadata_one_of_access_details.rb +4 -4
  281. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_file_metadata_one_of_access_details_aws_detail.rb +3 -3
  282. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_file_metadata_one_of_access_details_azure_detail.rb +5 -5
  283. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_file_metadata_one_of_access_details_gcp_detail.rb +4 -4
  284. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_schema.rb +2 -2
  285. data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_schema_fields_items.rb +1 -1
  286. data/lib/datadog_api_client/v2/models/table_row_resource_array.rb +1 -1
  287. data/lib/datadog_api_client/v2/models/table_row_resource_data.rb +7 -32
  288. data/lib/datadog_api_client/v2/models/table_row_resource_data_attributes.rb +7 -32
  289. data/lib/datadog_api_client/v2/models/team_connection.rb +164 -0
  290. data/lib/datadog_api_client/v2/models/team_connection_attributes.rb +115 -0
  291. data/lib/datadog_api_client/v2/models/team_connection_create_data.rb +143 -0
  292. data/lib/datadog_api_client/v2/models/team_connection_create_request.rb +125 -0
  293. data/lib/datadog_api_client/v2/models/team_connection_delete_request.rb +125 -0
  294. data/lib/datadog_api_client/v2/models/team_connection_delete_request_data_item.rb +144 -0
  295. data/lib/datadog_api_client/v2/models/team_connection_relationships.rb +115 -0
  296. data/lib/datadog_api_client/v2/models/team_connection_type.rb +26 -0
  297. data/lib/datadog_api_client/v2/models/team_connections_response.rb +117 -0
  298. data/lib/datadog_api_client/v2/models/team_ref.rb +105 -0
  299. data/lib/datadog_api_client/v2/models/team_ref_data.rb +144 -0
  300. data/lib/datadog_api_client/v2/models/team_ref_data_type.rb +26 -0
  301. data/lib/datadog_api_client/v2/models/{historical_job_data_type.rb → threat_hunting_job_data_type.rb} +1 -1
  302. data/lib/datadog_api_client/v2/models/{historical_job_list_meta.rb → threat_hunting_job_list_meta.rb} +2 -2
  303. data/lib/datadog_api_client/v2/models/{historical_job_options.rb → threat_hunting_job_options.rb} +2 -2
  304. data/lib/datadog_api_client/v2/models/{historical_job_query.rb → threat_hunting_job_query.rb} +3 -3
  305. data/lib/datadog_api_client/v2/models/threat_hunting_job_response.rb +105 -0
  306. data/lib/datadog_api_client/v2/models/{historical_job_response_attributes.rb → threat_hunting_job_response_attributes.rb} +4 -4
  307. data/lib/datadog_api_client/v2/models/{historical_job_response_data.rb → threat_hunting_job_response_data.rb} +6 -6
  308. data/lib/datadog_api_client/v2/models/update_connection_request.rb +105 -0
  309. data/lib/datadog_api_client/v2/models/update_connection_request_data.rb +154 -0
  310. data/lib/datadog_api_client/v2/models/update_connection_request_data_attributes.rb +131 -0
  311. data/lib/datadog_api_client/v2/models/update_connection_request_data_attributes_fields_to_update_items.rb +165 -0
  312. data/lib/datadog_api_client/v2/models/update_connection_request_data_type.rb +26 -0
  313. data/lib/datadog_api_client/v2/models/user_attributes.rb +12 -1
  314. data/lib/datadog_api_client/version.rb +1 -1
  315. metadata +210 -18
  316. data/examples/v2/security-monitoring/CancelHistoricalJob.rb +0 -12
  317. data/examples/v2/security-monitoring/GetHistoricalJob.rb +0 -12
  318. data/examples/v2/security-monitoring/ListHistoricalJobs.rb +0 -15
@@ -64,12 +64,20 @@ components:
64
64
  additionalProperties:
65
65
  description: A list of additional properties.
66
66
  type: boolean
67
- description: 'An object, (in the form `{"namespace1":true/false, "namespace2":true/false}`),
67
+ description: 'An object (in the form `{"namespace1":true/false, "namespace2":true/false}`)
68
+ containing user-supplied overrides
68
69
 
69
- that enables or disables metric collection for specific AWS namespaces
70
- for this
70
+ for AWS namespace metric collection. **Important**: This field only contains
71
+ namespaces explicitly configured through API calls,
71
72
 
72
- AWS account only.'
73
+ not the comprehensive enabled or disabled status of all namespaces. If
74
+ a namespace is absent from this field, it uses Datadog''s
75
+
76
+ internal defaults (all namespaces enabled by default, except `AWS/SQS`,
77
+ `AWS/ElasticMapReduce`, and `AWS/Usage`).
78
+
79
+ For a complete view of all namespace statuses, use the V2 AWS Integration
80
+ API instead.'
73
81
  example:
74
82
  auto_scaling: false
75
83
  opswork: false
@@ -2876,6 +2884,7 @@ components:
2876
2884
  - ci_pipelines
2877
2885
  - incident_analytics
2878
2886
  - product_analytics
2887
+ - on_call_events
2879
2888
  example: logs
2880
2889
  type: string
2881
2890
  x-enum-varnames:
@@ -2891,6 +2900,7 @@ components:
2891
2900
  - CI_PIPELINES
2892
2901
  - INCIDENT_ANALYTICS
2893
2902
  - PRODUCT_ANALYTICS
2903
+ - ON_CALL_EVENTS
2894
2904
  FormulaAndFunctionMetricAggregation:
2895
2905
  description: The aggregation methods available for metrics queries.
2896
2906
  enum:
@@ -20690,6 +20700,11 @@ components:
20690
20700
  hours in the current date for the given org.
20691
20701
  format: int64
20692
20702
  type: integer
20703
+ apm_enterprise_standalone_hosts_top99p:
20704
+ description: Shows the 99th percentile of all distinct standalone Enterprise
20705
+ hosts over all hours in the current date for all organizations.
20706
+ format: int64
20707
+ type: integer
20693
20708
  apm_fargate_count_avg:
20694
20709
  description: Shows the average of all APM ECS Fargate tasks over all hours
20695
20710
  in the current date for all organizations.
@@ -20700,6 +20715,11 @@ components:
20700
20715
  hours in the current date for all organizations.
20701
20716
  format: int64
20702
20717
  type: integer
20718
+ apm_pro_standalone_hosts_top99p:
20719
+ description: Shows the 99th percentile of all distinct standalone Pro hosts
20720
+ over all hours in the current date for all organizations.
20721
+ format: int64
20722
+ type: integer
20703
20723
  appsec_fargate_count_avg:
20704
20724
  description: Shows the average of all Application Security Monitoring ECS
20705
20725
  Fargate tasks over all hours in the current date for all organizations.
@@ -20752,6 +20772,11 @@ components:
20752
20772
  current date for all organizations.
20753
20773
  format: int64
20754
20774
  type: integer
20775
+ bits_ai_investigations_sum:
20776
+ description: Shows the sum of all Bits AI Investigations over all hours
20777
+ in the current date for all organizations.
20778
+ format: int64
20779
+ type: integer
20755
20780
  browser_rum_lite_session_count_sum:
20756
20781
  deprecated: true
20757
20782
  description: Shows the sum of all browser lite sessions over all hours in
@@ -21299,6 +21324,11 @@ components:
21299
21324
  hosts over all hours in the current date for the given org.
21300
21325
  format: int64
21301
21326
  type: integer
21327
+ on_call_seat_hwm:
21328
+ description: Shows the high-water mark of On-Call seats over all hours in
21329
+ the current date for all organizations.
21330
+ format: int64
21331
+ type: integer
21302
21332
  online_archive_events_count_sum:
21303
21333
  description: Sum of all online archived events over all hours in the current
21304
21334
  date for all organizations.
@@ -21538,19 +21568,163 @@ components:
21538
21568
  organizations.
21539
21569
  format: int64
21540
21570
  type: integer
21571
+ serverless_apps_apm_apm_azure_appservice_instances_avg:
21572
+ description: Shows the average number of Serverless Apps with Application
21573
+ Performance Monitoring for Azure App Service instances for the current
21574
+ date for all organizations.
21575
+ format: int64
21576
+ type: integer
21577
+ serverless_apps_apm_apm_azure_azurefunction_instances_avg:
21578
+ description: Shows the average number of Serverless Apps with Application
21579
+ Performance Monitoring for Azure Function instances for the current date
21580
+ for all organizations.
21581
+ format: int64
21582
+ type: integer
21583
+ serverless_apps_apm_apm_azure_containerapp_instances_avg:
21584
+ description: Shows the average number of Serverless Apps with Application
21585
+ Performance Monitoring for Azure Container App instances for the current
21586
+ date for all organizations.
21587
+ format: int64
21588
+ type: integer
21589
+ serverless_apps_apm_apm_fargate_ecs_tasks_avg:
21590
+ description: Shows the average number of Serverless Apps with Application
21591
+ Performance Monitoring for Fargate Elastic Container Service tasks for
21592
+ the current date for all organizations.
21593
+ format: int64
21594
+ type: integer
21595
+ serverless_apps_apm_apm_gcp_cloudfunction_instances_avg:
21596
+ description: Shows the average number of Serverless Apps with Application
21597
+ Performance Monitoring for Google Cloud Platform Cloud Function instances
21598
+ for the current date for all organizations.
21599
+ format: int64
21600
+ type: integer
21601
+ serverless_apps_apm_apm_gcp_cloudrun_instances_avg:
21602
+ description: Shows the average number of Serverless Apps with Application
21603
+ Performance Monitoring for Google Cloud Platform Cloud Run instances for
21604
+ the current date for all organizations.
21605
+ format: int64
21606
+ type: integer
21607
+ serverless_apps_apm_avg:
21608
+ description: Shows the average number of Serverless Apps with Application
21609
+ Performance Monitoring for the current date for all organizations.
21610
+ format: int64
21611
+ type: integer
21612
+ serverless_apps_apm_excl_fargate_apm_azure_appservice_instances_avg:
21613
+ description: Shows the average number of Serverless Apps with Application
21614
+ Performance Monitoring excluding Fargate for Azure App Service instances
21615
+ for the current date for all organizations.
21616
+ format: int64
21617
+ type: integer
21618
+ serverless_apps_apm_excl_fargate_apm_azure_azurefunction_instances_avg:
21619
+ description: Shows the average number of Serverless Apps with Application
21620
+ Performance Monitoring excluding Fargate for Azure Function instances
21621
+ for the current date for all organizations.
21622
+ format: int64
21623
+ type: integer
21624
+ serverless_apps_apm_excl_fargate_apm_azure_containerapp_instances_avg:
21625
+ description: Shows the average number of Serverless Apps with Application
21626
+ Performance Monitoring excluding Fargate for Azure Container App instances
21627
+ for the current date for all organizations.
21628
+ format: int64
21629
+ type: integer
21630
+ serverless_apps_apm_excl_fargate_apm_gcp_cloudfunction_instances_avg:
21631
+ description: Shows the average number of Serverless Apps with Application
21632
+ Performance Monitoring excluding Fargate for Google Cloud Platform Cloud
21633
+ Function instances for the current date for all organizations.
21634
+ format: int64
21635
+ type: integer
21636
+ serverless_apps_apm_excl_fargate_apm_gcp_cloudrun_instances_avg:
21637
+ description: Shows the average number of Serverless Apps with Application
21638
+ Performance Monitoring excluding Fargate for Google Cloud Platform Cloud
21639
+ Run instances for the current date for all organizations.
21640
+ format: int64
21641
+ type: integer
21642
+ serverless_apps_apm_excl_fargate_avg:
21643
+ description: Shows the average number of Serverless Apps with Application
21644
+ Performance Monitoring excluding Fargate for the current date for all
21645
+ organizations.
21646
+ format: int64
21647
+ type: integer
21648
+ serverless_apps_azure_container_app_instances_avg:
21649
+ description: Shows the average number of Serverless Apps for Azure Container
21650
+ App instances for the current date for all organizations.
21651
+ format: int64
21652
+ type: integer
21541
21653
  serverless_apps_azure_count_avg:
21542
- description: Shows the average of the number of Serverless Apps for Azure
21543
- for the given date and given org.
21654
+ description: Shows the average number of Serverless Apps for Azure for the
21655
+ given date and given org.
21656
+ format: int64
21657
+ type: integer
21658
+ serverless_apps_azure_function_app_instances_avg:
21659
+ description: Shows the average number of Serverless Apps for Azure Function
21660
+ App instances for the current date for all organizations.
21661
+ format: int64
21662
+ type: integer
21663
+ serverless_apps_azure_web_app_instances_avg:
21664
+ description: Shows the average number of Serverless Apps for Azure Web App
21665
+ instances for the current date for all organizations.
21666
+ format: int64
21667
+ type: integer
21668
+ serverless_apps_ecs_avg:
21669
+ description: Shows the average number of Serverless Apps for Elastic Container
21670
+ Service for the current date for all organizations.
21671
+ format: int64
21672
+ type: integer
21673
+ serverless_apps_eks_avg:
21674
+ description: Shows the average number of Serverless Apps for Elastic Kubernetes
21675
+ Service for the current date for all organizations.
21676
+ format: int64
21677
+ type: integer
21678
+ serverless_apps_excl_fargate_avg:
21679
+ description: Shows the average number of Serverless Apps excluding Fargate
21680
+ for the current date for all organizations.
21681
+ format: int64
21682
+ type: integer
21683
+ serverless_apps_excl_fargate_azure_container_app_instances_avg:
21684
+ description: Shows the average number of Serverless Apps excluding Fargate
21685
+ for Azure Container App instances for the current date for all organizations.
21686
+ format: int64
21687
+ type: integer
21688
+ serverless_apps_excl_fargate_azure_function_app_instances_avg:
21689
+ description: Shows the average number of Serverless Apps excluding Fargate
21690
+ for Azure Function App instances for the current date for all organizations.
21691
+ format: int64
21692
+ type: integer
21693
+ serverless_apps_excl_fargate_azure_web_app_instances_avg:
21694
+ description: Shows the average number of Serverless Apps excluding Fargate
21695
+ for Azure Web App instances for the current date for all organizations.
21696
+ format: int64
21697
+ type: integer
21698
+ serverless_apps_excl_fargate_google_cloud_functions_instances_avg:
21699
+ description: Shows the average number of Serverless Apps excluding Fargate
21700
+ for Google Cloud Platform Cloud Functions instances for the current date
21701
+ for all organizations.
21702
+ format: int64
21703
+ type: integer
21704
+ serverless_apps_excl_fargate_google_cloud_run_instances_avg:
21705
+ description: Shows the average number of Serverless Apps excluding Fargate
21706
+ for Google Cloud Platform Cloud Run instances for the current date for
21707
+ all organizations.
21708
+ format: int64
21709
+ type: integer
21710
+ serverless_apps_google_cloud_functions_instances_avg:
21711
+ description: Shows the average number of Serverless Apps for Google Cloud
21712
+ Platform Cloud Functions instances for the current date for all organizations.
21713
+ format: int64
21714
+ type: integer
21715
+ serverless_apps_google_cloud_run_instances_avg:
21716
+ description: Shows the average number of Serverless Apps for Google Cloud
21717
+ Platform Cloud Run instances for the current date for all organizations.
21544
21718
  format: int64
21545
21719
  type: integer
21546
21720
  serverless_apps_google_count_avg:
21547
- description: Shows the average of the number of Serverless Apps for Google
21548
- Cloud for the given date and given org.
21721
+ description: Shows the average number of Serverless Apps for Google Cloud
21722
+ for the given date and given org.
21549
21723
  format: int64
21550
21724
  type: integer
21551
21725
  serverless_apps_total_count_avg:
21552
- description: Shows the average of the number of Serverless Apps for Azure
21553
- and Google Cloud for the given date and given org.
21726
+ description: Shows the average number of Serverless Apps for Azure and Google
21727
+ Cloud for the given date and given org.
21554
21728
  format: int64
21555
21729
  type: integer
21556
21730
  siem_analyzed_logs_add_on_count_sum:
@@ -21634,6 +21808,11 @@ components:
21634
21808
  hours in the current date for the given org.
21635
21809
  format: int64
21636
21810
  type: integer
21811
+ apm_enterprise_standalone_hosts_top99p:
21812
+ description: Shows the 99th percentile of all distinct standalone Enterprise
21813
+ hosts over all hours in the current date for the given org.
21814
+ format: int64
21815
+ type: integer
21637
21816
  apm_fargate_count_avg:
21638
21817
  description: Shows the average of all APM ECS Fargate tasks over all hours
21639
21818
  in the current month for the given org.
@@ -21644,6 +21823,11 @@ components:
21644
21823
  hours in the current date for the given org.
21645
21824
  format: int64
21646
21825
  type: integer
21826
+ apm_pro_standalone_hosts_top99p:
21827
+ description: Shows the 99th percentile of all distinct standalone Pro hosts
21828
+ over all hours in the current date for the given org.
21829
+ format: int64
21830
+ type: integer
21647
21831
  appsec_fargate_count_avg:
21648
21832
  description: Shows the average of all Application Security Monitoring ECS
21649
21833
  Fargate tasks over all hours in the current month for the given org.
@@ -21696,6 +21880,11 @@ components:
21696
21880
  current date for the given org.
21697
21881
  format: int64
21698
21882
  type: integer
21883
+ bits_ai_investigations_sum:
21884
+ description: Shows the sum of all Bits AI Investigations over all hours
21885
+ in the current date for the given org.
21886
+ format: int64
21887
+ type: integer
21699
21888
  browser_rum_lite_session_count_sum:
21700
21889
  deprecated: true
21701
21890
  description: Shows the sum of all browser lite sessions over all hours in
@@ -22252,6 +22441,11 @@ components:
22252
22441
  hosts over all hours in the current date for the given org.
22253
22442
  format: int64
22254
22443
  type: integer
22444
+ on_call_seat_hwm:
22445
+ description: Shows the high-water mark of On-Call seats over all hours in
22446
+ the current date for the given org.
22447
+ format: int64
22448
+ type: integer
22255
22449
  online_archive_events_count_sum:
22256
22450
  description: Sum of all online archived events over all hours in the current
22257
22451
  date for the given org.
@@ -22492,19 +22686,163 @@ components:
22492
22686
  given org.
22493
22687
  format: int64
22494
22688
  type: integer
22689
+ serverless_apps_apm_apm_azure_appservice_instances_avg:
22690
+ description: Shows the average number of Serverless Apps with Application
22691
+ Performance Monitoring for Azure App Service instances for the given date
22692
+ and given org.
22693
+ format: int64
22694
+ type: integer
22695
+ serverless_apps_apm_apm_azure_azurefunction_instances_avg:
22696
+ description: Shows the average number of Serverless Apps with Application
22697
+ Performance Monitoring for Azure Function instances for the given date
22698
+ and given org.
22699
+ format: int64
22700
+ type: integer
22701
+ serverless_apps_apm_apm_azure_containerapp_instances_avg:
22702
+ description: Shows the average number of Serverless Apps with Application
22703
+ Performance Monitoring for Azure Container App instances for the given
22704
+ date and given org.
22705
+ format: int64
22706
+ type: integer
22707
+ serverless_apps_apm_apm_fargate_ecs_tasks_avg:
22708
+ description: Shows the average number of Serverless Apps with Application
22709
+ Performance Monitoring for Fargate Elastic Container Service tasks for
22710
+ the given date and given org.
22711
+ format: int64
22712
+ type: integer
22713
+ serverless_apps_apm_apm_gcp_cloudfunction_instances_avg:
22714
+ description: Shows the average number of Serverless Apps with Application
22715
+ Performance Monitoring for Google Cloud Platform Cloud Function instances
22716
+ for the given date and given org.
22717
+ format: int64
22718
+ type: integer
22719
+ serverless_apps_apm_apm_gcp_cloudrun_instances_avg:
22720
+ description: Shows the average number of Serverless Apps with Application
22721
+ Performance Monitoring for Google Cloud Platform Cloud Run instances for
22722
+ the given date and given org.
22723
+ format: int64
22724
+ type: integer
22725
+ serverless_apps_apm_avg:
22726
+ description: Shows the average number of Serverless Apps with Application
22727
+ Performance Monitoring for the given date and given org.
22728
+ format: int64
22729
+ type: integer
22730
+ serverless_apps_apm_excl_fargate_apm_azure_appservice_instances_avg:
22731
+ description: Shows the average number of Serverless Apps with Application
22732
+ Performance Monitoring excluding Fargate for Azure App Service instances
22733
+ for the given date and given org.
22734
+ format: int64
22735
+ type: integer
22736
+ serverless_apps_apm_excl_fargate_apm_azure_azurefunction_instances_avg:
22737
+ description: Shows the average number of Serverless Apps with Application
22738
+ Performance Monitoring excluding Fargate for Azure Function instances
22739
+ for the given date and given org.
22740
+ format: int64
22741
+ type: integer
22742
+ serverless_apps_apm_excl_fargate_apm_azure_containerapp_instances_avg:
22743
+ description: Shows the average number of Serverless Apps with Application
22744
+ Performance Monitoring excluding Fargate for Azure Container App instances
22745
+ for the given date and given org.
22746
+ format: int64
22747
+ type: integer
22748
+ serverless_apps_apm_excl_fargate_apm_gcp_cloudfunction_instances_avg:
22749
+ description: Shows the average number of Serverless Apps with Application
22750
+ Performance Monitoring excluding Fargate for Google Cloud Platform Cloud
22751
+ Function instances for the given date and given org.
22752
+ format: int64
22753
+ type: integer
22754
+ serverless_apps_apm_excl_fargate_apm_gcp_cloudrun_instances_avg:
22755
+ description: Shows the average number of Serverless Apps with Application
22756
+ Performance Monitoring excluding Fargate for Google Cloud Platform Cloud
22757
+ Run instances for the given date and given org.
22758
+ format: int64
22759
+ type: integer
22760
+ serverless_apps_apm_excl_fargate_avg:
22761
+ description: Shows the average number of Serverless Apps with Application
22762
+ Performance Monitoring excluding Fargate for the given date and given
22763
+ org.
22764
+ format: int64
22765
+ type: integer
22766
+ serverless_apps_azure_container_app_instances_avg:
22767
+ description: Shows the average number of Serverless Apps for Azure Container
22768
+ App instances for the given date and given org.
22769
+ format: int64
22770
+ type: integer
22495
22771
  serverless_apps_azure_count_avg:
22496
- description: Shows the average of the number of Serverless Apps for Azure
22772
+ description: Shows the average number of Serverless Apps for Azure for the
22773
+ given date and given org.
22774
+ format: int64
22775
+ type: integer
22776
+ serverless_apps_azure_function_app_instances_avg:
22777
+ description: Shows the average number of Serverless Apps for Azure Function
22778
+ App instances for the given date and given org.
22779
+ format: int64
22780
+ type: integer
22781
+ serverless_apps_azure_web_app_instances_avg:
22782
+ description: Shows the average number of Serverless Apps for Azure Web App
22783
+ instances for the given date and given org.
22784
+ format: int64
22785
+ type: integer
22786
+ serverless_apps_ecs_avg:
22787
+ description: Shows the average number of Serverless Apps for Elastic Container
22788
+ Service for the given date and given org.
22789
+ format: int64
22790
+ type: integer
22791
+ serverless_apps_eks_avg:
22792
+ description: Shows the average number of Serverless Apps for Elastic Kubernetes
22793
+ Service for the given date and given org.
22794
+ format: int64
22795
+ type: integer
22796
+ serverless_apps_excl_fargate_avg:
22797
+ description: Shows the average number of Serverless Apps excluding Fargate
22497
22798
  for the given date and given org.
22498
22799
  format: int64
22499
22800
  type: integer
22801
+ serverless_apps_excl_fargate_azure_container_app_instances_avg:
22802
+ description: Shows the average number of Serverless Apps excluding Fargate
22803
+ for Azure Container App instances for the given date and given org.
22804
+ format: int64
22805
+ type: integer
22806
+ serverless_apps_excl_fargate_azure_function_app_instances_avg:
22807
+ description: Shows the average number of Serverless Apps excluding Fargate
22808
+ for Azure Function App instances for the given date and given org.
22809
+ format: int64
22810
+ type: integer
22811
+ serverless_apps_excl_fargate_azure_web_app_instances_avg:
22812
+ description: Shows the average number of Serverless Apps excluding Fargate
22813
+ for Azure Web App instances for the given date and given org.
22814
+ format: int64
22815
+ type: integer
22816
+ serverless_apps_excl_fargate_google_cloud_functions_instances_avg:
22817
+ description: Shows the average number of Serverless Apps excluding Fargate
22818
+ for Google Cloud Platform Cloud Functions instances for the given date
22819
+ and given org.
22820
+ format: int64
22821
+ type: integer
22822
+ serverless_apps_excl_fargate_google_cloud_run_instances_avg:
22823
+ description: Shows the average number of Serverless Apps excluding Fargate
22824
+ for Google Cloud Platform Cloud Run instances for the given date and given
22825
+ org.
22826
+ format: int64
22827
+ type: integer
22828
+ serverless_apps_google_cloud_functions_instances_avg:
22829
+ description: Shows the average number of Serverless Apps for Google Cloud
22830
+ Platform Cloud Functions instances for the given date and given org.
22831
+ format: int64
22832
+ type: integer
22833
+ serverless_apps_google_cloud_run_instances_avg:
22834
+ description: Shows the average number of Serverless Apps for Google Cloud
22835
+ Platform Cloud Run instances for the given date and given org.
22836
+ format: int64
22837
+ type: integer
22500
22838
  serverless_apps_google_count_avg:
22501
- description: Shows the average of the number of Serverless Apps for Google
22502
- Cloud for the given date and given org.
22839
+ description: Shows the average number of Serverless Apps for Google Cloud
22840
+ for the given date and given org.
22503
22841
  format: int64
22504
22842
  type: integer
22505
22843
  serverless_apps_total_count_avg:
22506
- description: Shows the average of the number of Serverless Apps for Azure
22507
- and Google Cloud for the given date and given org.
22844
+ description: Shows the average number of Serverless Apps for Azure and Google
22845
+ Cloud for the given date and given org.
22508
22846
  format: int64
22509
22847
  type: integer
22510
22848
  siem_analyzed_logs_add_on_count_sum:
@@ -22582,6 +22920,11 @@ components:
22582
22920
  hours in the current month for all organizations.
22583
22921
  format: int64
22584
22922
  type: integer
22923
+ apm_enterprise_standalone_hosts_top99p_sum:
22924
+ description: Shows the sum of the 99th percentile of all distinct standalone
22925
+ Enterprise hosts over all hours in the current month for all organizations.
22926
+ format: int64
22927
+ type: integer
22585
22928
  apm_fargate_count_avg_sum:
22586
22929
  description: Shows the average of all APM ECS Fargate tasks over all hours
22587
22930
  in the current month for all organizations.
@@ -22592,6 +22935,11 @@ components:
22592
22935
  hours in the current month for all organizations.
22593
22936
  format: int64
22594
22937
  type: integer
22938
+ apm_pro_standalone_hosts_top99p_sum:
22939
+ description: Shows the sum of the 99th percentile of all distinct standalone
22940
+ Pro hosts over all hours in the current month for all organizations.
22941
+ format: int64
22942
+ type: integer
22595
22943
  appsec_fargate_count_avg_sum:
22596
22944
  description: Shows the average of all Application Security Monitoring ECS
22597
22945
  Fargate tasks over all hours in the current month for all organizations.
@@ -22649,6 +22997,11 @@ components:
22649
22997
  current month for all organizations.
22650
22998
  format: int64
22651
22999
  type: integer
23000
+ bits_ai_investigations_agg_sum:
23001
+ description: Shows the sum of all Bits AI Investigations over all hours
23002
+ in the current month for all organizations.
23003
+ format: int64
23004
+ type: integer
22652
23005
  browser_rum_lite_session_count_agg_sum:
22653
23006
  deprecated: true
22654
23007
  description: Shows the sum of all browser lite sessions over all hours in
@@ -23226,6 +23579,11 @@ components:
23226
23579
  over all hours in the current months for all organizations
23227
23580
  format: int64
23228
23581
  type: integer
23582
+ on_call_seat_hwm_sum:
23583
+ description: Shows the sum of the high-water marks of On-Call seats over
23584
+ all hours in the current month for all organizations.
23585
+ format: int64
23586
+ type: integer
23229
23587
  online_archive_events_count_agg_sum:
23230
23588
  description: Sum of all online archived events over all hours in the current
23231
23589
  month for all organizations.
@@ -23477,11 +23835,155 @@ components:
23477
23835
  organizations.
23478
23836
  format: int64
23479
23837
  type: integer
23838
+ serverless_apps_apm_apm_azure_appservice_instances_avg_sum:
23839
+ description: Sum of the average number of Serverless Apps with Application
23840
+ Performance Monitoring for Azure App Service instances in the current
23841
+ month for all organizations.
23842
+ format: int64
23843
+ type: integer
23844
+ serverless_apps_apm_apm_azure_azurefunction_instances_avg_sum:
23845
+ description: Sum of the average number of Serverless Apps with Application
23846
+ Performance Monitoring for Azure Function instances in the current month
23847
+ for all organizations.
23848
+ format: int64
23849
+ type: integer
23850
+ serverless_apps_apm_apm_azure_containerapp_instances_avg_sum:
23851
+ description: Sum of the average number of Serverless Apps with Application
23852
+ Performance Monitoring for Azure Container App instances in the current
23853
+ month for all organizations.
23854
+ format: int64
23855
+ type: integer
23856
+ serverless_apps_apm_apm_fargate_ecs_tasks_avg_sum:
23857
+ description: Sum of the average number of Serverless Apps with Application
23858
+ Performance Monitoring for Fargate Elastic Container Service tasks in
23859
+ the current month for all organizations.
23860
+ format: int64
23861
+ type: integer
23862
+ serverless_apps_apm_apm_gcp_cloudfunction_instances_avg_sum:
23863
+ description: Sum of the average number of Serverless Apps with Application
23864
+ Performance Monitoring for Google Cloud Platform Cloud Function instances
23865
+ in the current month for all organizations.
23866
+ format: int64
23867
+ type: integer
23868
+ serverless_apps_apm_apm_gcp_cloudrun_instances_avg_sum:
23869
+ description: Sum of the average number of Serverless Apps with Application
23870
+ Performance Monitoring for Google Cloud Platform Cloud Run instances in
23871
+ the current month for all organizations.
23872
+ format: int64
23873
+ type: integer
23874
+ serverless_apps_apm_avg_sum:
23875
+ description: Sum of the average number of Serverless Apps with Application
23876
+ Performance Monitoring in the current month for all organizations.
23877
+ format: int64
23878
+ type: integer
23879
+ serverless_apps_apm_excl_fargate_apm_azure_appservice_instances_avg_sum:
23880
+ description: Sum of the average number of Serverless Apps with Application
23881
+ Performance Monitoring excluding Fargate for Azure App Service instances
23882
+ in the current month for all organizations.
23883
+ format: int64
23884
+ type: integer
23885
+ serverless_apps_apm_excl_fargate_apm_azure_azurefunction_instances_avg_sum:
23886
+ description: Sum of the average number of Serverless Apps with Application
23887
+ Performance Monitoring excluding Fargate for Azure Function instances
23888
+ in the current month for all organizations.
23889
+ format: int64
23890
+ type: integer
23891
+ serverless_apps_apm_excl_fargate_apm_azure_containerapp_instances_avg_sum:
23892
+ description: Sum of the average number of Serverless Apps with Application
23893
+ Performance Monitoring excluding Fargate for Azure Container App instances
23894
+ in the current month for all organizations.
23895
+ format: int64
23896
+ type: integer
23897
+ serverless_apps_apm_excl_fargate_apm_gcp_cloudfunction_instances_avg_sum:
23898
+ description: Sum of the average number of Serverless Apps with Application
23899
+ Performance Monitoring excluding Fargate for Google Cloud Platform Cloud
23900
+ Function instances in the current month for all organizations.
23901
+ format: int64
23902
+ type: integer
23903
+ serverless_apps_apm_excl_fargate_apm_gcp_cloudrun_instances_avg_sum:
23904
+ description: Sum of the average number of Serverless Apps with Application
23905
+ Performance Monitoring excluding Fargate for Google Cloud Platform Cloud
23906
+ Run instances in the current month for all organizations.
23907
+ format: int64
23908
+ type: integer
23909
+ serverless_apps_apm_excl_fargate_avg_sum:
23910
+ description: Sum of the average number of Serverless Apps with Application
23911
+ Performance Monitoring excluding Fargate in the current month for all
23912
+ organizations.
23913
+ format: int64
23914
+ type: integer
23915
+ serverless_apps_azure_container_app_instances_avg_sum:
23916
+ description: Sum of the average number of Serverless Apps for Azure Container
23917
+ App instances in the current month for all organizations.
23918
+ format: int64
23919
+ type: integer
23480
23920
  serverless_apps_azure_count_avg_sum:
23481
23921
  description: Sum of the average number of Serverless Apps for Azure in the
23482
23922
  current month for all organizations.
23483
23923
  format: int64
23484
23924
  type: integer
23925
+ serverless_apps_azure_function_app_instances_avg_sum:
23926
+ description: Sum of the average number of Serverless Apps for Azure Function
23927
+ App instances in the current month for all organizations.
23928
+ format: int64
23929
+ type: integer
23930
+ serverless_apps_azure_web_app_instances_avg_sum:
23931
+ description: Sum of the average number of Serverless Apps for Azure Web
23932
+ App instances in the current month for all organizations.
23933
+ format: int64
23934
+ type: integer
23935
+ serverless_apps_ecs_avg_sum:
23936
+ description: Sum of the average number of Serverless Apps for Elastic Container
23937
+ Service in the current month for all organizations.
23938
+ format: int64
23939
+ type: integer
23940
+ serverless_apps_eks_avg_sum:
23941
+ description: Sum of the average number of Serverless Apps for Elastic Kubernetes
23942
+ Service in the current month for all organizations.
23943
+ format: int64
23944
+ type: integer
23945
+ serverless_apps_excl_fargate_avg_sum:
23946
+ description: Sum of the average number of Serverless Apps excluding Fargate
23947
+ in the current month for all organizations.
23948
+ format: int64
23949
+ type: integer
23950
+ serverless_apps_excl_fargate_azure_container_app_instances_avg_sum:
23951
+ description: Sum of the average number of Serverless Apps excluding Fargate
23952
+ for Azure Container App instances in the current month for all organizations.
23953
+ format: int64
23954
+ type: integer
23955
+ serverless_apps_excl_fargate_azure_function_app_instances_avg_sum:
23956
+ description: Sum of the average number of Serverless Apps excluding Fargate
23957
+ for Azure Function App instances in the current month for all organizations.
23958
+ format: int64
23959
+ type: integer
23960
+ serverless_apps_excl_fargate_azure_web_app_instances_avg_sum:
23961
+ description: Sum of the average number of Serverless Apps excluding Fargate
23962
+ for Azure Web App instances in the current month for all organizations.
23963
+ format: int64
23964
+ type: integer
23965
+ serverless_apps_excl_fargate_google_cloud_functions_instances_avg_sum:
23966
+ description: Sum of the average number of Serverless Apps excluding Fargate
23967
+ for Google Cloud Platform Cloud Functions instances in the current month
23968
+ for all organizations.
23969
+ format: int64
23970
+ type: integer
23971
+ serverless_apps_excl_fargate_google_cloud_run_instances_avg_sum:
23972
+ description: Sum of the average number of Serverless Apps excluding Fargate
23973
+ for Google Cloud Platform Cloud Run instances in the current month for
23974
+ all organizations.
23975
+ format: int64
23976
+ type: integer
23977
+ serverless_apps_google_cloud_functions_instances_avg_sum:
23978
+ description: Sum of the average number of Serverless Apps for Google Cloud
23979
+ Platform Cloud Functions instances in the current month for all organizations.
23980
+ format: int64
23981
+ type: integer
23982
+ serverless_apps_google_cloud_run_instances_avg_sum:
23983
+ description: Sum of the average number of Serverless Apps for Google Cloud
23984
+ Platform Cloud Run instances in the current month for all organizations.
23985
+ format: int64
23986
+ type: integer
23485
23987
  serverless_apps_google_count_avg_sum:
23486
23988
  description: Sum of the average number of Serverless Apps for Google Cloud
23487
23989
  in the current month for all organizations.
@@ -25341,7 +25843,9 @@ paths:
25341
25843
  - api_keys_write
25342
25844
  /api/v1/application_key:
25343
25845
  get:
25344
- description: Get all application keys available for your Datadog account.
25846
+ description: 'Get all application keys available for your Datadog account.
25847
+
25848
+ This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).'
25345
25849
  operationId: ListApplicationKeys
25346
25850
  responses:
25347
25851
  '200':
@@ -25367,7 +25871,9 @@ paths:
25367
25871
  - org_app_keys_read
25368
25872
  - user_app_keys
25369
25873
  post:
25370
- description: Create an application key with a given name.
25874
+ description: 'Create an application key with a given name.
25875
+
25876
+ This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).'
25371
25877
  operationId: CreateApplicationKey
25372
25878
  requestBody:
25373
25879
  content:
@@ -25412,7 +25918,9 @@ paths:
25412
25918
  - user_app_keys
25413
25919
  /api/v1/application_key/{key}:
25414
25920
  delete:
25415
- description: Delete a given application key.
25921
+ description: 'Delete a given application key.
25922
+
25923
+ This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).'
25416
25924
  operationId: DeleteApplicationKey
25417
25925
  parameters:
25418
25926
  - description: The specific APP key you are working with.
@@ -25451,7 +25959,9 @@ paths:
25451
25959
  - org_app_keys_write
25452
25960
  - user_app_keys
25453
25961
  get:
25454
- description: Get a given application key.
25962
+ description: 'Get a given application key.
25963
+
25964
+ This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).'
25455
25965
  operationId: GetApplicationKey
25456
25966
  parameters:
25457
25967
  - description: The specific APP key you are working with.
@@ -25490,7 +26000,9 @@ paths:
25490
26000
  - org_app_keys_read
25491
26001
  - user_app_keys
25492
26002
  put:
25493
- description: Edit an application key name.
26003
+ description: 'Edit an application key name.
26004
+
26005
+ This endpoint is disabled for organizations in [One-Time Read mode](https://docs.datadoghq.com/account_management/api-app-keys/#one-time-read-mode).'
25494
26006
  operationId: UpdateApplicationKey
25495
26007
  parameters:
25496
26008
  - description: The specific APP key you are working with.
@@ -27635,8 +28147,9 @@ paths:
27635
28147
  /api/v1/integration/aws:
27636
28148
  delete:
27637
28149
  deprecated: true
27638
- description: Delete a Datadog-AWS integration matching the specified `account_id`
27639
- and `role_name parameters`.
28150
+ description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28151
+ Delete a Datadog-AWS integration matching the specified `account_id` and `role_name
28152
+ parameters`.'
27640
28153
  operationId: DeleteAWSAccount
27641
28154
  requestBody:
27642
28155
  content:
@@ -27682,7 +28195,8 @@ paths:
27682
28195
  - aws_configurations_manage
27683
28196
  get:
27684
28197
  deprecated: true
27685
- description: List all Datadog-AWS integrations available in your Datadog organization.
28198
+ description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28199
+ List all Datadog-AWS integrations available in your Datadog organization.'
27686
28200
  operationId: ListAWSAccounts
27687
28201
  parameters:
27688
28202
  - description: Only return AWS accounts that matches this `account_id`.
@@ -27733,7 +28247,8 @@ paths:
27733
28247
  - aws_configuration_read
27734
28248
  post:
27735
28249
  deprecated: true
27736
- description: 'Create a Datadog-Amazon Web Services integration.
28250
+ description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28251
+ Create a Datadog-Amazon Web Services integration.
27737
28252
 
27738
28253
  Using the `POST` method updates your integration configuration
27739
28254
 
@@ -27785,7 +28300,8 @@ paths:
27785
28300
  - aws_configurations_manage
27786
28301
  put:
27787
28302
  deprecated: true
27788
- description: Update a Datadog-Amazon Web Services integration.
28303
+ description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28304
+ Update a Datadog-Amazon Web Services integration.'
27789
28305
  operationId: UpdateAWSAccount
27790
28306
  parameters:
27791
28307
  - description: Only return AWS accounts that matches this `account_id`.
@@ -27855,8 +28371,9 @@ paths:
27855
28371
  /api/v1/integration/aws/available_namespace_rules:
27856
28372
  get:
27857
28373
  deprecated: true
27858
- description: List all namespace rules for a given Datadog-AWS integration. This
27859
- endpoint takes no arguments.
28374
+ description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28375
+ List all namespace rules for a given Datadog-AWS integration. This endpoint
28376
+ takes no arguments.'
27860
28377
  operationId: ListAvailableAWSNamespaces
27861
28378
  responses:
27862
28379
  '200':
@@ -27888,7 +28405,9 @@ paths:
27888
28405
  - aws_configuration_read
27889
28406
  /api/v1/integration/aws/event_bridge:
27890
28407
  delete:
27891
- description: Delete an Amazon EventBridge source.
28408
+ deprecated: true
28409
+ description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28410
+ Delete an Amazon EventBridge source.'
27892
28411
  operationId: DeleteAWSEventBridgeSource
27893
28412
  requestBody:
27894
28413
  content:
@@ -27928,7 +28447,9 @@ paths:
27928
28447
  permissions:
27929
28448
  - manage_integrations
27930
28449
  get:
27931
- description: Get all Amazon EventBridge sources.
28450
+ deprecated: true
28451
+ description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28452
+ Get all Amazon EventBridge sources.'
27932
28453
  operationId: ListAWSEventBridgeSources
27933
28454
  parameters: []
27934
28455
  responses:
@@ -27959,7 +28480,9 @@ paths:
27959
28480
  operator: OPEN
27960
28481
  permissions: []
27961
28482
  post:
27962
- description: Create an Amazon EventBridge source.
28483
+ deprecated: true
28484
+ description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28485
+ Create an Amazon EventBridge source.'
27963
28486
  operationId: CreateAWSEventBridgeSource
27964
28487
  requestBody:
27965
28488
  content:
@@ -28128,8 +28651,8 @@ paths:
28128
28651
  /api/v1/integration/aws/generate_new_external_id:
28129
28652
  put:
28130
28653
  deprecated: true
28131
- description: Generate a new AWS external ID for a given AWS account ID and role
28132
- name pair.
28654
+ description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28655
+ Generate a new AWS external ID for a given AWS account ID and role name pair.'
28133
28656
  operationId: CreateNewAWSExternalID
28134
28657
  requestBody:
28135
28658
  content:
@@ -28356,9 +28879,10 @@ paths:
28356
28879
  /api/v1/integration/aws/logs/services:
28357
28880
  get:
28358
28881
  deprecated: true
28359
- description: Get the list of current AWS services that Datadog offers automatic
28360
- log collection. Use returned service IDs with the services parameter for the
28361
- Enable an AWS service log collection API endpoint.
28882
+ description: '**This endpoint is deprecated - use the V2 endpoint instead.**
28883
+ Get the list of current AWS services that Datadog offers automatic log collection.
28884
+ Use returned service IDs with the services parameter for the Enable an AWS
28885
+ service log collection API endpoint.'
28362
28886
  operationId: ListAWSLogsServices
28363
28887
  responses:
28364
28888
  '200':
@@ -32079,7 +32603,11 @@ paths:
32079
32603
  - timeseries_query
32080
32604
  /api/v1/search:
32081
32605
  get:
32082
- description: Search for metrics from the last 24 hours in Datadog.
32606
+ deprecated: true
32607
+ description: '**Note**: This endpoint is deprecated. Use `/api/v2/metrics` instead.
32608
+
32609
+
32610
+ Search for metrics from the last 24 hours in Datadog.'
32083
32611
  operationId: ListMetrics
32084
32612
  parameters:
32085
32613
  - description: Query string to search metrics upon. Can optionally be prefixed