datadog_api_client 2.13.0 → 2.15.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 (148) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +346 -36
  4. data/.generator/schemas/v2/openapi.yaml +436 -174
  5. data/.generator/src/generator/formatter.py +34 -29
  6. data/.generator/src/generator/openapi.py +3 -1
  7. data/.generator/src/generator/templates/api.j2 +8 -2
  8. data/.generator/src/generator/templates/api_client.j2 +81 -53
  9. data/.generator/src/generator/templates/configuration.j2 +21 -0
  10. data/.pre-commit-config.yaml +2 -2
  11. data/CHANGELOG.md +57 -0
  12. data/README.md +23 -0
  13. data/examples/v1/azure-integration/CreateAzureIntegration.rb +3 -0
  14. data/examples/v1/azure-integration/DeleteAzureIntegration.rb +3 -0
  15. data/examples/v1/azure-integration/UpdateAzureHostFilters.rb +3 -0
  16. data/examples/v1/azure-integration/UpdateAzureIntegration.rb +3 -0
  17. data/examples/v1/dashboards/CreateDashboard_252716965.rb +6 -0
  18. data/examples/v1/dashboards/CreateDashboard_2618036642.rb +36 -0
  19. data/examples/v1/dashboards/CreateDashboard_2705593938.rb +3 -0
  20. data/examples/v1/dashboards/CreateDashboard_3777304439.rb +50 -0
  21. data/examples/v1/dashboards/DeletePublicDashboardInvitation.rb +3 -3
  22. data/examples/v1/dashboards/ListDashboards_1062671515.rb +8 -0
  23. data/examples/v1/monitors/ListMonitors_2966492814.rb +8 -0
  24. data/examples/v1/notebooks/ListNotebooks_788665428.rb +8 -0
  25. data/examples/v1/service-level-objective-corrections/ListSLOCorrection_2647266873.rb +8 -0
  26. data/examples/v1/service-level-objectives/ListSLOs_3036942817.rb +8 -0
  27. data/examples/v1/synthetics/CreateSyntheticsAPITest_1487281163.rb +2 -0
  28. data/examples/v1/synthetics/ListTests_1938827783.rb +8 -0
  29. data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent.rb +3 -0
  30. data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent_129899466.rb +3 -0
  31. data/examples/v2/downtimes/CancelDowntime.rb +0 -3
  32. data/examples/v2/downtimes/CreateDowntime.rb +0 -3
  33. data/examples/v2/downtimes/GetDowntime.rb +0 -3
  34. data/examples/v2/downtimes/ListDowntimes.rb +0 -3
  35. data/examples/v2/downtimes/ListDowntimes_805770330.rb +8 -0
  36. data/examples/v2/downtimes/ListMonitorDowntimes.rb +0 -3
  37. data/examples/v2/downtimes/ListMonitorDowntimes_128979780.rb +0 -3
  38. data/examples/v2/downtimes/UpdateDowntime.rb +0 -3
  39. data/examples/v2/logs/AggregateLogs_2955613758.rb +1 -1
  40. data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_1092490364.rb +1 -1
  41. data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule_428087276.rb +1 -1
  42. data/examples/v2/teams/CreateTeam.rb +2 -2
  43. data/examples/v2/teams/CreateTeam_252121814.rb +24 -0
  44. data/examples/v2/teams/GetUserMemberships.rb +8 -0
  45. data/examples/v2/teams/ListTeams_3592098458.rb +8 -0
  46. data/examples/v2/teams/UpdateTeam.rb +9 -0
  47. data/examples/v2/users/ListUsers_4075885358.rb +8 -0
  48. data/lib/datadog_api_client/api_client.rb +81 -53
  49. data/lib/datadog_api_client/configuration.rb +22 -6
  50. data/lib/datadog_api_client/inflector.rb +11 -1
  51. data/lib/datadog_api_client/v1/api/dashboards_api.rb +25 -0
  52. data/lib/datadog_api_client/v1/api/monitors_api.rb +22 -0
  53. data/lib/datadog_api_client/v1/api/notebooks_api.rb +21 -0
  54. data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +23 -2
  55. data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +31 -10
  56. data/lib/datadog_api_client/v1/api/synthetics_api.rb +25 -3
  57. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +3 -3
  58. data/lib/datadog_api_client/v1/models/azure_account.rb +32 -1
  59. data/lib/datadog_api_client/v1/models/distribution_widget_definition.rb +13 -1
  60. data/lib/datadog_api_client/v1/models/heat_map_widget_request.rb +35 -1
  61. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +4 -0
  62. data/lib/datadog_api_client/v1/models/list_stream_source.rb +1 -0
  63. data/lib/datadog_api_client/v1/models/monitor.rb +1 -1
  64. data/lib/datadog_api_client/v1/models/monitor_options.rb +1 -1
  65. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +8 -0
  66. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +81 -1
  67. data/lib/datadog_api_client/v1/models/sunburst_widget_request.rb +14 -4
  68. data/lib/datadog_api_client/v1/models/synthetics_assertion_target.rb +11 -1
  69. data/lib/datadog_api_client/v1/models/synthetics_assertion_timings_scope.rb +27 -0
  70. data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +11 -1
  71. data/lib/datadog_api_client/v1/models/usage_ci_visibility_hour.rb +12 -1
  72. data/lib/datadog_api_client/v1/models/usage_profiling_hour.rb +12 -1
  73. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +44 -4
  74. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +44 -4
  75. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +44 -4
  76. data/lib/datadog_api_client/v1/models/widget_comparator.rb +1 -0
  77. data/lib/datadog_api_client/v2/api/audit_api.rb +1 -1
  78. data/lib/datadog_api_client/v2/api/ci_visibility_pipelines_api.rb +11 -7
  79. data/lib/datadog_api_client/v2/api/ci_visibility_tests_api.rb +1 -1
  80. data/lib/datadog_api_client/v2/api/downtimes_api.rb +25 -36
  81. data/lib/datadog_api_client/v2/api/events_api.rb +1 -1
  82. data/lib/datadog_api_client/v2/api/ip_allowlist_api.rb +2 -2
  83. data/lib/datadog_api_client/v2/api/logs_api.rb +1 -1
  84. data/lib/datadog_api_client/v2/api/metrics_api.rb +1 -1
  85. data/lib/datadog_api_client/v2/api/processes_api.rb +1 -1
  86. data/lib/datadog_api_client/v2/api/rum_api.rb +1 -1
  87. data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +6 -6
  88. data/lib/datadog_api_client/v2/api/service_definition_api.rb +2 -2
  89. data/lib/datadog_api_client/v2/api/spans_api.rb +1 -1
  90. data/lib/datadog_api_client/v2/api/spans_metrics_api.rb +2 -2
  91. data/lib/datadog_api_client/v2/api/teams_api.rb +87 -0
  92. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +1 -1
  93. data/lib/datadog_api_client/v2/api/users_api.rb +22 -0
  94. data/lib/datadog_api_client/v2/models/application_key_create_attributes.rb +1 -1
  95. data/lib/datadog_api_client/v2/models/application_key_update_attributes.rb +1 -1
  96. data/lib/datadog_api_client/v2/models/audit_logs_event_attributes.rb +11 -1
  97. data/lib/datadog_api_client/v2/models/ci_app_event_attributes.rb +9 -21
  98. data/lib/datadog_api_client/v2/models/ci_app_pipeline_event.rb +1 -1
  99. data/lib/datadog_api_client/v2/models/{team_data.rb → ci_app_pipeline_event_attributes.rb} +24 -62
  100. data/lib/datadog_api_client/v2/models/ci_app_pipeline_level.rb +30 -0
  101. data/lib/datadog_api_client/v2/models/ci_app_pipelines_query_filter.rb +1 -1
  102. data/lib/datadog_api_client/v2/models/ci_app_test_level.rb +29 -0
  103. data/lib/datadog_api_client/v2/models/ci_app_tests_analytics_aggregate_response.rb +1 -1
  104. data/lib/datadog_api_client/v2/models/ci_app_tests_query_filter.rb +1 -1
  105. data/lib/datadog_api_client/v2/models/cloud_configuration_rule_compliance_signal_options.rb +25 -1
  106. data/lib/datadog_api_client/v2/models/dashboard_list_item.rb +25 -1
  107. data/lib/datadog_api_client/v2/models/downtime_relationships_monitor_data.rb +1 -1
  108. data/lib/datadog_api_client/v2/models/downtime_schedule_one_time_response.rb +19 -1
  109. data/lib/datadog_api_client/v2/models/formula_limit.rb +1 -0
  110. data/lib/datadog_api_client/v2/models/full_application_key_attributes.rb +1 -1
  111. data/lib/datadog_api_client/v2/models/logs_aggregate_request.rb +1 -1
  112. data/lib/datadog_api_client/v2/models/logs_aggregate_request_page.rb +1 -1
  113. data/lib/datadog_api_client/v2/models/logs_group_by.rb +3 -2
  114. data/lib/datadog_api_client/v2/models/logs_group_by_histogram.rb +1 -1
  115. data/lib/datadog_api_client/v2/models/logs_list_request.rb +1 -1
  116. data/lib/datadog_api_client/v2/models/logs_query_options.rb +1 -1
  117. data/lib/datadog_api_client/v2/models/logs_response_metadata_page.rb +1 -1
  118. data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap.rb +14 -4
  119. data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap_type.rb +26 -0
  120. data/lib/datadog_api_client/v2/models/partial_application_key_attributes.rb +1 -1
  121. data/lib/datadog_api_client/v2/models/query_formula.rb +1 -0
  122. data/lib/datadog_api_client/v2/models/relationship_to_team_links.rb +14 -4
  123. data/lib/datadog_api_client/v2/models/relationship_to_user_team_permission.rb +14 -4
  124. data/lib/datadog_api_client/v2/models/security_monitoring_signal_metadata_type.rb +26 -0
  125. data/lib/datadog_api_client/v2/models/security_monitoring_signal_response.rb +80 -0
  126. data/lib/datadog_api_client/v2/models/security_monitoring_signal_rule_response_query.rb +26 -2
  127. data/lib/datadog_api_client/v2/models/security_monitoring_signal_state_update_data.rb +24 -4
  128. data/lib/datadog_api_client/v2/models/security_monitoring_signal_triage_update_data.rb +24 -4
  129. data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb +1 -19
  130. data/lib/datadog_api_client/v2/models/security_monitoring_triage_user.rb +11 -1
  131. data/lib/datadog_api_client/v2/models/sensitive_data_scanner_get_config_response_data.rb +11 -1
  132. data/lib/datadog_api_client/v2/models/sensitive_data_scanner_meta.rb +11 -1
  133. data/lib/datadog_api_client/v2/models/sensitive_data_scanner_standard_pattern_attributes.rb +11 -1
  134. data/lib/datadog_api_client/v2/models/team_attributes.rb +50 -4
  135. data/lib/datadog_api_client/v2/models/team_create_attributes.rb +57 -4
  136. data/lib/datadog_api_client/v2/models/team_relationships_links.rb +80 -0
  137. data/lib/datadog_api_client/v2/models/team_response.rb +1 -1
  138. data/lib/datadog_api_client/v2/models/team_update_attributes.rb +57 -4
  139. data/lib/datadog_api_client/v2/models/teams_response.rb +24 -4
  140. data/lib/datadog_api_client/v2/models/teams_response_links.rb +129 -0
  141. data/lib/datadog_api_client/v2/models/teams_response_meta.rb +80 -0
  142. data/lib/datadog_api_client/v2/models/teams_response_meta_pagination.rb +150 -0
  143. data/lib/datadog_api_client/v2/models/usage_attributes_object.rb +11 -1
  144. data/lib/datadog_api_client/v2/models/user_teams_response.rb +24 -4
  145. data/lib/datadog_api_client/version.rb +1 -1
  146. data/spec/configuration_spec.rb +17 -0
  147. data/spec/retry_spec.rb +44 -0
  148. metadata +28 -3
