datadog_api_client 2.12.0 → 2.14.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.
- checksums.yaml +4 -4
- data/.apigentools-info +6 -6
- data/.generator/conftest.py +7 -0
- data/.generator/poetry.lock +45 -75
- data/.generator/pyproject.toml +7 -7
- data/.generator/schemas/v1/openapi.yaml +257 -19
- data/.generator/schemas/v2/openapi.yaml +3020 -911
- data/.generator/src/generator/formatter.py +43 -32
- data/.generator/src/generator/openapi.py +4 -2
- data/.generator/src/generator/templates/api_client.j2 +81 -53
- data/.generator/src/generator/templates/configuration.j2 +21 -0
- data/.github/workflows/test_integration.yml +7 -1
- data/.pre-commit-config.yaml +4 -4
- data/CHANGELOG.md +62 -0
- data/README.md +23 -0
- data/examples/v1/azure-integration/CreateAzureIntegration.rb +3 -0
- data/examples/v1/azure-integration/DeleteAzureIntegration.rb +3 -0
- data/examples/v1/azure-integration/UpdateAzureHostFilters.rb +3 -0
- data/examples/v1/azure-integration/UpdateAzureIntegration.rb +3 -0
- data/examples/v1/dashboards/CreateDashboard_1284514532.rb +43 -0
- data/examples/v1/dashboards/CreateDashboard_2261785072.rb +47 -0
- data/examples/v1/dashboards/CreateDashboard_252716965.rb +6 -0
- data/examples/v1/dashboards/CreateDashboard_3513586382.rb +74 -0
- data/examples/v1/dashboards/CreateDashboard_3562282606.rb +1 -0
- data/examples/v1/dashboards/DeletePublicDashboardInvitation.rb +3 -3
- data/examples/v1/organizations/UpdateOrg.rb +1 -1
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1487281163.rb +1 -0
- data/examples/v1/users/CreateUser.rb +1 -1
- data/examples/v1/users/CreateUser_266604071.rb +13 -0
- data/examples/v1/users/UpdateUser.rb +1 -1
- data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent.rb +3 -0
- data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent_129899466.rb +3 -0
- data/examples/v2/confluent-cloud/CreateConfluentAccount.rb +1 -0
- data/examples/v2/confluent-cloud/CreateConfluentResource.rb +1 -0
- data/examples/v2/confluent-cloud/UpdateConfluentResource.rb +1 -0
- data/examples/v2/downtimes/CancelDowntime.rb +11 -0
- data/examples/v2/downtimes/CreateDowntime.rb +26 -0
- data/examples/v2/downtimes/GetDowntime.rb +11 -0
- data/examples/v2/downtimes/ListDowntimes.rb +8 -0
- data/examples/v2/downtimes/ListMonitorDowntimes.rb +8 -0
- data/examples/v2/downtimes/ListMonitorDowntimes_128979780.rb +8 -0
- data/examples/v2/downtimes/UpdateDowntime.rb +21 -0
- data/examples/v2/logs/AggregateLogs_2955613758.rb +1 -1
- data/examples/v2/logs/ListLogsGet_2034110533.rb +3 -1
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_1092490364.rb +10 -0
- data/examples/v2/spans/AggregateSpans.rb +25 -0
- data/examples/v2/spans/ListSpans.rb +25 -0
- data/examples/v2/spans/ListSpansGet.rb +5 -0
- data/examples/v2/spans/ListSpansGet_1130763422.rb +8 -0
- data/examples/v2/spans/ListSpans_3495563906.rb +25 -0
- data/examples/v2/teams/CreateTeam.rb +2 -2
- data/examples/v2/teams/CreateTeam_252121814.rb +24 -0
- data/examples/v2/teams/GetUserMemberships.rb +8 -0
- data/examples/v2/teams/UpdateTeam.rb +9 -0
- data/lib/datadog_api_client/api_client.rb +81 -53
- data/lib/datadog_api_client/configuration.rb +28 -0
- data/lib/datadog_api_client/inflector.rb +97 -1
- data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +2 -2
- data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +10 -10
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +3 -3
- data/lib/datadog_api_client/v1/models/azure_account.rb +32 -1
- data/lib/datadog_api_client/v1/models/change_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/distribution_widget_definition.rb +13 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_cloud_cost_data_source.rb +26 -0
- data/lib/datadog_api_client/v1/models/formula_and_function_cloud_cost_query_definition.rb +150 -0
- data/lib/datadog_api_client/v1/models/formula_and_function_query_definition.rb +2 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_response_format.rb +2 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_slo_query_definition.rb +11 -1
- data/lib/datadog_api_client/v1/models/geomap_widget_request.rb +24 -2
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +3 -0
- data/lib/datadog_api_client/v1/models/ip_prefixes_remote_configuration.rb +94 -0
- data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -1
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +6 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +61 -1
- data/lib/datadog_api_client/v1/models/organization_settings.rb +8 -0
- data/lib/datadog_api_client/v1/models/query_value_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/scatterplot_table_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/sunburst_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +11 -1
- data/lib/datadog_api_client/v1/models/table_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/timeseries_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/toplist_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/tree_map_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/usage_ci_visibility_hour.rb +12 -1
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +24 -4
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +24 -4
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +24 -4
- data/lib/datadog_api_client/v1/models/user.rb +8 -0
- data/lib/datadog_api_client/v1/models/widget_comparator.rb +1 -0
- data/lib/datadog_api_client/v1/models/widget_display_type.rb +1 -0
- data/lib/datadog_api_client/v2/api/ci_visibility_pipelines_api.rb +11 -5
- data/lib/datadog_api_client/v2/api/downtimes_api.rb +462 -0
- data/lib/datadog_api_client/v2/api/ip_allowlist_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/logs_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/metrics_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/rum_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +3 -3
- data/lib/datadog_api_client/v2/api/spans_api.rb +294 -0
- data/lib/datadog_api_client/v2/api/spans_metrics_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/teams_api.rb +65 -0
- data/lib/datadog_api_client/v2/models/application_key_create_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/application_key_update_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/audit_logs_event_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/ci_app_event_attributes.rb +9 -21
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_event.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_event_attributes.rb +102 -0
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_event_pipeline.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_level.rb +30 -0
- data/lib/datadog_api_client/v2/models/ci_app_pipelines_query_filter.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_test_level.rb +29 -0
- data/lib/datadog_api_client/v2/models/ci_app_tests_analytics_aggregate_response.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_tests_query_filter.rb +1 -1
- data/lib/datadog_api_client/v2/models/cloud_configuration_rule_compliance_signal_options.rb +25 -1
- data/lib/datadog_api_client/v2/models/cloud_configuration_rule_create_payload.rb +13 -1
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_attributes.rb +41 -1
- data/lib/datadog_api_client/v2/models/confluent_account_resource_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/confluent_resource_request_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/confluent_resource_response_attributes.rb +21 -1
- data/lib/datadog_api_client/v2/models/dashboard_list_item.rb +36 -1
- data/lib/datadog_api_client/v2/models/downtime_create_request.rb +98 -0
- data/lib/datadog_api_client/v2/models/downtime_create_request_attributes.rb +194 -0
- data/lib/datadog_api_client/v2/models/downtime_create_request_data.rb +119 -0
- data/lib/datadog_api_client/v2/models/downtime_included_monitor_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/downtime_meta.rb +80 -0
- data/lib/datadog_api_client/v2/models/downtime_meta_page.rb +80 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_identifier.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_identifier_id.rb +98 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_identifier_tags.rb +107 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_included_attributes.rb +80 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_included_item.rb +100 -0
- data/lib/datadog_api_client/v2/models/downtime_notify_end_state_actions.rb +27 -0
- data/lib/datadog_api_client/v2/models/downtime_notify_end_state_types.rb +28 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships.rb +90 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_created_by.rb +88 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_created_by_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_monitor.rb +88 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_monitor_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/downtime_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/downtime_response.rb +95 -0
- data/lib/datadog_api_client/v2/models/downtime_response_attributes.rb +208 -0
- data/lib/datadog_api_client/v2/models/downtime_response_data.rb +110 -0
- data/lib/datadog_api_client/v2/models/downtime_response_included_item.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_create_request.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_current_downtime_response.rb +100 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_one_time_create_update_request.rb +101 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_one_time_response.rb +116 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrence_create_update_request.rb +143 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrence_response.rb +106 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrences_create_request.rb +110 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrences_response.rb +131 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrences_update_request.rb +92 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_response.rb +65 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_update_request.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_status.rb +29 -0
- data/lib/datadog_api_client/v2/models/downtime_update_request.rb +98 -0
- data/lib/datadog_api_client/v2/models/downtime_update_request_attributes.rb +165 -0
- data/lib/datadog_api_client/v2/models/{team_data.rb → downtime_update_request_data.rb} +9 -9
- data/lib/datadog_api_client/v2/models/event_response_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/events_group_by_sort.rb +1 -1
- data/lib/datadog_api_client/v2/models/events_response_metadata.rb +11 -1
- data/lib/datadog_api_client/v2/models/formula_limit.rb +1 -0
- data/lib/datadog_api_client/v2/models/full_application_key_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/list_downtimes_response.rb +104 -0
- data/lib/datadog_api_client/v2/models/logs_aggregate_request.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_aggregate_request_page.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_group_by.rb +3 -2
- data/lib/datadog_api_client/v2/models/logs_group_by_histogram.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_list_request.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_query_options.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_response_metadata_page.rb +1 -1
- data/lib/datadog_api_client/v2/models/metrics_aggregator.rb +1 -1
- data/lib/datadog_api_client/v2/models/metrics_scalar_query.rb +1 -1
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_response.rb +92 -0
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_response_attributes.rb +120 -0
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_response_data.rb +108 -0
- data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap.rb +14 -4
- data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/partial_application_key_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/query_formula.rb +1 -0
- data/lib/datadog_api_client/v2/models/relationship_to_team_links.rb +14 -4
- data/lib/datadog_api_client/v2/models/relationship_to_user_team_permission.rb +14 -4
- data/lib/datadog_api_client/v2/models/restriction_policy_binding.rb +2 -1
- data/lib/datadog_api_client/v2/models/rum_application_list.rb +11 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_metadata_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_response.rb +80 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_rule_response_query.rb +26 -2
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_state_update_data.rb +24 -4
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_triage_update_data.rb +24 -4
- data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb +1 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_triage_user.rb +11 -1
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_get_config_response_data.rb +11 -1
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_meta.rb +11 -1
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_standard_pattern_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/service_definition_data.rb +11 -1
- data/lib/datadog_api_client/v2/models/service_definition_meta.rb +36 -4
- data/lib/datadog_api_client/v2/models/service_definition_meta_warnings.rb +100 -0
- data/lib/datadog_api_client/v2/models/span.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_attributes.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_value.rb +64 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_value_timeseries_point.rb +90 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_request.rb +80 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_request_attributes.rb +115 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_response.rb +92 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_response_metadata.rb +113 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_response_status.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_sort.rb +110 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_sort_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_aggregation_function.rb +37 -0
- data/lib/datadog_api_client/v2/models/spans_attributes.rb +244 -0
- data/lib/datadog_api_client/v2/models/spans_compute.rb +129 -0
- data/lib/datadog_api_client/v2/models/spans_compute_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_group_by.rb +149 -0
- data/lib/datadog_api_client/v2/models/spans_group_by_histogram.rb +143 -0
- data/lib/datadog_api_client/v2/models/spans_group_by_missing.rb +63 -0
- data/lib/datadog_api_client/v2/models/spans_group_by_total.rb +64 -0
- data/lib/datadog_api_client/v2/models/spans_list_request.rb +80 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_attributes.rb +111 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_page.rb +108 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_list_response.rb +102 -0
- data/lib/datadog_api_client/v2/models/spans_list_response_links.rb +81 -0
- data/lib/datadog_api_client/v2/models/spans_list_response_metadata.rb +123 -0
- data/lib/datadog_api_client/v2/models/spans_query_filter.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_query_options.rb +91 -0
- data/lib/datadog_api_client/v2/models/spans_response_metadata_page.rb +81 -0
- data/lib/datadog_api_client/v2/models/spans_sort.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_sort_order.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_warning.rb +100 -0
- data/lib/datadog_api_client/v2/models/team_attributes.rb +50 -4
- data/lib/datadog_api_client/v2/models/team_create_attributes.rb +57 -4
- data/lib/datadog_api_client/v2/models/team_relationships_links.rb +80 -0
- data/lib/datadog_api_client/v2/models/team_response.rb +1 -1
- data/lib/datadog_api_client/v2/models/team_update_attributes.rb +57 -4
- data/lib/datadog_api_client/v2/models/teams_response.rb +24 -4
- data/lib/datadog_api_client/v2/models/teams_response_links.rb +129 -0
- data/lib/datadog_api_client/v2/models/teams_response_meta.rb +80 -0
- data/lib/datadog_api_client/v2/models/teams_response_meta_pagination.rb +150 -0
- data/lib/datadog_api_client/v2/models/usage_attributes_object.rb +11 -1
- data/lib/datadog_api_client/v2/models/user_invitation_response_data.rb +11 -1
- data/lib/datadog_api_client/v2/models/user_teams_response.rb +24 -4
- data/lib/datadog_api_client/version.rb +1 -1
- data/spec/configuration_spec.rb +17 -0
- data/spec/retry_spec.rb +44 -0
- metadata +119 -3
|
@@ -352,7 +352,6 @@ components:
|
|
|
352
352
|
type: array
|
|
353
353
|
type: object
|
|
354
354
|
AccessRole:
|
|
355
|
-
default: st
|
|
356
355
|
description: The access role of the user. Options are **st** (standard user),
|
|
357
356
|
**adm** (admin user), or **ro** (read-only user).
|
|
358
357
|
enum:
|
|
@@ -360,7 +359,8 @@ components:
|
|
|
360
359
|
- adm
|
|
361
360
|
- ro
|
|
362
361
|
- ERROR
|
|
363
|
-
example:
|
|
362
|
+
example: ro
|
|
363
|
+
nullable: true
|
|
364
364
|
type: string
|
|
365
365
|
x-enum-varnames:
|
|
366
366
|
- STANDARD
|
|
@@ -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:
|
|
@@ -2466,6 +2487,38 @@ components:
|
|
|
2466
2487
|
- service
|
|
2467
2488
|
- stat
|
|
2468
2489
|
type: object
|
|
2490
|
+
FormulaAndFunctionCloudCostDataSource:
|
|
2491
|
+
description: Data source for Cloud Cost queries.
|
|
2492
|
+
enum:
|
|
2493
|
+
- cloud_cost
|
|
2494
|
+
example: cloud_cost
|
|
2495
|
+
type: string
|
|
2496
|
+
x-enum-varnames:
|
|
2497
|
+
- CLOUD_COST
|
|
2498
|
+
FormulaAndFunctionCloudCostQueryDefinition:
|
|
2499
|
+
description: A formula and functions Cloud Cost query.
|
|
2500
|
+
example:
|
|
2501
|
+
data_source: cloud_cost
|
|
2502
|
+
name: query1
|
|
2503
|
+
query: sum:aws.cost.amortized{*}
|
|
2504
|
+
properties:
|
|
2505
|
+
aggregator:
|
|
2506
|
+
$ref: '#/components/schemas/WidgetAggregator'
|
|
2507
|
+
data_source:
|
|
2508
|
+
$ref: '#/components/schemas/FormulaAndFunctionCloudCostDataSource'
|
|
2509
|
+
name:
|
|
2510
|
+
description: Name of the query for use in formulas.
|
|
2511
|
+
example: my_query
|
|
2512
|
+
type: string
|
|
2513
|
+
query:
|
|
2514
|
+
description: Query for Cloud Cost data.
|
|
2515
|
+
example: ''
|
|
2516
|
+
type: string
|
|
2517
|
+
required:
|
|
2518
|
+
- data_source
|
|
2519
|
+
- query
|
|
2520
|
+
- name
|
|
2521
|
+
type: object
|
|
2469
2522
|
FormulaAndFunctionEventAggregation:
|
|
2470
2523
|
description: Aggregation methods for event platform queries.
|
|
2471
2524
|
enum:
|
|
@@ -2729,17 +2782,20 @@ components:
|
|
|
2729
2782
|
- $ref: '#/components/schemas/FormulaAndFunctionApmDependencyStatsQueryDefinition'
|
|
2730
2783
|
- $ref: '#/components/schemas/FormulaAndFunctionApmResourceStatsQueryDefinition'
|
|
2731
2784
|
- $ref: '#/components/schemas/FormulaAndFunctionSLOQueryDefinition'
|
|
2732
|
-
|
|
2785
|
+
- $ref: '#/components/schemas/FormulaAndFunctionCloudCostQueryDefinition'
|
|
2733
2786
|
FormulaAndFunctionResponseFormat:
|
|
2734
|
-
description: Timeseries or
|
|
2787
|
+
description: Timeseries, scalar, or event list response. Event list response
|
|
2788
|
+
formats are supported by Geomap widgets.
|
|
2735
2789
|
enum:
|
|
2736
2790
|
- timeseries
|
|
2737
2791
|
- scalar
|
|
2792
|
+
- event_list
|
|
2738
2793
|
example: timeseries
|
|
2739
2794
|
type: string
|
|
2740
2795
|
x-enum-varnames:
|
|
2741
2796
|
- TIMESERIES
|
|
2742
2797
|
- SCALAR
|
|
2798
|
+
- EVENT_LIST
|
|
2743
2799
|
FormulaAndFunctionSLODataSource:
|
|
2744
2800
|
description: Data source for SLO measures queries.
|
|
2745
2801
|
enum:
|
|
@@ -2779,6 +2835,7 @@ components:
|
|
|
2779
2835
|
FormulaAndFunctionSLOQueryDefinition:
|
|
2780
2836
|
description: A formula and functions metrics query.
|
|
2781
2837
|
example:
|
|
2838
|
+
additional_query_filters: '*'
|
|
2782
2839
|
data_source: slo
|
|
2783
2840
|
group_mode: overall
|
|
2784
2841
|
measure: good_events
|
|
@@ -2786,6 +2843,10 @@ components:
|
|
|
2786
2843
|
slo_id: '12345678910'
|
|
2787
2844
|
slo_query_type: metric
|
|
2788
2845
|
properties:
|
|
2846
|
+
additional_query_filters:
|
|
2847
|
+
description: Additional filters applied to the SLO query.
|
|
2848
|
+
example: host:host_a,env:prod
|
|
2849
|
+
type: string
|
|
2789
2850
|
data_source:
|
|
2790
2851
|
$ref: '#/components/schemas/FormulaAndFunctionSLODataSource'
|
|
2791
2852
|
group_mode:
|
|
@@ -3127,6 +3188,16 @@ components:
|
|
|
3127
3188
|
GeomapWidgetRequest:
|
|
3128
3189
|
description: An updated geomap widget.
|
|
3129
3190
|
properties:
|
|
3191
|
+
columns:
|
|
3192
|
+
description: Widget columns.
|
|
3193
|
+
example:
|
|
3194
|
+
- field: timestamp
|
|
3195
|
+
width: auto
|
|
3196
|
+
- field: content
|
|
3197
|
+
width: full
|
|
3198
|
+
items:
|
|
3199
|
+
$ref: '#/components/schemas/ListStreamColumn'
|
|
3200
|
+
type: array
|
|
3130
3201
|
formulas:
|
|
3131
3202
|
description: List of formulas that operate on queries.
|
|
3132
3203
|
items:
|
|
@@ -3142,6 +3213,8 @@ components:
|
|
|
3142
3213
|
items:
|
|
3143
3214
|
$ref: '#/components/schemas/FormulaAndFunctionQueryDefinition'
|
|
3144
3215
|
type: array
|
|
3216
|
+
query:
|
|
3217
|
+
$ref: '#/components/schemas/ListStreamQuery'
|
|
3145
3218
|
response_format:
|
|
3146
3219
|
$ref: '#/components/schemas/FormulaAndFunctionResponseFormat'
|
|
3147
3220
|
rum_query:
|
|
@@ -3812,10 +3885,12 @@ components:
|
|
|
3812
3885
|
- api_usage
|
|
3813
3886
|
- apm_fargate_usage
|
|
3814
3887
|
- apm_host_usage
|
|
3888
|
+
- apm_usm_usage
|
|
3815
3889
|
- appsec_fargate_usage
|
|
3816
3890
|
- appsec_usage
|
|
3817
3891
|
- browser_usage
|
|
3818
3892
|
- container_excl_agent_usage
|
|
3893
|
+
- ci_visibility_itr_usage
|
|
3819
3894
|
- container_usage
|
|
3820
3895
|
- cspm_containers_usage
|
|
3821
3896
|
- cspm_hosts_usage
|
|
@@ -3842,15 +3917,18 @@ components:
|
|
|
3842
3917
|
- estimated_rum_sessions_usage
|
|
3843
3918
|
- universal_service_monitoring_usage
|
|
3844
3919
|
- vuln_management_hosts_usage
|
|
3920
|
+
- sds_scanned_bytes_usage
|
|
3845
3921
|
type: string
|
|
3846
3922
|
x-enum-varnames:
|
|
3847
3923
|
- API_USAGE
|
|
3848
3924
|
- APM_FARGATE_USAGE
|
|
3849
3925
|
- APM_HOST_USAGE
|
|
3926
|
+
- APM_USM_USAGE
|
|
3850
3927
|
- APPSEC_FARGATE_USAGE
|
|
3851
3928
|
- APPSEC_USAGE
|
|
3852
3929
|
- BROWSER_USAGE
|
|
3853
3930
|
- CONTAINER_EXCL_AGENT_USAGE
|
|
3931
|
+
- CI_VISIBILITY_ITR_USAGE
|
|
3854
3932
|
- CONTAINER_USAGE
|
|
3855
3933
|
- CSPM_CONTAINERS_USAGE
|
|
3856
3934
|
- CSPM_HOSTS_USAGE
|
|
@@ -3877,6 +3955,7 @@ components:
|
|
|
3877
3955
|
- ESTIMATED_RUM_SESSIONS_USAGE
|
|
3878
3956
|
- UNIVERSAL_SERVICE_MONITORING_USAGE
|
|
3879
3957
|
- VULN_MANAGEMENT_HOSTS_USAGE
|
|
3958
|
+
- SDS_SCANNED_BYTES_USAGE
|
|
3880
3959
|
IFrameWidgetDefinition:
|
|
3881
3960
|
description: The iframe widget allows you to embed a portion of any other web
|
|
3882
3961
|
page on your dashboard. Only available on FREE layout dashboards.
|
|
@@ -3996,6 +4075,22 @@ components:
|
|
|
3996
4075
|
type: string
|
|
3997
4076
|
type: array
|
|
3998
4077
|
type: object
|
|
4078
|
+
IPPrefixesRemoteConfiguration:
|
|
4079
|
+
description: Available prefix information for the Remote Configuration endpoints.
|
|
4080
|
+
properties:
|
|
4081
|
+
prefixes_ipv4:
|
|
4082
|
+
description: List of IPv4 prefixes.
|
|
4083
|
+
items:
|
|
4084
|
+
description: IPv4 prefix
|
|
4085
|
+
type: string
|
|
4086
|
+
type: array
|
|
4087
|
+
prefixes_ipv6:
|
|
4088
|
+
description: List of IPv6 prefixes.
|
|
4089
|
+
items:
|
|
4090
|
+
description: IPv6 prefix
|
|
4091
|
+
type: string
|
|
4092
|
+
type: array
|
|
4093
|
+
type: object
|
|
3999
4094
|
IPPrefixesSynthetics:
|
|
4000
4095
|
description: Available prefix information for the Synthetics endpoints.
|
|
4001
4096
|
properties:
|
|
@@ -4082,6 +4177,8 @@ components:
|
|
|
4082
4177
|
$ref: '#/components/schemas/IPPrefixesOrchestrator'
|
|
4083
4178
|
process:
|
|
4084
4179
|
$ref: '#/components/schemas/IPPrefixesProcess'
|
|
4180
|
+
remote-configuration:
|
|
4181
|
+
$ref: '#/components/schemas/IPPrefixesRemoteConfiguration'
|
|
4085
4182
|
synthetics:
|
|
4086
4183
|
$ref: '#/components/schemas/IPPrefixesSynthetics'
|
|
4087
4184
|
synthetics-private-locations:
|
|
@@ -5492,7 +5589,6 @@ components:
|
|
|
5492
5589
|
- $ref: '#/components/schemas/LogsLookupProcessor'
|
|
5493
5590
|
- $ref: '#/components/schemas/ReferenceTableLogsLookupProcessor'
|
|
5494
5591
|
- $ref: '#/components/schemas/LogsTraceRemapper'
|
|
5495
|
-
type: object
|
|
5496
5592
|
LogsQueryCompute:
|
|
5497
5593
|
description: Define computation for a log query.
|
|
5498
5594
|
properties:
|
|
@@ -6384,7 +6480,6 @@ components:
|
|
|
6384
6480
|
description: A formula and function query.
|
|
6385
6481
|
oneOf:
|
|
6386
6482
|
- $ref: '#/components/schemas/MonitorFormulaAndFunctionEventQueryDefinition'
|
|
6387
|
-
type: object
|
|
6388
6483
|
MonitorGroupSearchResponse:
|
|
6389
6484
|
description: The response of a monitor group search.
|
|
6390
6485
|
example:
|
|
@@ -7333,10 +7428,14 @@ components:
|
|
|
7333
7428
|
- appsec_fargate_percentage
|
|
7334
7429
|
- apm_host_usage
|
|
7335
7430
|
- apm_host_percentage
|
|
7431
|
+
- apm_usm_usage
|
|
7432
|
+
- apm_usm_percentage
|
|
7336
7433
|
- appsec_usage
|
|
7337
7434
|
- appsec_percentage
|
|
7338
7435
|
- browser_usage
|
|
7339
7436
|
- browser_percentage
|
|
7437
|
+
- ci_visibility_itr_usage
|
|
7438
|
+
- ci_visibility_itr_percentage
|
|
7340
7439
|
- container_excl_agent_usage
|
|
7341
7440
|
- container_excl_agent_percentage
|
|
7342
7441
|
- container_usage
|
|
@@ -7391,6 +7490,8 @@ components:
|
|
|
7391
7490
|
- universal_service_monitoring_percentage
|
|
7392
7491
|
- vuln_management_hosts_usage
|
|
7393
7492
|
- vuln_management_hosts_percentage
|
|
7493
|
+
- sds_scanned_bytes_usage
|
|
7494
|
+
- sds_scanned_bytes_percentage
|
|
7394
7495
|
- '*'
|
|
7395
7496
|
type: string
|
|
7396
7497
|
x-enum-varnames:
|
|
@@ -7402,10 +7503,14 @@ components:
|
|
|
7402
7503
|
- APPSEC_FARGATE_PERCENTAGE
|
|
7403
7504
|
- APM_HOST_USAGE
|
|
7404
7505
|
- APM_HOST_PERCENTAGE
|
|
7506
|
+
- APM_USM_USAGE
|
|
7507
|
+
- APM_USM_PERCENTAGE
|
|
7405
7508
|
- APPSEC_USAGE
|
|
7406
7509
|
- APPSEC_PERCENTAGE
|
|
7407
7510
|
- BROWSER_USAGE
|
|
7408
7511
|
- BROWSER_PERCENTAGE
|
|
7512
|
+
- CI_VISIBILITY_ITR_USAGE
|
|
7513
|
+
- CI_VISIBILITY_ITR_PERCENTAGE
|
|
7409
7514
|
- CONTAINER_EXCL_AGENT_USAGE
|
|
7410
7515
|
- CONTAINER_EXCL_AGENT_PERCENTAGE
|
|
7411
7516
|
- CONTAINER_USAGE
|
|
@@ -7460,6 +7565,8 @@ components:
|
|
|
7460
7565
|
- UNIVERSAL_SERVICE_MONITORING_PERCENTAGE
|
|
7461
7566
|
- VULN_MANAGEMENT_HOSTS_USAGE
|
|
7462
7567
|
- VULN_MANAGEMENT_HOSTS_PERCENTAGE
|
|
7568
|
+
- SDS_SCANNED_BYTES_USAGE
|
|
7569
|
+
- SDS_SCANNED_BYTES_PERCENTAGE
|
|
7463
7570
|
- ALL
|
|
7464
7571
|
MonthlyUsageAttributionValues:
|
|
7465
7572
|
description: Fields in Usage Summary by tag(s).
|
|
@@ -7488,6 +7595,15 @@ components:
|
|
|
7488
7595
|
description: The APM host usage by tag(s).
|
|
7489
7596
|
format: double
|
|
7490
7597
|
type: number
|
|
7598
|
+
apm_usm_percentage:
|
|
7599
|
+
description: The percentage of APM and Universal Service Monitoring host
|
|
7600
|
+
usage by tag(s).
|
|
7601
|
+
format: double
|
|
7602
|
+
type: number
|
|
7603
|
+
apm_usm_usage:
|
|
7604
|
+
description: The APM and Universal Service Monitoring host usage by tag(s).
|
|
7605
|
+
format: double
|
|
7606
|
+
type: number
|
|
7491
7607
|
appsec_fargate_percentage:
|
|
7492
7608
|
description: The percentage of Application Security Monitoring ECS Fargate
|
|
7493
7609
|
task usage by tag(s).
|
|
@@ -7515,6 +7631,15 @@ components:
|
|
|
7515
7631
|
description: The synthetic browser test usage by tag(s).
|
|
7516
7632
|
format: double
|
|
7517
7633
|
type: number
|
|
7634
|
+
ci_visibility_itr_percentage:
|
|
7635
|
+
description: The percentage of Git committers for Intelligent Test Runner
|
|
7636
|
+
usage by tag(s).
|
|
7637
|
+
format: double
|
|
7638
|
+
type: number
|
|
7639
|
+
ci_visibility_itr_usage:
|
|
7640
|
+
description: The Git committers for Intelligent Test Runner usage by tag(s).
|
|
7641
|
+
format: double
|
|
7642
|
+
type: number
|
|
7518
7643
|
container_excl_agent_percentage:
|
|
7519
7644
|
description: The percentage of container usage without the Datadog Agent
|
|
7520
7645
|
by tag(s).
|
|
@@ -7709,6 +7834,14 @@ components:
|
|
|
7709
7834
|
description: The profiled hosts usage by tag(s).
|
|
7710
7835
|
format: double
|
|
7711
7836
|
type: number
|
|
7837
|
+
sds_scanned_bytes_percentage:
|
|
7838
|
+
description: The percentage of Sensitive Data Scanner usage by tag(s).
|
|
7839
|
+
format: double
|
|
7840
|
+
type: number
|
|
7841
|
+
sds_scanned_bytes_usage:
|
|
7842
|
+
description: The total Sensitive Data Scanner usage by tag(s).
|
|
7843
|
+
format: double
|
|
7844
|
+
type: number
|
|
7712
7845
|
snmp_percentage:
|
|
7713
7846
|
description: The percentage of network device usage by tag(s).
|
|
7714
7847
|
format: double
|
|
@@ -7880,7 +8013,6 @@ components:
|
|
|
7880
8013
|
- $ref: '#/components/schemas/NotebookHeatMapCellAttributes'
|
|
7881
8014
|
- $ref: '#/components/schemas/NotebookDistributionCellAttributes'
|
|
7882
8015
|
- $ref: '#/components/schemas/NotebookLogStreamCellAttributes'
|
|
7883
|
-
type: object
|
|
7884
8016
|
NotebookCellResourceType:
|
|
7885
8017
|
default: notebook_cells
|
|
7886
8018
|
description: Type of the Notebook Cell resource.
|
|
@@ -7936,7 +8068,6 @@ components:
|
|
|
7936
8068
|
- $ref: '#/components/schemas/NotebookHeatMapCellAttributes'
|
|
7937
8069
|
- $ref: '#/components/schemas/NotebookDistributionCellAttributes'
|
|
7938
8070
|
- $ref: '#/components/schemas/NotebookLogStreamCellAttributes'
|
|
7939
|
-
type: object
|
|
7940
8071
|
NotebookCellTime:
|
|
7941
8072
|
description: Timeframe for the notebook cell. When 'null', the notebook global
|
|
7942
8073
|
time is used.
|
|
@@ -7991,7 +8122,6 @@ components:
|
|
|
7991
8122
|
- $ref: '#/components/schemas/NotebookHeatMapCellAttributes'
|
|
7992
8123
|
- $ref: '#/components/schemas/NotebookDistributionCellAttributes'
|
|
7993
8124
|
- $ref: '#/components/schemas/NotebookLogStreamCellAttributes'
|
|
7994
|
-
type: object
|
|
7995
8125
|
NotebookCreateData:
|
|
7996
8126
|
description: The data for a notebook create request.
|
|
7997
8127
|
properties:
|
|
@@ -8091,7 +8221,6 @@ components:
|
|
|
8091
8221
|
oneOf:
|
|
8092
8222
|
- $ref: '#/components/schemas/NotebookRelativeTime'
|
|
8093
8223
|
- $ref: '#/components/schemas/NotebookAbsoluteTime'
|
|
8094
|
-
type: object
|
|
8095
8224
|
NotebookGraphSize:
|
|
8096
8225
|
description: The size of the graph.
|
|
8097
8226
|
enum:
|
|
@@ -8391,7 +8520,6 @@ components:
|
|
|
8391
8520
|
oneOf:
|
|
8392
8521
|
- $ref: '#/components/schemas/NotebookCellCreateRequest'
|
|
8393
8522
|
- $ref: '#/components/schemas/NotebookCellUpdateRequest'
|
|
8394
|
-
type: object
|
|
8395
8523
|
NotebookUpdateData:
|
|
8396
8524
|
description: The data for a notebook update request.
|
|
8397
8525
|
properties:
|
|
@@ -11298,6 +11426,7 @@ components:
|
|
|
11298
11426
|
- name
|
|
11299
11427
|
- thresholds
|
|
11300
11428
|
- type
|
|
11429
|
+
type: object
|
|
11301
11430
|
ServiceLevelObjectiveQuery:
|
|
11302
11431
|
description: 'A metric-based SLO. **Required if type is `metric`**. Note that
|
|
11303
11432
|
Datadog only allows the sum by aggregator
|
|
@@ -11426,6 +11555,7 @@ components:
|
|
|
11426
11555
|
- name
|
|
11427
11556
|
- thresholds
|
|
11428
11557
|
- type
|
|
11558
|
+
type: object
|
|
11429
11559
|
ServiceMapWidgetDefinition:
|
|
11430
11560
|
description: This widget displays a map of a service to all of the services
|
|
11431
11561
|
that call it, and all of the services that it calls.
|
|
@@ -11955,7 +12085,6 @@ components:
|
|
|
11955
12085
|
oneOf:
|
|
11956
12086
|
- $ref: '#/components/schemas/SunburstWidgetLegendTable'
|
|
11957
12087
|
- $ref: '#/components/schemas/SunburstWidgetLegendInlineAutomatic'
|
|
11958
|
-
type: object
|
|
11959
12088
|
SunburstWidgetLegendInlineAutomatic:
|
|
11960
12089
|
description: Configuration of inline or automatic legends.
|
|
11961
12090
|
properties:
|
|
@@ -11969,6 +12098,7 @@ components:
|
|
|
11969
12098
|
$ref: '#/components/schemas/SunburstWidgetLegendInlineAutomaticType'
|
|
11970
12099
|
required:
|
|
11971
12100
|
- type
|
|
12101
|
+
type: object
|
|
11972
12102
|
SunburstWidgetLegendInlineAutomaticType:
|
|
11973
12103
|
description: Whether to show the legend inline or let it be automatically generated.
|
|
11974
12104
|
enum:
|
|
@@ -11986,6 +12116,7 @@ components:
|
|
|
11986
12116
|
$ref: '#/components/schemas/SunburstWidgetLegendTableType'
|
|
11987
12117
|
required:
|
|
11988
12118
|
- type
|
|
12119
|
+
type: object
|
|
11989
12120
|
SunburstWidgetLegendTableType:
|
|
11990
12121
|
description: Whether or not to show a table legend.
|
|
11991
12122
|
enum:
|
|
@@ -12354,7 +12485,6 @@ components:
|
|
|
12354
12485
|
- $ref: '#/components/schemas/SyntheticsAssertionTarget'
|
|
12355
12486
|
- $ref: '#/components/schemas/SyntheticsAssertionJSONPathTarget'
|
|
12356
12487
|
- $ref: '#/components/schemas/SyntheticsAssertionXPathTarget'
|
|
12357
|
-
type: object
|
|
12358
12488
|
SyntheticsAssertionJSONPathOperator:
|
|
12359
12489
|
description: Assertion operator to apply.
|
|
12360
12490
|
enum:
|
|
@@ -12534,7 +12664,6 @@ components:
|
|
|
12534
12664
|
- $ref: '#/components/schemas/SyntheticsBasicAuthDigest'
|
|
12535
12665
|
- $ref: '#/components/schemas/SyntheticsBasicAuthOauthClient'
|
|
12536
12666
|
- $ref: '#/components/schemas/SyntheticsBasicAuthOauthROP'
|
|
12537
|
-
type: object
|
|
12538
12667
|
SyntheticsBasicAuthDigest:
|
|
12539
12668
|
description: Object to handle digest authentication when performing the test.
|
|
12540
12669
|
properties:
|
|
@@ -14573,6 +14702,9 @@ components:
|
|
|
14573
14702
|
maximum: 10
|
|
14574
14703
|
minimum: 0
|
|
14575
14704
|
type: integer
|
|
14705
|
+
persistCookies:
|
|
14706
|
+
description: Persist cookies across redirects.
|
|
14707
|
+
type: boolean
|
|
14576
14708
|
port:
|
|
14577
14709
|
description: Port to use when performing the test.
|
|
14578
14710
|
format: int64
|
|
@@ -16270,6 +16402,13 @@ components:
|
|
|
16270
16402
|
format: int64
|
|
16271
16403
|
nullable: true
|
|
16272
16404
|
type: integer
|
|
16405
|
+
ci_visibility_itr_committers:
|
|
16406
|
+
description: Shows the total count of all active Git committers for Intelligent
|
|
16407
|
+
Test Runner in the current month. A committer is active if they commit
|
|
16408
|
+
at least 3 times in a given month.
|
|
16409
|
+
format: int64
|
|
16410
|
+
nullable: true
|
|
16411
|
+
type: integer
|
|
16273
16412
|
ci_visibility_pipeline_committers:
|
|
16274
16413
|
description: Shows the total count of all active Git committers for Pipelines
|
|
16275
16414
|
in the current month. A committer is active if they commit at least 3
|
|
@@ -17481,6 +17620,11 @@ components:
|
|
|
17481
17620
|
the current month for all organizations.
|
|
17482
17621
|
format: int64
|
|
17483
17622
|
type: integer
|
|
17623
|
+
ci_visibility_itr_committers_hwm:
|
|
17624
|
+
description: Shows the high-water mark of all CI visibility intelligent
|
|
17625
|
+
test runner committers over all hours in the current month for all organizations.
|
|
17626
|
+
format: int64
|
|
17627
|
+
type: integer
|
|
17484
17628
|
ci_visibility_pipeline_committers_hwm:
|
|
17485
17629
|
description: Shows the high-water mark of all CI visibility pipeline committers
|
|
17486
17630
|
over all hours in the current month for all organizations.
|
|
@@ -17808,6 +17952,11 @@ components:
|
|
|
17808
17952
|
Management hosts over all hours in the current date for the given org.
|
|
17809
17953
|
format: int64
|
|
17810
17954
|
type: integer
|
|
17955
|
+
workflow_executions_usage_sum:
|
|
17956
|
+
description: Sum of all workflows executed over all hours in the current
|
|
17957
|
+
date for all organizations.
|
|
17958
|
+
format: int64
|
|
17959
|
+
type: integer
|
|
17811
17960
|
type: object
|
|
17812
17961
|
UsageSummaryDateOrg:
|
|
17813
17962
|
description: Global hourly report of all data billed by Datadog for a given
|
|
@@ -17903,6 +18052,12 @@ components:
|
|
|
17903
18052
|
the current date for the given org.
|
|
17904
18053
|
format: int64
|
|
17905
18054
|
type: integer
|
|
18055
|
+
ci_visibility_itr_committers_hwm:
|
|
18056
|
+
description: Shows the high-water mark of all CI visibility intelligent
|
|
18057
|
+
test runner committers over all hours in the current date for the given
|
|
18058
|
+
org.
|
|
18059
|
+
format: int64
|
|
18060
|
+
type: integer
|
|
17906
18061
|
ci_visibility_pipeline_committers_hwm:
|
|
17907
18062
|
description: Shows the high-water mark of all CI visibility pipeline committers
|
|
17908
18063
|
over all hours in the current date for the given org.
|
|
@@ -18233,6 +18388,11 @@ components:
|
|
|
18233
18388
|
Management hosts over all hours in the current date for the given org.
|
|
18234
18389
|
format: int64
|
|
18235
18390
|
type: integer
|
|
18391
|
+
workflow_executions_usage_sum:
|
|
18392
|
+
description: Sum of all workflows executed over all hours in the current
|
|
18393
|
+
date for the given org.
|
|
18394
|
+
format: int64
|
|
18395
|
+
type: integer
|
|
18236
18396
|
type: object
|
|
18237
18397
|
UsageSummaryResponse:
|
|
18238
18398
|
description: Response summarizing all usage aggregated across the months in
|
|
@@ -18334,6 +18494,11 @@ components:
|
|
|
18334
18494
|
the current months for all organizations.
|
|
18335
18495
|
format: int64
|
|
18336
18496
|
type: integer
|
|
18497
|
+
ci_visibility_itr_committers_hwm_sum:
|
|
18498
|
+
description: Shows the high-water mark of all CI visibility intelligent
|
|
18499
|
+
test runner committers over all hours in the current months for all organizations.
|
|
18500
|
+
format: int64
|
|
18501
|
+
type: integer
|
|
18337
18502
|
ci_visibility_pipeline_committers_hwm_sum:
|
|
18338
18503
|
description: Shows the high-water mark of all CI visibility pipeline committers
|
|
18339
18504
|
over all hours in the current months for all organizations.
|
|
@@ -18706,6 +18871,11 @@ components:
|
|
|
18706
18871
|
Management hosts over all hours in the current months for all organizations.
|
|
18707
18872
|
format: int64
|
|
18708
18873
|
type: integer
|
|
18874
|
+
workflow_executions_usage_agg_sum:
|
|
18875
|
+
description: Sum of all workflows executed over all hours in the current
|
|
18876
|
+
months for all organizations.
|
|
18877
|
+
format: int64
|
|
18878
|
+
type: integer
|
|
18709
18879
|
type: object
|
|
18710
18880
|
UsageSyntheticsAPIHour:
|
|
18711
18881
|
description: Number of Synthetics API tests run for each hour for a given organization.
|
|
@@ -19191,6 +19361,7 @@ components:
|
|
|
19191
19361
|
WidgetComparator:
|
|
19192
19362
|
description: Comparator to apply.
|
|
19193
19363
|
enum:
|
|
19364
|
+
- '='
|
|
19194
19365
|
- '>'
|
|
19195
19366
|
- '>='
|
|
19196
19367
|
- <
|
|
@@ -19198,6 +19369,7 @@ components:
|
|
|
19198
19369
|
example: '>'
|
|
19199
19370
|
type: string
|
|
19200
19371
|
x-enum-varnames:
|
|
19372
|
+
- EQUAL_TO
|
|
19201
19373
|
- GREATER_THAN
|
|
19202
19374
|
- GREATER_THAN_OR_EQUAL_TO
|
|
19203
19375
|
- LESS_THAN
|
|
@@ -19311,18 +19483,19 @@ components:
|
|
|
19311
19483
|
- $ref: '#/components/schemas/ListStreamWidgetDefinition'
|
|
19312
19484
|
- $ref: '#/components/schemas/FunnelWidgetDefinition'
|
|
19313
19485
|
- $ref: '#/components/schemas/TopologyMapWidgetDefinition'
|
|
19314
|
-
type: object
|
|
19315
19486
|
WidgetDisplayType:
|
|
19316
19487
|
description: Type of display to use for the request.
|
|
19317
19488
|
enum:
|
|
19318
19489
|
- area
|
|
19319
19490
|
- bars
|
|
19320
19491
|
- line
|
|
19492
|
+
- overlay
|
|
19321
19493
|
type: string
|
|
19322
19494
|
x-enum-varnames:
|
|
19323
19495
|
- AREA
|
|
19324
19496
|
- BARS
|
|
19325
19497
|
- LINE
|
|
19498
|
+
- OVERLAY
|
|
19326
19499
|
WidgetEvent:
|
|
19327
19500
|
description: 'Event overlay control options.
|
|
19328
19501
|
|
|
@@ -19891,16 +20064,21 @@ components:
|
|
|
19891
20064
|
authorizationUrl: /oauth2/v1/authorize
|
|
19892
20065
|
scopes:
|
|
19893
20066
|
dashboards_public_share: Generate public and authenticated links to share
|
|
19894
|
-
dashboards externally.
|
|
20067
|
+
dashboards or embeddable graphs externally.
|
|
19895
20068
|
dashboards_read: View dashboards.
|
|
19896
20069
|
dashboards_write: Create and change dashboards.
|
|
19897
20070
|
events_read: Read Events data.
|
|
19898
20071
|
metrics_read: View custom metrics.
|
|
19899
20072
|
monitors_downtime: Set downtimes to suppress alerts from any monitor in
|
|
19900
|
-
an organization. The ability to write monitors
|
|
19901
|
-
downtimes.
|
|
20073
|
+
an organization. Mute and unmute hosts. The ability to write monitors
|
|
20074
|
+
is not required to set downtimes.
|
|
19902
20075
|
monitors_read: View monitors.
|
|
19903
20076
|
monitors_write: Edit, mute, and delete individual monitors.
|
|
20077
|
+
slos_corrections: Apply, edit, and delete SLO status corrections. A user
|
|
20078
|
+
with this permission can make status corrections, even if they do not
|
|
20079
|
+
have permission to edit those SLOs.
|
|
20080
|
+
slos_read: View SLOs and status corrections.
|
|
20081
|
+
slos_write: Create, edit, and delete SLOs.
|
|
19904
20082
|
synthetics_global_variable_read: View, search, and use Synthetics global
|
|
19905
20083
|
variables.
|
|
19906
20084
|
synthetics_global_variable_write: Create, edit, and delete global variables
|
|
@@ -26818,6 +26996,11 @@ paths:
|
|
|
26818
26996
|
description: Not Found
|
|
26819
26997
|
'429':
|
|
26820
26998
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
26999
|
+
security:
|
|
27000
|
+
- apiKeyAuth: []
|
|
27001
|
+
appKeyAuth: []
|
|
27002
|
+
- AuthZ:
|
|
27003
|
+
- slos_read
|
|
26821
27004
|
summary: Get all SLOs
|
|
26822
27005
|
tags:
|
|
26823
27006
|
- Service Level Objectives
|
|
@@ -26852,6 +27035,11 @@ paths:
|
|
|
26852
27035
|
description: Forbidden
|
|
26853
27036
|
'429':
|
|
26854
27037
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27038
|
+
security:
|
|
27039
|
+
- apiKeyAuth: []
|
|
27040
|
+
appKeyAuth: []
|
|
27041
|
+
- AuthZ:
|
|
27042
|
+
- slos_write
|
|
26855
27043
|
summary: Create an SLO object
|
|
26856
27044
|
tags:
|
|
26857
27045
|
- Service Level Objectives
|
|
@@ -26897,6 +27085,11 @@ paths:
|
|
|
26897
27085
|
description: Forbidden
|
|
26898
27086
|
'429':
|
|
26899
27087
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27088
|
+
security:
|
|
27089
|
+
- apiKeyAuth: []
|
|
27090
|
+
appKeyAuth: []
|
|
27091
|
+
- AuthZ:
|
|
27092
|
+
- slos_write
|
|
26900
27093
|
summary: Bulk Delete SLO Timeframes
|
|
26901
27094
|
tags:
|
|
26902
27095
|
- Service Level Objectives
|
|
@@ -26943,6 +27136,11 @@ paths:
|
|
|
26943
27136
|
description: Conflict
|
|
26944
27137
|
'429':
|
|
26945
27138
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27139
|
+
security:
|
|
27140
|
+
- apiKeyAuth: []
|
|
27141
|
+
appKeyAuth: []
|
|
27142
|
+
- AuthZ:
|
|
27143
|
+
- slos_read
|
|
26946
27144
|
summary: Check if SLOs can be safely deleted
|
|
26947
27145
|
tags:
|
|
26948
27146
|
- Service Level Objectives
|
|
@@ -26981,6 +27179,11 @@ paths:
|
|
|
26981
27179
|
description: Forbidden
|
|
26982
27180
|
'429':
|
|
26983
27181
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27182
|
+
security:
|
|
27183
|
+
- apiKeyAuth: []
|
|
27184
|
+
appKeyAuth: []
|
|
27185
|
+
- AuthZ:
|
|
27186
|
+
- slos_read
|
|
26984
27187
|
summary: Get all SLO corrections
|
|
26985
27188
|
tags:
|
|
26986
27189
|
- Service Level Objective Corrections
|
|
@@ -27021,6 +27224,11 @@ paths:
|
|
|
27021
27224
|
description: SLO Not Found
|
|
27022
27225
|
'429':
|
|
27023
27226
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27227
|
+
security:
|
|
27228
|
+
- apiKeyAuth: []
|
|
27229
|
+
appKeyAuth: []
|
|
27230
|
+
- AuthZ:
|
|
27231
|
+
- slos_corrections
|
|
27024
27232
|
summary: Create an SLO correction
|
|
27025
27233
|
tags:
|
|
27026
27234
|
- Service Level Objective Corrections
|
|
@@ -27195,6 +27403,11 @@ paths:
|
|
|
27195
27403
|
description: Forbidden
|
|
27196
27404
|
'429':
|
|
27197
27405
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27406
|
+
security:
|
|
27407
|
+
- apiKeyAuth: []
|
|
27408
|
+
appKeyAuth: []
|
|
27409
|
+
- AuthZ:
|
|
27410
|
+
- slos_read
|
|
27198
27411
|
summary: Search for SLOs
|
|
27199
27412
|
tags:
|
|
27200
27413
|
- Service Level Objectives
|
|
@@ -27248,6 +27461,11 @@ paths:
|
|
|
27248
27461
|
description: Conflict
|
|
27249
27462
|
'429':
|
|
27250
27463
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27464
|
+
security:
|
|
27465
|
+
- apiKeyAuth: []
|
|
27466
|
+
appKeyAuth: []
|
|
27467
|
+
- AuthZ:
|
|
27468
|
+
- slos_write
|
|
27251
27469
|
summary: Delete an SLO
|
|
27252
27470
|
tags:
|
|
27253
27471
|
- Service Level Objectives
|
|
@@ -27289,6 +27507,11 @@ paths:
|
|
|
27289
27507
|
description: Not found
|
|
27290
27508
|
'429':
|
|
27291
27509
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27510
|
+
security:
|
|
27511
|
+
- apiKeyAuth: []
|
|
27512
|
+
appKeyAuth: []
|
|
27513
|
+
- AuthZ:
|
|
27514
|
+
- slos_read
|
|
27292
27515
|
summary: Get an SLO's details
|
|
27293
27516
|
tags:
|
|
27294
27517
|
- Service Level Objectives
|
|
@@ -27336,6 +27559,11 @@ paths:
|
|
|
27336
27559
|
description: Not Found
|
|
27337
27560
|
'429':
|
|
27338
27561
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27562
|
+
security:
|
|
27563
|
+
- apiKeyAuth: []
|
|
27564
|
+
appKeyAuth: []
|
|
27565
|
+
- AuthZ:
|
|
27566
|
+
- slos_write
|
|
27339
27567
|
summary: Update an SLO
|
|
27340
27568
|
tags:
|
|
27341
27569
|
- Service Level Objectives
|
|
@@ -27378,6 +27606,11 @@ paths:
|
|
|
27378
27606
|
description: Not Found
|
|
27379
27607
|
'429':
|
|
27380
27608
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27609
|
+
security:
|
|
27610
|
+
- apiKeyAuth: []
|
|
27611
|
+
appKeyAuth: []
|
|
27612
|
+
- AuthZ:
|
|
27613
|
+
- slos_read
|
|
27381
27614
|
summary: Get Corrections For an SLO
|
|
27382
27615
|
tags:
|
|
27383
27616
|
- Service Level Objectives
|
|
@@ -27459,6 +27692,11 @@ paths:
|
|
|
27459
27692
|
description: Not Found
|
|
27460
27693
|
'429':
|
|
27461
27694
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
27695
|
+
security:
|
|
27696
|
+
- apiKeyAuth: []
|
|
27697
|
+
appKeyAuth: []
|
|
27698
|
+
- AuthZ:
|
|
27699
|
+
- slos_read
|
|
27462
27700
|
summary: Get an SLO's history
|
|
27463
27701
|
tags:
|
|
27464
27702
|
- Service Level Objectives
|