@@ -647,6 +647,14 @@ components:
647
647
  AzureAccount:
648
648
  description: Datadog-Azure integrations configured for your organization.
649
649
  properties:
650
+ app_service_plan_filters:
651
+ description: 'Limit the Azure app service plans that are pulled into Datadog
652
+ using tags.
653
+
654
+ Only app service plans that match one of the defined tags are imported
655
+ into Datadog.'
656
+ example: key:value,filter:example
657
+ type: string
650
658
  automute:
651
659
  description: Silence monitors for expected Azure VM shutdowns.
652
660
  example: true
@@ -659,6 +667,15 @@ components:
659
667
  description: Your Azure web application secret key.
660
668
  example: testingx./Sw*g/Y33t..R1cH+hScMDt
661
669
  type: string
670
+ cspm_enabled:
671
+ description: Enable Cloud Security Management Misconfigurations for your
672
+ organization.
673
+ example: true
674
+ type: boolean
675
+ custom_metrics_enabled:
676
+ description: Enable custom metrics for your organization.
677
+ example: true
678
+ type: boolean
662
679
  errors:
663
680
  description: Errors in your configuration.
664
681
  example:
@@ -1496,6 +1513,11 @@ components:
1496
1513
  across one or several tags, such as hosts.\nUnlike the heat map, a distribution
1497
1514
  graph\u2019s x-axis is quantity rather than time."
1498
1515
  properties:
1516
+ custom_links:
1517
+ description: A list of custom links.
1518
+ items:
1519
+ $ref: '#/components/schemas/WidgetCustomLink'
1520
+ type: array
1499
1521
  legend_size:
1500
1522
  deprecated: true
1501
1523
  description: (Deprecated) The widget legend was replaced by a tooltip and
@@ -1561,7 +1583,6 @@ components:
1561
1583
  - $ref: '#/components/schemas/FormulaAndFunctionMetricQueryDefinition'
1562
1584
  - $ref: '#/components/schemas/FormulaAndFunctionEventQueryDefinition'
1563
1585
  - $ref: '#/components/schemas/FormulaAndFunctionApmResourceStatsQueryDefinition'
1564
- type: object
1565
1586
  DistributionWidgetHistogramRequestType:
1566
1587
  description: Request type for the histogram request.
1567
1588
  enum:
@@ -2762,7 +2783,6 @@ components:
2762
2783
  - $ref: '#/components/schemas/FormulaAndFunctionApmResourceStatsQueryDefinition'
2763
2784
  - $ref: '#/components/schemas/FormulaAndFunctionSLOQueryDefinition'
2764
2785
  - $ref: '#/components/schemas/FormulaAndFunctionCloudCostQueryDefinition'
2765
- type: object
2766
2786
  FormulaAndFunctionResponseFormat:
2767
2787
  description: Timeseries, scalar, or event list response. Event list response
2768
2788
  formats are supported by Geomap widgets.
@@ -3402,6 +3422,11 @@ components:
3402
3422
  $ref: '#/components/schemas/LogQueryDefinition'
3403
3423
  event_query:
3404
3424
  $ref: '#/components/schemas/EventQueryDefinition'
3425
+ formulas:
3426
+ description: List of formulas that operate on queries.
3427
+ items:
3428
+ $ref: '#/components/schemas/WidgetFormula'
3429
+ type: array
3405
3430
  log_query:
3406
3431
  $ref: '#/components/schemas/LogQueryDefinition'
3407
3432
  network_query:
@@ -3413,6 +3438,13 @@ components:
3413
3438
  q:
3414
3439
  description: Widget query.
3415
3440
  type: string
3441
+ queries:
3442
+ description: List of queries that can be returned directly or used in formulas.
3443
+ items:
3444
+ $ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
3445
+ type: array
3446
+ response_format:
3447
+ $ref: '#/components/schemas/FormulaAndFunctionResponseFormat'
3416
3448
  rum_query:
3417
3449
  $ref: '#/components/schemas/LogQueryDefinition'
3418
3450
  security_query:
@@ -3865,10 +3897,12 @@ components:
3865
3897
  - api_usage
3866
3898
  - apm_fargate_usage
3867
3899
  - apm_host_usage
3900
+ - apm_usm_usage
3868
3901
  - appsec_fargate_usage
3869
3902
  - appsec_usage
3870
3903
  - browser_usage
3871
3904
  - container_excl_agent_usage
3905
+ - ci_visibility_itr_usage
3872
3906
  - container_usage
3873
3907
  - cspm_containers_usage
3874
3908
  - cspm_hosts_usage
@@ -3886,6 +3920,7 @@ components:
3886
3920
  - functions_usage
3887
3921
  - infra_host_usage
3888
3922
  - invocations_usage
3923
+ - mobile_app_testing_usage
3889
3924
  - npm_host_usage
3890
3925
  - obs_pipeline_bytes_usage
3891
3926
  - profiled_container_usage
@@ -3895,15 +3930,18 @@ components:
3895
3930
  - estimated_rum_sessions_usage
3896
3931
  - universal_service_monitoring_usage
3897
3932
  - vuln_management_hosts_usage
3933
+ - sds_scanned_bytes_usage
3898
3934
  type: string
3899
3935
  x-enum-varnames:
3900
3936
  - API_USAGE
3901
3937
  - APM_FARGATE_USAGE
3902
3938
  - APM_HOST_USAGE
3939
+ - APM_USM_USAGE
3903
3940
  - APPSEC_FARGATE_USAGE
3904
3941
  - APPSEC_USAGE
3905
3942
  - BROWSER_USAGE
3906
3943
  - CONTAINER_EXCL_AGENT_USAGE
3944
+ - CI_VISIBILITY_ITR_USAGE
3907
3945
  - CONTAINER_USAGE
3908
3946
  - CSPM_CONTAINERS_USAGE
3909
3947
  - CSPM_HOSTS_USAGE
@@ -3921,6 +3959,7 @@ components:
3921
3959
  - FUNCTIONS_USAGE
3922
3960
  - INFRA_HOST_USAGE
3923
3961
  - INVOCATIONS_USAGE
3962
+ - MOBILE_APP_TESTING_USAGE
3924
3963
  - NPM_HOST_USAGE
3925
3964
  - OBS_PIPELINE_BYTES_USAGE
3926
3965
  - PROFILED_CONTAINER_USAGE
@@ -3930,6 +3969,7 @@ components:
3930
3969
  - ESTIMATED_RUM_SESSIONS_USAGE
3931
3970
  - UNIVERSAL_SERVICE_MONITORING_USAGE
3932
3971
  - VULN_MANAGEMENT_HOSTS_USAGE
3972
+ - SDS_SCANNED_BYTES_USAGE
3933
3973
  IFrameWidgetDefinition:
3934
3974
  description: The iframe widget allows you to embed a portion of any other web
3935
3975
  page on your dashboard. Only available on FREE layout dashboards.
@@ -4388,6 +4428,7 @@ components:
4388
4428
  - ci_test_stream
4389
4429
  - rum_issue_stream
4390
4430
  - apm_issue_stream
4431
+ - trace_stream
4391
4432
  - logs_issue_stream
4392
4433
  - logs_pattern_stream
4393
4434
  - logs_transaction_stream
@@ -4401,6 +4442,7 @@ components:
4401
4442
  - CI_TEST_STREAM
4402
4443
  - RUM_ISSUE_STREAM
4403
4444
  - APM_ISSUE_STREAM
4445
+ - TRACE_STREAM
4404
4446
  - LOGS_ISSUE_STREAM
4405
4447
  - LOGS_PATTERN_STREAM
4406
4448
  - LOGS_TRANSACTION_STREAM
@@ -5563,7 +5605,6 @@ components:
5563
5605
  - $ref: '#/components/schemas/LogsLookupProcessor'
5564
5606
  - $ref: '#/components/schemas/ReferenceTableLogsLookupProcessor'
5565
5607
  - $ref: '#/components/schemas/LogsTraceRemapper'
5566
- type: object
5567
5608
  LogsQueryCompute:
5568
5609
  description: Define computation for a log query.
5569
5610
  properties:
@@ -6222,7 +6263,7 @@ components:
6222
6263
  readOnly: true
6223
6264
  type: integer
6224
6265
  matching_downtimes:
6225
- description: A list of active downtimes that match this monitor.
6266
+ description: A list of active v1 downtimes that match this monitor.
6226
6267
  items:
6227
6268
  $ref: '#/components/schemas/MatchingDowntime'
6228
6269
  type: array
@@ -6455,7 +6496,6 @@ components:
6455
6496
  description: A formula and function query.
6456
6497
  oneOf:
6457
6498
  - $ref: '#/components/schemas/MonitorFormulaAndFunctionEventQueryDefinition'
6458
- type: object
6459
6499
  MonitorGroupSearchResponse:
6460
6500
  description: The response of a monitor group search.
6461
6501
  example:
@@ -6751,7 +6791,8 @@ components:
6751
6791
  nullable: true
6752
6792
  type: integer
6753
6793
  deprecated: true
6754
- description: Information about the downtime applied to the monitor.
6794
+ description: Information about the downtime applied to the monitor. Only
6795
+ shows v1 downtimes.
6755
6796
  type: object
6756
6797
  synthetics_check_id:
6757
6798
  deprecated: true
@@ -6875,18 +6916,20 @@ components:
6875
6916
  MonitorSearchCount:
6876
6917
  description: Search facets.
6877
6918
  items:
6878
- description: A facet item.
6879
- properties:
6880
- count:
6881
- description: The number of found monitors with the listed value.
6882
- format: int64
6883
- readOnly: true
6884
- type: integer
6885
- name:
6886
- description: The facet value.
6887
- readOnly: true
6888
- type: object
6919
+ $ref: '#/components/schemas/MonitorSearchCountItem'
6889
6920
  type: array
6921
+ MonitorSearchCountItem:
6922
+ description: A facet item.
6923
+ properties:
6924
+ count:
6925
+ description: The number of found monitors with the listed value.
6926
+ format: int64
6927
+ readOnly: true
6928
+ type: integer
6929
+ name:
6930
+ description: The facet value.
6931
+ readOnly: true
6932
+ type: object
6890
6933
  MonitorSearchResponse:
6891
6934
  description: The response form a monitor search.
6892
6935
  example:
@@ -7404,10 +7447,14 @@ components:
7404
7447
  - appsec_fargate_percentage
7405
7448
  - apm_host_usage
7406
7449
  - apm_host_percentage
7450
+ - apm_usm_usage
7451
+ - apm_usm_percentage
7407
7452
  - appsec_usage
7408
7453
  - appsec_percentage
7409
7454
  - browser_usage
7410
7455
  - browser_percentage
7456
+ - ci_visibility_itr_usage
7457
+ - ci_visibility_itr_percentage
7411
7458
  - container_excl_agent_usage
7412
7459
  - container_excl_agent_percentage
7413
7460
  - container_usage
@@ -7444,6 +7491,8 @@ components:
7444
7491
  - infra_host_percentage
7445
7492
  - invocations_usage
7446
7493
  - invocations_percentage
7494
+ - mobile_app_testing_percentage
7495
+ - mobile_app_testing_usage
7447
7496
  - npm_host_usage
7448
7497
  - npm_host_percentage
7449
7498
  - obs_pipeline_bytes_usage
@@ -7462,6 +7511,8 @@ components:
7462
7511
  - universal_service_monitoring_percentage
7463
7512
  - vuln_management_hosts_usage
7464
7513
  - vuln_management_hosts_percentage
7514
+ - sds_scanned_bytes_usage
7515
+ - sds_scanned_bytes_percentage
7465
7516
  - '*'
7466
7517
  type: string
7467
7518
  x-enum-varnames:
@@ -7473,10 +7524,14 @@ components:
7473
7524
  - APPSEC_FARGATE_PERCENTAGE
7474
7525
  - APM_HOST_USAGE
7475
7526
  - APM_HOST_PERCENTAGE
7527
+ - APM_USM_USAGE
7528
+ - APM_USM_PERCENTAGE
7476
7529
  - APPSEC_USAGE
7477
7530
  - APPSEC_PERCENTAGE
7478
7531
  - BROWSER_USAGE
7479
7532
  - BROWSER_PERCENTAGE
7533
+ - CI_VISIBILITY_ITR_USAGE
7534
+ - CI_VISIBILITY_ITR_PERCENTAGE
7480
7535
  - CONTAINER_EXCL_AGENT_USAGE
7481
7536
  - CONTAINER_EXCL_AGENT_PERCENTAGE
7482
7537
  - CONTAINER_USAGE
@@ -7513,6 +7568,8 @@ components:
7513
7568
  - INFRA_HOST_PERCENTAGE
7514
7569
  - INVOCATIONS_USAGE
7515
7570
  - INVOCATIONS_PERCENTAGE
7571
+ - MOBILE_APP_TESTING_USAGE
7572
+ - MOBILE_APP_TESTING_PERCENTAGE
7516
7573
  - NPM_HOST_USAGE
7517
7574
  - NPM_HOST_PERCENTAGE
7518
7575
  - OBS_PIPELINE_BYTES_USAGE
@@ -7531,6 +7588,8 @@ components:
7531
7588
  - UNIVERSAL_SERVICE_MONITORING_PERCENTAGE
7532
7589
  - VULN_MANAGEMENT_HOSTS_USAGE
7533
7590
  - VULN_MANAGEMENT_HOSTS_PERCENTAGE
7591
+ - SDS_SCANNED_BYTES_USAGE
7592
+ - SDS_SCANNED_BYTES_PERCENTAGE
7534
7593
  - ALL
7535
7594
  MonthlyUsageAttributionValues:
7536
7595
  description: Fields in Usage Summary by tag(s).
@@ -7559,6 +7618,15 @@ components:
7559
7618
  description: The APM host usage by tag(s).
7560
7619
  format: double
7561
7620
  type: number
7621
+ apm_usm_percentage:
7622
+ description: The percentage of APM and Universal Service Monitoring host
7623
+ usage by tag(s).
7624
+ format: double
7625
+ type: number
7626
+ apm_usm_usage:
7627
+ description: The APM and Universal Service Monitoring host usage by tag(s).
7628
+ format: double
7629
+ type: number
7562
7630
  appsec_fargate_percentage:
7563
7631
  description: The percentage of Application Security Monitoring ECS Fargate
7564
7632
  task usage by tag(s).
@@ -7586,6 +7654,15 @@ components:
7586
7654
  description: The synthetic browser test usage by tag(s).
7587
7655
  format: double
7588
7656
  type: number
7657
+ ci_visibility_itr_percentage:
7658
+ description: The percentage of Git committers for Intelligent Test Runner
7659
+ usage by tag(s).
7660
+ format: double
7661
+ type: number
7662
+ ci_visibility_itr_usage:
7663
+ description: The Git committers for Intelligent Test Runner usage by tag(s).
7664
+ format: double
7665
+ type: number
7589
7666
  container_excl_agent_percentage:
7590
7667
  description: The percentage of container usage without the Datadog Agent
7591
7668
  by tag(s).
@@ -7740,6 +7817,15 @@ components:
7740
7817
  description: The Lambda invocation usage by tag(s).
7741
7818
  format: double
7742
7819
  type: number
7820
+ mobile_app_testing_percentage:
7821
+ description: The percentage of Synthetic mobile application test usage by
7822
+ tag(s).
7823
+ format: double
7824
+ type: number
7825
+ mobile_app_testing_usage:
7826
+ description: The Synthetic mobile application test usage by tag(s).
7827
+ format: double
7828
+ type: number
7743
7829
  npm_host_percentage:
7744
7830
  description: The percentage of network host usage by tag(s).
7745
7831
  format: double
@@ -7780,6 +7866,14 @@ components:
7780
7866
  description: The profiled hosts usage by tag(s).
7781
7867
  format: double
7782
7868
  type: number
7869
+ sds_scanned_bytes_percentage:
7870
+ description: The percentage of Sensitive Data Scanner usage by tag(s).
7871
+ format: double
7872
+ type: number
7873
+ sds_scanned_bytes_usage:
7874
+ description: The total Sensitive Data Scanner usage by tag(s).
7875
+ format: double
7876
+ type: number
7783
7877
  snmp_percentage:
7784
7878
  description: The percentage of network device usage by tag(s).
7785
7879
  format: double
@@ -7951,7 +8045,6 @@ components:
7951
8045
  - $ref: '#/components/schemas/NotebookHeatMapCellAttributes'
7952
8046
  - $ref: '#/components/schemas/NotebookDistributionCellAttributes'
7953
8047
  - $ref: '#/components/schemas/NotebookLogStreamCellAttributes'
7954
- type: object
7955
8048
  NotebookCellResourceType:
7956
8049
  default: notebook_cells
7957
8050
  description: Type of the Notebook Cell resource.
@@ -8007,7 +8100,6 @@ components:
8007
8100
  - $ref: '#/components/schemas/NotebookHeatMapCellAttributes'
8008
8101
  - $ref: '#/components/schemas/NotebookDistributionCellAttributes'
8009
8102
  - $ref: '#/components/schemas/NotebookLogStreamCellAttributes'
8010
- type: object
8011
8103
  NotebookCellTime:
8012
8104
  description: Timeframe for the notebook cell. When 'null', the notebook global
8013
8105
  time is used.
@@ -8062,7 +8154,6 @@ components:
8062
8154
  - $ref: '#/components/schemas/NotebookHeatMapCellAttributes'
8063
8155
  - $ref: '#/components/schemas/NotebookDistributionCellAttributes'
8064
8156
  - $ref: '#/components/schemas/NotebookLogStreamCellAttributes'
8065
- type: object
8066
8157
  NotebookCreateData:
8067
8158
  description: The data for a notebook create request.
8068
8159
  properties:
@@ -8162,7 +8253,6 @@ components:
8162
8253
  oneOf:
8163
8254
  - $ref: '#/components/schemas/NotebookRelativeTime'
8164
8255
  - $ref: '#/components/schemas/NotebookAbsoluteTime'
8165
- type: object
8166
8256
  NotebookGraphSize:
8167
8257
  description: The size of the graph.
8168
8258
  enum:
@@ -8462,7 +8552,6 @@ components:
8462
8552
  oneOf:
8463
8553
  - $ref: '#/components/schemas/NotebookCellCreateRequest'
8464
8554
  - $ref: '#/components/schemas/NotebookCellUpdateRequest'
8465
- type: object
8466
8555
  NotebookUpdateData:
8467
8556
  description: The data for a notebook update request.
8468
8557
  properties:
@@ -11369,6 +11458,7 @@ components:
11369
11458
  - name
11370
11459
  - thresholds
11371
11460
  - type
11461
+ type: object
11372
11462
  ServiceLevelObjectiveQuery:
11373
11463
  description: 'A metric-based SLO. **Required if type is `metric`**. Note that
11374
11464
  Datadog only allows the sum by aggregator
@@ -11497,6 +11587,7 @@ components:
11497
11587
  - name
11498
11588
  - thresholds
11499
11589
  - type
11590
+ type: object
11500
11591
  ServiceMapWidgetDefinition:
11501
11592
  description: This widget displays a map of a service to all of the services
11502
11593
  that call it, and all of the services that it calls.
@@ -12026,7 +12117,6 @@ components:
12026
12117
  oneOf:
12027
12118
  - $ref: '#/components/schemas/SunburstWidgetLegendTable'
12028
12119
  - $ref: '#/components/schemas/SunburstWidgetLegendInlineAutomatic'
12029
- type: object
12030
12120
  SunburstWidgetLegendInlineAutomatic:
12031
12121
  description: Configuration of inline or automatic legends.
12032
12122
  properties:
@@ -12040,6 +12130,7 @@ components:
12040
12130
  $ref: '#/components/schemas/SunburstWidgetLegendInlineAutomaticType'
12041
12131
  required:
12042
12132
  - type
12133
+ type: object
12043
12134
  SunburstWidgetLegendInlineAutomaticType:
12044
12135
  description: Whether to show the legend inline or let it be automatically generated.
12045
12136
  enum:
@@ -12057,6 +12148,7 @@ components:
12057
12148
  $ref: '#/components/schemas/SunburstWidgetLegendTableType'
12058
12149
  required:
12059
12150
  - type
12151
+ type: object
12060
12152
  SunburstWidgetLegendTableType:
12061
12153
  description: Whether or not to show a table legend.
12062
12154
  enum:
@@ -12103,6 +12195,8 @@ components:
12103
12195
  $ref: '#/components/schemas/LogQueryDefinition'
12104
12196
  security_query:
12105
12197
  $ref: '#/components/schemas/LogQueryDefinition'
12198
+ style:
12199
+ $ref: '#/components/schemas/WidgetStyle'
12106
12200
  type: object
12107
12201
  SyntheticsAPIStep:
12108
12202
  description: The steps used in a Synthetic multistep API test.
@@ -12425,7 +12519,6 @@ components:
12425
12519
  - $ref: '#/components/schemas/SyntheticsAssertionTarget'
12426
12520
  - $ref: '#/components/schemas/SyntheticsAssertionJSONPathTarget'
12427
12521
  - $ref: '#/components/schemas/SyntheticsAssertionXPathTarget'
12428
- type: object
12429
12522
  SyntheticsAssertionJSONPathOperator:
12430
12523
  description: Assertion operator to apply.
12431
12524
  enum:
@@ -12509,6 +12602,8 @@ components:
12509
12602
  target:
12510
12603
  description: Value used by the operator.
12511
12604
  example: 123456
12605
+ timingsScope:
12606
+ $ref: '#/components/schemas/SyntheticsAssertionTimingsScope'
12512
12607
  type:
12513
12608
  $ref: '#/components/schemas/SyntheticsAssertionType'
12514
12609
  required:
@@ -12516,6 +12611,15 @@ components:
12516
12611
  - operator
12517
12612
  - target
12518
12613
  type: object
12614
+ SyntheticsAssertionTimingsScope:
12615
+ description: Timings scope for response time assertions.
12616
+ enum:
12617
+ - all
12618
+ - withoutDNS
12619
+ type: string
12620
+ x-enum-varnames:
12621
+ - ALL
12622
+ - WITHOUT_DNS
12519
12623
  SyntheticsAssertionType:
12520
12624
  description: Type of the assertion.
12521
12625
  enum:
@@ -12605,7 +12709,6 @@ components:
12605
12709
  - $ref: '#/components/schemas/SyntheticsBasicAuthDigest'
12606
12710
  - $ref: '#/components/schemas/SyntheticsBasicAuthOauthClient'
12607
12711
  - $ref: '#/components/schemas/SyntheticsBasicAuthOauthROP'
12608
- type: object
12609
12712
  SyntheticsBasicAuthDigest:
12610
12713
  description: Object to handle digest authentication when performing the test.
12611
12714
  properties:
@@ -14644,6 +14747,9 @@ components:
14644
14747
  maximum: 10
14645
14748
  minimum: 0
14646
14749
  type: integer
14750
+ persistCookies:
14751
+ description: Persist cookies across redirects.
14752
+ type: boolean
14647
14753
  port:
14648
14754
  description: Port to use when performing the test.
14649
14755
  format: int64
@@ -16341,6 +16447,13 @@ components:
16341
16447
  format: int64
16342
16448
  nullable: true
16343
16449
  type: integer
16450
+ ci_visibility_itr_committers:
16451
+ description: Shows the total count of all active Git committers for Intelligent
16452
+ Test Runner in the current month. A committer is active if they commit
16453
+ at least 3 times in a given month.
16454
+ format: int64
16455
+ nullable: true
16456
+ type: integer
16344
16457
  ci_visibility_pipeline_committers:
16345
16458
  description: Shows the total count of all active Git committers for Pipelines
16346
16459
  in the current month. A committer is active if they commit at least 3
@@ -17150,6 +17263,12 @@ components:
17150
17263
  UsageProfilingHour:
17151
17264
  description: The number of profiled hosts for each hour for a given organization.
17152
17265
  properties:
17266
+ aas_count:
17267
+ description: Contains the total number of profiled Azure app services reporting
17268
+ during a given hour.
17269
+ format: int64
17270
+ nullable: true
17271
+ type: integer
17153
17272
  avg_container_agent_count:
17154
17273
  description: Get average number of container agents for that hour.
17155
17274
  format: int64
@@ -17552,6 +17671,11 @@ components:
17552
17671
  the current month for all organizations.
17553
17672
  format: int64
17554
17673
  type: integer
17674
+ ci_visibility_itr_committers_hwm:
17675
+ description: Shows the high-water mark of all CI visibility intelligent
17676
+ test runner committers over all hours in the current month for all organizations.
17677
+ format: int64
17678
+ type: integer
17555
17679
  ci_visibility_pipeline_committers_hwm:
17556
17680
  description: Shows the high-water mark of all CI visibility pipeline committers
17557
17681
  over all hours in the current month for all organizations.
@@ -17788,6 +17912,11 @@ components:
17788
17912
  items:
17789
17913
  $ref: '#/components/schemas/UsageSummaryDateOrg'
17790
17914
  type: array
17915
+ profiling_aas_count_top99p:
17916
+ description: Shows the 99th percentile of all profiled Azure app services
17917
+ over all hours in the current date for all organizations.
17918
+ format: int64
17919
+ type: integer
17791
17920
  profiling_host_top99p:
17792
17921
  description: Shows the 99th percentile of all profiled hosts over all hours
17793
17922
  in the current date for all organizations.
@@ -17849,6 +17978,11 @@ components:
17849
17978
  the current date for all organizations.
17850
17979
  format: int64
17851
17980
  type: integer
17981
+ synthetics_mobile_test_runs_sum:
17982
+ description: Shows the sum of all Synthetic mobile application tests over
17983
+ all hours in the current date for all organizations.
17984
+ format: int64
17985
+ type: integer
17852
17986
  synthetics_parallel_testing_max_slots_hwm:
17853
17987
  description: Shows the high-water mark of used synthetics parallel testing
17854
17988
  slots over all hours in the current date for all organizations.
@@ -17879,6 +18013,11 @@ components:
17879
18013
  Management hosts over all hours in the current date for the given org.
17880
18014
  format: int64
17881
18015
  type: integer
18016
+ workflow_executions_usage_sum:
18017
+ description: Sum of all workflows executed over all hours in the current
18018
+ date for all organizations.
18019
+ format: int64
18020
+ type: integer
17882
18021
  type: object
17883
18022
  UsageSummaryDateOrg:
17884
18023
  description: Global hourly report of all data billed by Datadog for a given
@@ -17974,6 +18113,12 @@ components:
17974
18113
  the current date for the given org.
17975
18114
  format: int64
17976
18115
  type: integer
18116
+ ci_visibility_itr_committers_hwm:
18117
+ description: Shows the high-water mark of all CI visibility intelligent
18118
+ test runner committers over all hours in the current date for the given
18119
+ org.
18120
+ format: int64
18121
+ type: integer
17977
18122
  ci_visibility_pipeline_committers_hwm:
17978
18123
  description: Shows the high-water mark of all CI visibility pipeline committers
17979
18124
  over all hours in the current date for the given org.
@@ -18207,6 +18352,11 @@ components:
18207
18352
  date for the given org.
18208
18353
  format: int64
18209
18354
  type: integer
18355
+ profiling_aas_count_top99p:
18356
+ description: Shows the 99th percentile of all profiled Azure app services
18357
+ over all hours in the current date for all organizations.
18358
+ format: int64
18359
+ type: integer
18210
18360
  profiling_host_top99p:
18211
18361
  description: Shows the 99th percentile of all profiled hosts over all hours
18212
18362
  in the current date for the given org.
@@ -18274,6 +18424,11 @@ components:
18274
18424
  the current date for the given org.
18275
18425
  format: int64
18276
18426
  type: integer
18427
+ synthetics_mobile_test_runs_sum:
18428
+ description: Shows the sum of all Synthetic mobile application tests over
18429
+ all hours in the current date for the given org.
18430
+ format: int64
18431
+ type: integer
18277
18432
  synthetics_parallel_testing_max_slots_hwm:
18278
18433
  description: Shows the high-water mark of used synthetics parallel testing
18279
18434
  slots over all hours in the current date for the given org.
@@ -18304,6 +18459,11 @@ components:
18304
18459
  Management hosts over all hours in the current date for the given org.
18305
18460
  format: int64
18306
18461
  type: integer
18462
+ workflow_executions_usage_sum:
18463
+ description: Sum of all workflows executed over all hours in the current
18464
+ date for the given org.
18465
+ format: int64
18466
+ type: integer
18307
18467
  type: object
18308
18468
  UsageSummaryResponse:
18309
18469
  description: Response summarizing all usage aggregated across the months in
@@ -18405,6 +18565,11 @@ components:
18405
18565
  the current months for all organizations.
18406
18566
  format: int64
18407
18567
  type: integer
18568
+ ci_visibility_itr_committers_hwm_sum:
18569
+ description: Shows the high-water mark of all CI visibility intelligent
18570
+ test runner committers over all hours in the current months for all organizations.
18571
+ format: int64
18572
+ type: integer
18408
18573
  ci_visibility_pipeline_committers_hwm_sum:
18409
18574
  description: Shows the high-water mark of all CI visibility pipeline committers
18410
18575
  over all hours in the current months for all organizations.
@@ -18659,6 +18824,11 @@ components:
18659
18824
  months for all organizations.
18660
18825
  format: int64
18661
18826
  type: integer
18827
+ profiling_aas_count_top99p_sum:
18828
+ description: Shows the 99th percentile of all profiled Azure app services
18829
+ over all hours in the current months for all organizations.
18830
+ format: int64
18831
+ type: integer
18662
18832
  profiling_container_agent_count_avg:
18663
18833
  description: Shows the average number of profiled containers over all hours
18664
18834
  in the current months for all organizations.
@@ -18742,6 +18912,11 @@ components:
18742
18912
  the current months for all organizations.
18743
18913
  format: int64
18744
18914
  type: integer
18915
+ synthetics_mobile_test_runs_agg_sum:
18916
+ description: Shows the sum of Synthetic mobile application tests over all
18917
+ hours in the current months for all organizations.
18918
+ format: int64
18919
+ type: integer
18745
18920
  synthetics_parallel_testing_max_slots_hwm_sum:
18746
18921
  description: Shows the sum of the high-water marks of used synthetics parallel
18747
18922
  testing slots over all hours in the current month for all organizations.
@@ -18777,6 +18952,11 @@ components:
18777
18952
  Management hosts over all hours in the current months for all organizations.
18778
18953
  format: int64
18779
18954
  type: integer
18955
+ workflow_executions_usage_agg_sum:
18956
+ description: Sum of all workflows executed over all hours in the current
18957
+ months for all organizations.
18958
+ format: int64
18959
+ type: integer
18780
18960
  type: object
18781
18961
  UsageSyntheticsAPIHour:
18782
18962
  description: Number of Synthetics API tests run for each hour for a given organization.
@@ -19262,6 +19442,7 @@ components:
19262
19442
  WidgetComparator:
19263
19443
  description: Comparator to apply.
19264
19444
  enum:
19445
+ - '='
19265
19446
  - '>'
19266
19447
  - '>='
19267
19448
  - <
@@ -19269,6 +19450,7 @@ components:
19269
19450
  example: '>'
19270
19451
  type: string
19271
19452
  x-enum-varnames:
19453
+ - EQUAL_TO
19272
19454
  - GREATER_THAN
19273
19455
  - GREATER_THAN_OR_EQUAL_TO
19274
19456
  - LESS_THAN
@@ -19382,7 +19564,6 @@ components:
19382
19564
  - $ref: '#/components/schemas/ListStreamWidgetDefinition'
19383
19565
  - $ref: '#/components/schemas/FunnelWidgetDefinition'
19384
19566
  - $ref: '#/components/schemas/TopologyMapWidgetDefinition'
19385
- type: object
19386
19567
  WidgetDisplayType:
19387
19568
  description: Type of display to use for the request.
19388
19569
  enum:
@@ -19963,17 +20144,39 @@ components:
19963
20144
  authorizationCode:
19964
20145
  authorizationUrl: /oauth2/v1/authorize
19965
20146
  scopes:
20147
+ apm_service_catalog_read: View service catalog and service definitions.
20148
+ apm_service_catalog_write: Add, modify, and delete service catalog definitions
20149
+ when those definitions are maintained by Datadog.
20150
+ create_webhooks: Create webhooks integrations.
19966
20151
  dashboards_public_share: Generate public and authenticated links to share
19967
- dashboards externally.
20152
+ dashboards or embeddable graphs externally.
19968
20153
  dashboards_read: View dashboards.
19969
20154
  dashboards_write: Create and change dashboards.
19970
20155
  events_read: Read Events data.
20156
+ incident_notification_settings_write: Configure Incidents Notification
20157
+ settings.
20158
+ incident_read: View incidents in Datadog.
20159
+ incident_settings_write: Configure Incident Settings.
20160
+ incident_write: Create, view, and manage incidents in Datadog.
19971
20161
  metrics_read: View custom metrics.
19972
20162
  monitors_downtime: Set downtimes to suppress alerts from any monitor in
19973
- an organization. The ability to write monitors is not required to set
19974
- downtimes.
20163
+ an organization. Mute and unmute hosts. The ability to write monitors
20164
+ is not required to set downtimes.
19975
20165
  monitors_read: View monitors.
19976
20166
  monitors_write: Edit, mute, and delete individual monitors.
20167
+ security_monitoring_filters_read: Read Security Filters.
20168
+ security_monitoring_filters_write: Create, edit, and delete Security Filters.
20169
+ security_monitoring_findings_read: View CSPM Findings.
20170
+ security_monitoring_rules_read: Read Detection Rules.
20171
+ security_monitoring_rules_write: Create and edit Detection Rules.
20172
+ security_monitoring_signals_read: View Security Signals.
20173
+ security_monitoring_suppressions_read: Read Rule Suppressions.
20174
+ security_monitoring_suppressions_write: Write Rule Suppressions.
20175
+ slos_corrections: Apply, edit, and delete SLO status corrections. A user
20176
+ with this permission can make status corrections, even if they do not
20177
+ have permission to edit those SLOs.
20178
+ slos_read: View SLOs and status corrections.
20179
+ slos_write: Create, edit, and delete SLOs.
19977
20180
  synthetics_global_variable_read: View, search, and use Synthetics global
19978
20181
  variables.
19979
20182
  synthetics_global_variable_write: Create, edit, and delete global variables
@@ -19984,6 +20187,11 @@ components:
19984
20187
  in addition to having access to the associated installation guidelines.
19985
20188
  synthetics_read: List and view configured Synthetic tests and test results.
19986
20189
  synthetics_write: Create, edit, and delete Synthetic tests.
20190
+ teams_manage: Manage Teams. Create, delete, rename, and edit metadata
20191
+ of all Teams. To control Team membership across all Teams, use the User
20192
+ Access Manage permission.
20193
+ teams_read: Read Teams data. A User with this permission can view Team
20194
+ names, metadata, and which Users are on each Team.
19987
20195
  timeseries_query: Query Timeseries data.
19988
20196
  usage_read: View your organization's usage and usage attribution.
19989
20197
  user_access_invite: Invite other users to your organization.
@@ -20685,6 +20893,21 @@ paths:
20685
20893
  required: false
20686
20894
  schema:
20687
20895
  type: boolean
20896
+ - description: The maximum number of dashboards returned in the list.
20897
+ in: query
20898
+ name: count
20899
+ required: false
20900
+ schema:
20901
+ default: 100
20902
+ format: int64
20903
+ type: integer
20904
+ - description: The specific offset to use as the beginning of the returned response.
20905
+ in: query
20906
+ name: start
20907
+ required: false
20908
+ schema:
20909
+ format: int64
20910
+ type: integer
20688
20911
  responses:
20689
20912
  '200':
20690
20913
  content:
@@ -20708,6 +20931,10 @@ paths:
20708
20931
  summary: Get all dashboards
20709
20932
  tags:
20710
20933
  - Dashboards
20934
+ x-pagination:
20935
+ limitParam: count
20936
+ pageOffsetParam: start
20937
+ resultsPath: dashboards
20711
20938
  patch:
20712
20939
  description: Restore dashboards using the specified IDs. If there are any failures,
20713
20940
  no dashboards will be restored (partial success is not allowed).
@@ -24747,6 +24974,7 @@ paths:
24747
24974
  name: page_size
24748
24975
  required: false
24749
24976
  schema:
24977
+ default: 100
24750
24978
  example: 20
24751
24979
  format: int32
24752
24980
  maximum: 1000
@@ -24782,6 +25010,9 @@ paths:
24782
25010
  summary: Get all monitor details
24783
25011
  tags:
24784
25012
  - Monitors
25013
+ x-pagination:
25014
+ limitParam: page_size
25015
+ pageParam: page
24785
25016
  post:
24786
25017
  description: 'Create a monitor using the specified options.
24787
25018
 
@@ -25940,6 +26171,7 @@ paths:
25940
26171
  name: count
25941
26172
  required: false
25942
26173
  schema:
26174
+ default: 100
25943
26175
  example: 5
25944
26176
  format: int64
25945
26177
  type: integer
@@ -26024,6 +26256,10 @@ paths:
26024
26256
  summary: Get all notebooks
26025
26257
  tags:
26026
26258
  - Notebooks
26259
+ x-pagination:
26260
+ limitParam: count
26261
+ pageOffsetParam: start
26262
+ resultsPath: data
26027
26263
  post:
26028
26264
  description: Create a notebook using the specified options.
26029
26265
  operationId: CreateNotebook
@@ -26855,6 +27091,7 @@ paths:
26855
27091
  name: limit
26856
27092
  required: false
26857
27093
  schema:
27094
+ default: 1000
26858
27095
  format: int64
26859
27096
  type: integer
26860
27097
  - description: The specific offset to use as the beginning of the returned response.
@@ -26891,9 +27128,18 @@ paths:
26891
27128
  description: Not Found
26892
27129
  '429':
26893
27130
  $ref: '#/components/responses/TooManyRequestsResponse'
27131
+ security:
27132
+ - apiKeyAuth: []
27133
+ appKeyAuth: []
27134
+ - AuthZ:
27135
+ - slos_read
26894
27136
  summary: Get all SLOs
26895
27137
  tags:
26896
27138
  - Service Level Objectives
27139
+ x-pagination:
27140
+ limitParam: limit
27141
+ pageOffsetParam: offset
27142
+ resultsPath: data
26897
27143
  post:
26898
27144
  description: Create a service level objective object.
26899
27145
  operationId: CreateSLO
@@ -26925,6 +27171,11 @@ paths:
26925
27171
  description: Forbidden
26926
27172
  '429':
26927
27173
  $ref: '#/components/responses/TooManyRequestsResponse'
27174
+ security:
27175
+ - apiKeyAuth: []
27176
+ appKeyAuth: []
27177
+ - AuthZ:
27178
+ - slos_write
26928
27179
  summary: Create an SLO object
26929
27180
  tags:
26930
27181
  - Service Level Objectives
@@ -26970,6 +27221,11 @@ paths:
26970
27221
  description: Forbidden
26971
27222
  '429':
26972
27223
  $ref: '#/components/responses/TooManyRequestsResponse'
27224
+ security:
27225
+ - apiKeyAuth: []
27226
+ appKeyAuth: []
27227
+ - AuthZ:
27228
+ - slos_write
26973
27229
  summary: Bulk Delete SLO Timeframes
26974
27230
  tags:
26975
27231
  - Service Level Objectives
@@ -27016,6 +27272,11 @@ paths:
27016
27272
  description: Conflict
27017
27273
  '429':
27018
27274
  $ref: '#/components/responses/TooManyRequestsResponse'
27275
+ security:
27276
+ - apiKeyAuth: []
27277
+ appKeyAuth: []
27278
+ - AuthZ:
27279
+ - slos_read
27019
27280
  summary: Check if SLOs can be safely deleted
27020
27281
  tags:
27021
27282
  - Service Level Objectives
@@ -27037,6 +27298,7 @@ paths:
27037
27298
  name: limit
27038
27299
  required: false
27039
27300
  schema:
27301
+ default: 25
27040
27302
  format: int64
27041
27303
  type: integer
27042
27304
  responses:
@@ -27054,9 +27316,18 @@ paths:
27054
27316
  description: Forbidden
27055
27317
  '429':
27056
27318
  $ref: '#/components/responses/TooManyRequestsResponse'
27319
+ security:
27320
+ - apiKeyAuth: []
27321
+ appKeyAuth: []
27322
+ - AuthZ:
27323
+ - slos_read
27057
27324
  summary: Get all SLO corrections
27058
27325
  tags:
27059
27326
  - Service Level Objective Corrections
27327
+ x-pagination:
27328
+ limitParam: limit
27329
+ pageOffsetParam: offset
27330
+ resultsPath: data
27060
27331
  post:
27061
27332
  description: Create an SLO Correction.
27062
27333
  operationId: CreateSLOCorrection
@@ -27094,6 +27365,11 @@ paths:
27094
27365
  description: SLO Not Found
27095
27366
  '429':
27096
27367
  $ref: '#/components/responses/TooManyRequestsResponse'
27368
+ security:
27369
+ - apiKeyAuth: []
27370
+ appKeyAuth: []
27371
+ - AuthZ:
27372
+ - slos_corrections
27097
27373
  summary: Create an SLO correction
27098
27374
  tags:
27099
27375
  - Service Level Objective Corrections
@@ -27268,6 +27544,11 @@ paths:
27268
27544
  description: Forbidden
27269
27545
  '429':
27270
27546
  $ref: '#/components/responses/TooManyRequestsResponse'
27547
+ security:
27548
+ - apiKeyAuth: []
27549
+ appKeyAuth: []
27550
+ - AuthZ:
27551
+ - slos_read
27271
27552
  summary: Search for SLOs
27272
27553
  tags:
27273
27554
  - Service Level Objectives
@@ -27321,6 +27602,11 @@ paths:
27321
27602
  description: Conflict
27322
27603
  '429':
27323
27604
  $ref: '#/components/responses/TooManyRequestsResponse'
27605
+ security:
27606
+ - apiKeyAuth: []
27607
+ appKeyAuth: []
27608
+ - AuthZ:
27609
+ - slos_write
27324
27610
  summary: Delete an SLO
27325
27611
  tags:
27326
27612
  - Service Level Objectives
@@ -27362,6 +27648,11 @@ paths:
27362
27648
  description: Not found
27363
27649
  '429':
27364
27650
  $ref: '#/components/responses/TooManyRequestsResponse'
27651
+ security:
27652
+ - apiKeyAuth: []
27653
+ appKeyAuth: []
27654
+ - AuthZ:
27655
+ - slos_read
27365
27656
  summary: Get an SLO's details
27366
27657
  tags:
27367
27658
  - Service Level Objectives
@@ -27409,6 +27700,11 @@ paths:
27409
27700
  description: Not Found
27410
27701
  '429':
27411
27702
  $ref: '#/components/responses/TooManyRequestsResponse'
27703
+ security:
27704
+ - apiKeyAuth: []
27705
+ appKeyAuth: []
27706
+ - AuthZ:
27707
+ - slos_write
27412
27708
  summary: Update an SLO
27413
27709
  tags:
27414
27710
  - Service Level Objectives
@@ -27451,6 +27747,11 @@ paths:
27451
27747
  description: Not Found
27452
27748
  '429':
27453
27749
  $ref: '#/components/responses/TooManyRequestsResponse'
27750
+ security:
27751
+ - apiKeyAuth: []
27752
+ appKeyAuth: []
27753
+ - AuthZ:
27754
+ - slos_read
27454
27755
  summary: Get Corrections For an SLO
27455
27756
  tags:
27456
27757
  - Service Level Objectives
@@ -27532,6 +27833,11 @@ paths:
27532
27833
  description: Not Found
27533
27834
  '429':
27534
27835
  $ref: '#/components/responses/TooManyRequestsResponse'
27836
+ security:
27837
+ - apiKeyAuth: []
27838
+ appKeyAuth: []
27839
+ - AuthZ:
27840
+ - slos_read
27535
27841
  summary: Get an SLO's history
27536
27842
  tags:
27537
27843
  - Service Level Objectives
@@ -27756,11 +28062,6 @@ paths:
27756
28062
  description: OK
27757
28063
  '429':
27758
28064
  $ref: '#/components/responses/TooManyRequestsResponse'
27759
- security:
27760
- - apiKeyAuth: []
27761
- appKeyAuth: []
27762
- - AuthZ:
27763
- - synthetics_default_settings_read
27764
28065
  summary: Get the default locations
27765
28066
  tags:
27766
28067
  - Synthetics
@@ -27772,14 +28073,19 @@ paths:
27772
28073
  - description: Used for pagination. The number of tests returned in the page.
27773
28074
  in: query
27774
28075
  name: page_size
28076
+ required: false
27775
28077
  schema:
27776
- type: string
28078
+ default: 100
28079
+ format: int64
28080
+ type: integer
27777
28081
  - description: Used for pagination. Which page you want to retrieve. Starts
27778
28082
  at zero.
27779
28083
  in: query
27780
28084
  name: page_number
28085
+ required: false
27781
28086
  schema:
27782
- type: string
28087
+ format: int64
28088
+ type: integer
27783
28089
  responses:
27784
28090
  '200':
27785
28091
  content:
@@ -27809,6 +28115,10 @@ paths:
27809
28115
  summary: Get the list of all Synthetic tests
27810
28116
  tags:
27811
28117
  - Synthetics
28118
+ x-pagination:
28119
+ limitParam: page_size
28120
+ pageParam: page_number
28121
+ resultsPath: tests
27812
28122
  /api/v1/synthetics/tests/api:
27813
28123
  post:
27814
28124
  description: Create a Synthetic API test.