datadog_api_client 1.10.0 → 1.11.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 +4 -4
- data/.generator/schemas/v1/openapi.yaml +715 -44
- data/.generator/schemas/v2/openapi.yaml +458 -44
- data/.generator/src/generator/formatter.py +14 -0
- data/.github/workflows/test_integration.yml +0 -7
- data/CHANGELOG.md +34 -0
- data/examples/v1/dashboards/CreateDashboard_1442588603.rb +61 -0
- data/examples/v1/dashboards/CreateDashboard_252716965.rb +52 -0
- data/examples/v1/dashboards/CreateDashboard_3882428227.rb +60 -0
- data/examples/v1/metrics/SubmitDistributionPoints.rb +22 -0
- data/examples/v1/metrics/SubmitDistributionPoints_3109558960.rb +25 -0
- data/examples/v1/organizations/DowngradeOrg.rb +5 -0
- data/examples/v1/organizations/UpdateOrg.rb +1 -0
- data/examples/v1/service-level-objectives/SearchSLO.rb +16 -0
- data/examples/v1/snapshots/GetGraphSnapshot.rb +2 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +3 -0
- data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +3 -0
- data/examples/v1/synthetics/UpdateBrowserTest.rb +3 -0
- data/examples/v2/metrics/CreateTagConfiguration.rb +0 -3
- data/examples/v2/metrics/DeleteTagConfiguration.rb +0 -3
- data/examples/v2/metrics/ListTagConfigurationByName.rb +0 -3
- data/examples/v2/metrics/ListTagConfigurations.rb +0 -3
- data/examples/v2/metrics/ListTagConfigurations_103226315.rb +0 -3
- data/examples/v2/metrics/ListTagConfigurations_1799362914.rb +0 -3
- data/examples/v2/metrics/UpdateTagConfiguration.rb +0 -3
- data/examples/v2/opsgenie-integration/CreateOpsgenieService.rb +16 -0
- data/examples/v2/opsgenie-integration/DeleteOpsgenieService.rb +8 -0
- data/examples/v2/opsgenie-integration/GetOpsgenieService.rb +8 -0
- data/examples/v2/opsgenie-integration/ListOpsgenieServices.rb +5 -0
- data/examples/v2/opsgenie-integration/UpdateOpsgenieService.rb +21 -0
- data/examples/v2/security-monitoring/ListSecurityMonitoringSignals.rb +0 -3
- data/examples/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +0 -3
- data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +3 -0
- data/examples/v2/usage-metering/GetEstimatedCostByOrg.rb +5 -0
- data/examples/v2/usage-metering/GetEstimatedCostByOrg_1171921972.rb +9 -0
- data/examples/v2/usage-metering/GetEstimatedCostByOrg_627383212.rb +9 -0
- data/lib/datadog_api_client/v1/api/metrics_api.rb +81 -0
- data/lib/datadog_api_client/v1/api/organizations_api.rb +74 -1
- data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +2 -2
- data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +78 -4
- data/lib/datadog_api_client/v1/api/snapshots_api.rb +4 -0
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +9 -5
- data/lib/datadog_api_client/v1/configuration.rb +51 -0
- data/lib/datadog_api_client/v1/models/distribution_point_item.rb +63 -0
- data/lib/datadog_api_client/v1/models/distribution_points_content_encoding.rb +26 -0
- data/lib/datadog_api_client/v1/models/distribution_points_payload.rb +124 -0
- data/lib/datadog_api_client/v1/models/distribution_points_series.rb +179 -0
- data/lib/datadog_api_client/v1/models/distribution_points_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_query.rb +64 -0
- data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/distribution_widget_request.rb +21 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stat_name.rb +1 -0
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +2 -0
- data/lib/datadog_api_client/v1/models/ip_prefixes_synthetics_private_locations.rb +125 -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 +4 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +41 -1
- data/lib/datadog_api_client/v1/models/org_downgraded_response.rb +111 -0
- data/lib/datadog_api_client/v1/models/organization.rb +14 -4
- data/lib/datadog_api_client/v1/models/search_slo_response.rb +131 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data.rb +121 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes.rb +123 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets.rb +197 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets_object_int.rb +121 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets_object_string.rb +121 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_links.rb +151 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_meta.rb +111 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_meta_page.rb +181 -0
- data/lib/datadog_api_client/v1/models/service_level_objective.rb +3 -3
- data/lib/datadog_api_client/v1/models/service_level_objective_query.rb +1 -1
- data/lib/datadog_api_client/v1/models/service_level_objective_request.rb +3 -3
- data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +1 -1
- data/lib/datadog_api_client/v1/models/slo_response_data.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +11 -0
- data/lib/datadog_api_client/v1/models/synthetics_browser_test.rb +11 -0
- data/lib/datadog_api_client/v1/models/synthetics_core_web_vitals.rb +2 -2
- data/lib/datadog_api_client/v1/models/synthetics_test_ci_options.rb +111 -0
- data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +11 -1
- data/lib/datadog_api_client/v1/models/usage_attribution_sort.rb +4 -0
- data/lib/datadog_api_client/v1/models/usage_attribution_supported_metrics.rb +4 -0
- data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +41 -1
- data/lib/datadog_api_client/v1/models/usage_billable_summary_keys.rb +474 -4
- data/lib/datadog_api_client/v1.rb +19 -0
- data/lib/datadog_api_client/v2/api/cloud_workload_security_api.rb +1 -1
- data/lib/datadog_api_client/v2/api/metrics_api.rb +0 -2
- data/lib/datadog_api_client/v2/api/opsgenie_integration_api.rb +395 -0
- data/lib/datadog_api_client/v2/api/usage_metering_api.rb +76 -0
- data/lib/datadog_api_client/v2/configuration.rb +0 -7
- data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +10 -8
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +0 -2
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +0 -2
- data/lib/datadog_api_client/v2/models/opsgenie_service_create_attributes.rb +174 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_create_data.rb +145 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_create_request.rb +122 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_region_type.rb +28 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_response.rb +122 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_response_attributes.rb +132 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_response_data.rb +166 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_update_attributes.rb +142 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_update_data.rb +166 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_update_request.rb +122 -0
- data/lib/datadog_api_client/v2/models/opsgenie_services_response.rb +124 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +30 -4
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_method.rb +27 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_threshold.rb +27 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +13 -1
- data/lib/datadog_api_client/v2.rb +15 -0
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +51 -2
|
@@ -1299,6 +1299,96 @@ components:
|
|
|
1299
1299
|
type: integer
|
|
1300
1300
|
readOnly: true
|
|
1301
1301
|
type: object
|
|
1302
|
+
DistributionPoint:
|
|
1303
|
+
description: Array of distribution points.
|
|
1304
|
+
example:
|
|
1305
|
+
- 1575317847.0
|
|
1306
|
+
- - 0.5
|
|
1307
|
+
- 1.0
|
|
1308
|
+
items:
|
|
1309
|
+
description: List of distribution point.
|
|
1310
|
+
oneOf:
|
|
1311
|
+
- $ref: '#/components/schemas/DistributionPointTimestamp'
|
|
1312
|
+
- $ref: '#/components/schemas/DistributionPointData'
|
|
1313
|
+
maxItems: 2
|
|
1314
|
+
minItems: 2
|
|
1315
|
+
type: array
|
|
1316
|
+
DistributionPointData:
|
|
1317
|
+
description: Distribution point data.
|
|
1318
|
+
items:
|
|
1319
|
+
description: List of distribution point data.
|
|
1320
|
+
format: double
|
|
1321
|
+
type: number
|
|
1322
|
+
type: array
|
|
1323
|
+
DistributionPointTimestamp:
|
|
1324
|
+
description: Distribution point timestamp. It should be in seconds and current.
|
|
1325
|
+
format: double
|
|
1326
|
+
type: number
|
|
1327
|
+
DistributionPointsContentEncoding:
|
|
1328
|
+
description: HTTP header used to compress the media-type.
|
|
1329
|
+
enum:
|
|
1330
|
+
- deflate
|
|
1331
|
+
type: string
|
|
1332
|
+
x-enum-varnames:
|
|
1333
|
+
- DEFLATE
|
|
1334
|
+
DistributionPointsPayload:
|
|
1335
|
+
description: The distribution points payload.
|
|
1336
|
+
properties:
|
|
1337
|
+
series:
|
|
1338
|
+
description: A list of distribution points series to submit to Datadog.
|
|
1339
|
+
example:
|
|
1340
|
+
- metric: system.load.1
|
|
1341
|
+
points:
|
|
1342
|
+
- - 1475317847.0
|
|
1343
|
+
- - 1.0
|
|
1344
|
+
- 2.0
|
|
1345
|
+
items:
|
|
1346
|
+
$ref: '#/components/schemas/DistributionPointsSeries'
|
|
1347
|
+
type: array
|
|
1348
|
+
required:
|
|
1349
|
+
- series
|
|
1350
|
+
type: object
|
|
1351
|
+
DistributionPointsSeries:
|
|
1352
|
+
description: A distribution points metric to submit to Datadog.
|
|
1353
|
+
properties:
|
|
1354
|
+
host:
|
|
1355
|
+
description: The name of the host that produced the distribution point metric.
|
|
1356
|
+
example: test.example.com
|
|
1357
|
+
type: string
|
|
1358
|
+
metric:
|
|
1359
|
+
description: The name of the distribution points metric.
|
|
1360
|
+
example: system.load.1
|
|
1361
|
+
type: string
|
|
1362
|
+
points:
|
|
1363
|
+
description: Points relating to the distribution point metric. All points
|
|
1364
|
+
must be tuples with timestamp and a list of values (cannot be a string).
|
|
1365
|
+
Timestamps should be in POSIX time in seconds.
|
|
1366
|
+
items:
|
|
1367
|
+
$ref: '#/components/schemas/DistributionPoint'
|
|
1368
|
+
type: array
|
|
1369
|
+
tags:
|
|
1370
|
+
description: A list of tags associated with the distribution point metric.
|
|
1371
|
+
example:
|
|
1372
|
+
- environment:test
|
|
1373
|
+
items:
|
|
1374
|
+
description: Individual tags.
|
|
1375
|
+
type: string
|
|
1376
|
+
type: array
|
|
1377
|
+
type:
|
|
1378
|
+
$ref: '#/components/schemas/DistributionPointsType'
|
|
1379
|
+
required:
|
|
1380
|
+
- metric
|
|
1381
|
+
- points
|
|
1382
|
+
type: object
|
|
1383
|
+
DistributionPointsType:
|
|
1384
|
+
default: distribution
|
|
1385
|
+
description: The type of the distribution point.
|
|
1386
|
+
enum:
|
|
1387
|
+
- distribution
|
|
1388
|
+
example: distribution
|
|
1389
|
+
type: string
|
|
1390
|
+
x-enum-varnames:
|
|
1391
|
+
- DISTRIBUTION
|
|
1302
1392
|
DistributionWidgetDefinition:
|
|
1303
1393
|
description: "The Distribution visualization is another way of showing metrics\naggregated
|
|
1304
1394
|
across one or several tags, such as hosts.\nUnlike the heat map, a distribution
|
|
@@ -1359,6 +1449,25 @@ components:
|
|
|
1359
1449
|
type: string
|
|
1360
1450
|
x-enum-varnames:
|
|
1361
1451
|
- DISTRIBUTION
|
|
1452
|
+
DistributionWidgetHistogramRequestQuery:
|
|
1453
|
+
description: Query definition for Distribution Widget Histogram Request
|
|
1454
|
+
example:
|
|
1455
|
+
data_source: metrics
|
|
1456
|
+
name: query1
|
|
1457
|
+
query: histogram:trace.Load{*}
|
|
1458
|
+
oneOf:
|
|
1459
|
+
- $ref: '#/components/schemas/FormulaAndFunctionMetricQueryDefinition'
|
|
1460
|
+
- $ref: '#/components/schemas/FormulaAndFunctionEventQueryDefinition'
|
|
1461
|
+
- $ref: '#/components/schemas/FormulaAndFunctionApmResourceStatsQueryDefinition'
|
|
1462
|
+
type: object
|
|
1463
|
+
DistributionWidgetHistogramRequestType:
|
|
1464
|
+
description: Request type for the histogram request.
|
|
1465
|
+
enum:
|
|
1466
|
+
- histogram
|
|
1467
|
+
example: histogram
|
|
1468
|
+
type: string
|
|
1469
|
+
x-enum-varnames:
|
|
1470
|
+
- HISTOGRAM
|
|
1362
1471
|
DistributionWidgetRequest:
|
|
1363
1472
|
description: Updated distribution widget.
|
|
1364
1473
|
properties:
|
|
@@ -1379,6 +1488,10 @@ components:
|
|
|
1379
1488
|
q:
|
|
1380
1489
|
description: Widget query.
|
|
1381
1490
|
type: string
|
|
1491
|
+
query:
|
|
1492
|
+
$ref: '#/components/schemas/DistributionWidgetHistogramRequestQuery'
|
|
1493
|
+
request_type:
|
|
1494
|
+
$ref: '#/components/schemas/DistributionWidgetHistogramRequestType'
|
|
1382
1495
|
rum_query:
|
|
1383
1496
|
$ref: '#/components/schemas/LogQueryDefinition'
|
|
1384
1497
|
security_query:
|
|
@@ -2159,6 +2272,7 @@ components:
|
|
|
2159
2272
|
- error_rate
|
|
2160
2273
|
- hits
|
|
2161
2274
|
- latency_avg
|
|
2275
|
+
- latency_distribution
|
|
2162
2276
|
- latency_max
|
|
2163
2277
|
- latency_p50
|
|
2164
2278
|
- latency_p75
|
|
@@ -2172,6 +2286,7 @@ components:
|
|
|
2172
2286
|
- ERROR_RATE
|
|
2173
2287
|
- HITS
|
|
2174
2288
|
- LATENCY_AVG
|
|
2289
|
+
- LATENCY_DISTRIBUTION
|
|
2175
2290
|
- LATENCY_MAX
|
|
2176
2291
|
- LATENCY_P50
|
|
2177
2292
|
- LATENCY_P75
|
|
@@ -3511,10 +3626,12 @@ components:
|
|
|
3511
3626
|
enum:
|
|
3512
3627
|
- api_usage
|
|
3513
3628
|
- apm_host_usage
|
|
3629
|
+
- appsec_usage
|
|
3514
3630
|
- browser_usage
|
|
3515
3631
|
- container_usage
|
|
3516
3632
|
- custom_timeseries_usage
|
|
3517
3633
|
- estimated_indexed_logs_usage
|
|
3634
|
+
- estimated_indexed_spans_usage
|
|
3518
3635
|
- fargate_usage
|
|
3519
3636
|
- functions_usage
|
|
3520
3637
|
- indexed_logs_usage
|
|
@@ -3528,10 +3645,12 @@ components:
|
|
|
3528
3645
|
x-enum-varnames:
|
|
3529
3646
|
- API_USAGE
|
|
3530
3647
|
- APM_HOST_USAGE
|
|
3648
|
+
- APPSEC_USAGE
|
|
3531
3649
|
- BROWSER_USAGE
|
|
3532
3650
|
- CONTAINER_USAGE
|
|
3533
3651
|
- CUSTOM_TIMESERIES_USAGE
|
|
3534
3652
|
- ESTIMATED_INDEXED_LOGS_USAGE
|
|
3653
|
+
- ESTIMATED_INDEXED_SPANS_USAGE
|
|
3535
3654
|
- FARGATE_USAGE
|
|
3536
3655
|
- FUNCTIONS_USAGE
|
|
3537
3656
|
- INDEXED_LOGS_USAGE
|
|
@@ -3678,6 +3797,23 @@ components:
|
|
|
3678
3797
|
description: List of IPv6 prefixes by location.
|
|
3679
3798
|
type: object
|
|
3680
3799
|
type: object
|
|
3800
|
+
IPPrefixesSyntheticsPrivateLocations:
|
|
3801
|
+
description: Available prefix information for the Synthetics Private Locations
|
|
3802
|
+
endpoints.
|
|
3803
|
+
properties:
|
|
3804
|
+
prefixes_ipv4:
|
|
3805
|
+
description: List of IPv4 prefixes.
|
|
3806
|
+
items:
|
|
3807
|
+
description: IPv4 prefix
|
|
3808
|
+
type: string
|
|
3809
|
+
type: array
|
|
3810
|
+
prefixes_ipv6:
|
|
3811
|
+
description: List of IPv6 prefixes.
|
|
3812
|
+
items:
|
|
3813
|
+
description: IPv6 prefix
|
|
3814
|
+
type: string
|
|
3815
|
+
type: array
|
|
3816
|
+
type: object
|
|
3681
3817
|
IPPrefixesWebhooks:
|
|
3682
3818
|
description: Available prefix information for the Webhook endpoints.
|
|
3683
3819
|
properties:
|
|
@@ -3713,6 +3849,8 @@ components:
|
|
|
3713
3849
|
$ref: '#/components/schemas/IPPrefixesProcess'
|
|
3714
3850
|
synthetics:
|
|
3715
3851
|
$ref: '#/components/schemas/IPPrefixesSynthetics'
|
|
3852
|
+
synthetics-private-locations:
|
|
3853
|
+
$ref: '#/components/schemas/IPPrefixesSyntheticsPrivateLocations'
|
|
3716
3854
|
version:
|
|
3717
3855
|
description: Version of the IP list.
|
|
3718
3856
|
example: 11
|
|
@@ -6695,6 +6833,8 @@ components:
|
|
|
6695
6833
|
- api_percentage
|
|
6696
6834
|
- apm_host_usage
|
|
6697
6835
|
- apm_host_percentage
|
|
6836
|
+
- appsec_usage
|
|
6837
|
+
- appsec_percentage
|
|
6698
6838
|
- browser_usage
|
|
6699
6839
|
- browser_percentage
|
|
6700
6840
|
- container_usage
|
|
@@ -6703,6 +6843,8 @@ components:
|
|
|
6703
6843
|
- custom_timeseries_percentage
|
|
6704
6844
|
- estimated_indexed_logs_usage
|
|
6705
6845
|
- estimated_indexed_logs_percentage
|
|
6846
|
+
- estimated_indexed_spans_usage
|
|
6847
|
+
- estimated_indexed_spans_percentage
|
|
6706
6848
|
- fargate_usage
|
|
6707
6849
|
- fargate_percentage
|
|
6708
6850
|
- functions_usage
|
|
@@ -6728,6 +6870,8 @@ components:
|
|
|
6728
6870
|
- API_PERCENTAGE
|
|
6729
6871
|
- APM_HOST_USAGE
|
|
6730
6872
|
- APM_HOST_PERCENTAGE
|
|
6873
|
+
- APPSEC_USAGE
|
|
6874
|
+
- APPSEC_PERCENTAGE
|
|
6731
6875
|
- BROWSER_USAGE
|
|
6732
6876
|
- BROWSER_PERCENTAGE
|
|
6733
6877
|
- CONTAINER_USAGE
|
|
@@ -6736,6 +6880,8 @@ components:
|
|
|
6736
6880
|
- CUSTOM_TIMESERIES_PERCENTAGE
|
|
6737
6881
|
- ESTIMATED_INDEXED_LOGS_USAGE
|
|
6738
6882
|
- ESTIMATED_INDEXED_LOGS_PERCENTAGE
|
|
6883
|
+
- ESTIMATED_INDEXED_SPANS_USAGE
|
|
6884
|
+
- ESTIMATED_INDEXED_SPANS_PERCENTAGE
|
|
6739
6885
|
- FARGATE_USAGE
|
|
6740
6886
|
- FARGATE_PERCENTAGE
|
|
6741
6887
|
- FUNCTIONS_USAGE
|
|
@@ -6774,6 +6920,15 @@ components:
|
|
|
6774
6920
|
description: The APM host usage by tag(s).
|
|
6775
6921
|
format: double
|
|
6776
6922
|
type: number
|
|
6923
|
+
appsec_percentage:
|
|
6924
|
+
description: The percentage of Application Security Monitoring host usage
|
|
6925
|
+
by tag(s).
|
|
6926
|
+
format: double
|
|
6927
|
+
type: number
|
|
6928
|
+
appsec_usage:
|
|
6929
|
+
description: The Application Security Monitoring host usage by tag(s).
|
|
6930
|
+
format: double
|
|
6931
|
+
type: number
|
|
6777
6932
|
browser_percentage:
|
|
6778
6933
|
description: The percentage of synthetic browser test usage by tag(s).
|
|
6779
6934
|
format: double
|
|
@@ -6808,6 +6963,16 @@ components:
|
|
|
6808
6963
|
is in private beta.
|
|
6809
6964
|
format: double
|
|
6810
6965
|
type: number
|
|
6966
|
+
estimated_indexed_spans_percentage:
|
|
6967
|
+
description: The percentage of estimated indexed spans usage by tag(s).
|
|
6968
|
+
This field is in private beta.
|
|
6969
|
+
format: double
|
|
6970
|
+
type: number
|
|
6971
|
+
estimated_indexed_spans_usage:
|
|
6972
|
+
description: The estimated indexed spans usage by tag(s). This field is
|
|
6973
|
+
in private beta.
|
|
6974
|
+
format: double
|
|
6975
|
+
type: number
|
|
6811
6976
|
fargate_percentage:
|
|
6812
6977
|
description: The percentage of Fargate usage by tags.
|
|
6813
6978
|
format: double
|
|
@@ -7705,6 +7870,13 @@ components:
|
|
|
7705
7870
|
format: int64
|
|
7706
7871
|
type: integer
|
|
7707
7872
|
type: object
|
|
7873
|
+
OrgDowngradedResponse:
|
|
7874
|
+
description: Status of downgrade
|
|
7875
|
+
properties:
|
|
7876
|
+
message:
|
|
7877
|
+
description: Information pertaining to the downgraded child organization.
|
|
7878
|
+
type: string
|
|
7879
|
+
type: object
|
|
7708
7880
|
Organization:
|
|
7709
7881
|
description: Create, edit, and manage organizations.
|
|
7710
7882
|
properties:
|
|
@@ -7732,6 +7904,11 @@ components:
|
|
|
7732
7904
|
$ref: '#/components/schemas/OrganizationSettings'
|
|
7733
7905
|
subscription:
|
|
7734
7906
|
$ref: '#/components/schemas/OrganizationSubscription'
|
|
7907
|
+
trial:
|
|
7908
|
+
description: Only available for MSP customers. Allows child organizations
|
|
7909
|
+
to be created on a trial plan.
|
|
7910
|
+
example: false
|
|
7911
|
+
type: boolean
|
|
7735
7912
|
type: object
|
|
7736
7913
|
OrganizationBilling:
|
|
7737
7914
|
deprecated: true
|
|
@@ -8476,7 +8653,7 @@ components:
|
|
|
8476
8653
|
format: int64
|
|
8477
8654
|
type: integer
|
|
8478
8655
|
times:
|
|
8479
|
-
description: An array of query timestamps in EPOCH milliseconds
|
|
8656
|
+
description: An array of query timestamps in EPOCH milliseconds.
|
|
8480
8657
|
example: []
|
|
8481
8658
|
items:
|
|
8482
8659
|
description: A timestamp in EPOCH milliseconds.
|
|
@@ -9344,6 +9521,164 @@ components:
|
|
|
9344
9521
|
- formula
|
|
9345
9522
|
- dimension
|
|
9346
9523
|
type: object
|
|
9524
|
+
SearchSLOResponse:
|
|
9525
|
+
description: A search SLO response containing results from the search query.
|
|
9526
|
+
properties:
|
|
9527
|
+
data:
|
|
9528
|
+
$ref: '#/components/schemas/SearchSLOResponseData'
|
|
9529
|
+
links:
|
|
9530
|
+
$ref: '#/components/schemas/SearchSLOResponseLinks'
|
|
9531
|
+
meta:
|
|
9532
|
+
$ref: '#/components/schemas/SearchSLOResponseMeta'
|
|
9533
|
+
type: object
|
|
9534
|
+
SearchSLOResponseData:
|
|
9535
|
+
description: Data from search SLO response.
|
|
9536
|
+
properties:
|
|
9537
|
+
attributes:
|
|
9538
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributes'
|
|
9539
|
+
type:
|
|
9540
|
+
description: Type of service level objective result.
|
|
9541
|
+
example: ''
|
|
9542
|
+
type: string
|
|
9543
|
+
type: object
|
|
9544
|
+
SearchSLOResponseDataAttributes:
|
|
9545
|
+
description: Attributes
|
|
9546
|
+
properties:
|
|
9547
|
+
facets:
|
|
9548
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacets'
|
|
9549
|
+
slo:
|
|
9550
|
+
description: SLOs
|
|
9551
|
+
items:
|
|
9552
|
+
$ref: '#/components/schemas/ServiceLevelObjective'
|
|
9553
|
+
type: array
|
|
9554
|
+
type: object
|
|
9555
|
+
SearchSLOResponseDataAttributesFacets:
|
|
9556
|
+
description: Facets
|
|
9557
|
+
properties:
|
|
9558
|
+
all_tags:
|
|
9559
|
+
description: All tags associated with an SLO.
|
|
9560
|
+
items:
|
|
9561
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
|
9562
|
+
type: array
|
|
9563
|
+
creator_name:
|
|
9564
|
+
description: Creator of an SLO.
|
|
9565
|
+
items:
|
|
9566
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
|
9567
|
+
type: array
|
|
9568
|
+
env_tags:
|
|
9569
|
+
description: Tags with the `env` tag key.
|
|
9570
|
+
items:
|
|
9571
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
|
9572
|
+
type: array
|
|
9573
|
+
service_tags:
|
|
9574
|
+
description: Tags with the `service` tag key.
|
|
9575
|
+
items:
|
|
9576
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
|
9577
|
+
type: array
|
|
9578
|
+
slo_type:
|
|
9579
|
+
description: Type of SLO.
|
|
9580
|
+
items:
|
|
9581
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectInt'
|
|
9582
|
+
type: array
|
|
9583
|
+
target:
|
|
9584
|
+
description: SLO Target
|
|
9585
|
+
items:
|
|
9586
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectInt'
|
|
9587
|
+
type: array
|
|
9588
|
+
team_tags:
|
|
9589
|
+
description: Tags with the `team` tag key.
|
|
9590
|
+
items:
|
|
9591
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
|
9592
|
+
type: array
|
|
9593
|
+
timeframe:
|
|
9594
|
+
description: Timeframes of SLOs.
|
|
9595
|
+
items:
|
|
9596
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
|
9597
|
+
type: array
|
|
9598
|
+
type: object
|
|
9599
|
+
SearchSLOResponseDataAttributesFacetsObjectInt:
|
|
9600
|
+
description: Facet
|
|
9601
|
+
properties:
|
|
9602
|
+
count:
|
|
9603
|
+
description: Count
|
|
9604
|
+
format: int64
|
|
9605
|
+
type: integer
|
|
9606
|
+
name:
|
|
9607
|
+
description: Facet
|
|
9608
|
+
format: double
|
|
9609
|
+
type: number
|
|
9610
|
+
type: object
|
|
9611
|
+
SearchSLOResponseDataAttributesFacetsObjectString:
|
|
9612
|
+
description: Facet
|
|
9613
|
+
properties:
|
|
9614
|
+
count:
|
|
9615
|
+
description: Count
|
|
9616
|
+
format: int64
|
|
9617
|
+
type: integer
|
|
9618
|
+
name:
|
|
9619
|
+
description: Facet
|
|
9620
|
+
type: string
|
|
9621
|
+
type: object
|
|
9622
|
+
SearchSLOResponseLinks:
|
|
9623
|
+
description: Pagination links.
|
|
9624
|
+
properties:
|
|
9625
|
+
first:
|
|
9626
|
+
description: Link to last page.
|
|
9627
|
+
type: string
|
|
9628
|
+
last:
|
|
9629
|
+
description: Link to first page.
|
|
9630
|
+
type: string
|
|
9631
|
+
next:
|
|
9632
|
+
description: Link to the next page.
|
|
9633
|
+
type: string
|
|
9634
|
+
prev:
|
|
9635
|
+
description: Link to previous page.
|
|
9636
|
+
type: string
|
|
9637
|
+
self:
|
|
9638
|
+
description: Link to current page.
|
|
9639
|
+
type: string
|
|
9640
|
+
type: object
|
|
9641
|
+
SearchSLOResponseMeta:
|
|
9642
|
+
description: Searches metadata returned by the API.
|
|
9643
|
+
properties:
|
|
9644
|
+
pagination:
|
|
9645
|
+
$ref: '#/components/schemas/SearchSLOResponseMetaPage'
|
|
9646
|
+
type: object
|
|
9647
|
+
SearchSLOResponseMetaPage:
|
|
9648
|
+
description: Pagination metadata returned by the API.
|
|
9649
|
+
properties:
|
|
9650
|
+
first_number:
|
|
9651
|
+
description: The first number.
|
|
9652
|
+
format: int64
|
|
9653
|
+
type: integer
|
|
9654
|
+
last_number:
|
|
9655
|
+
description: The last number.
|
|
9656
|
+
format: int64
|
|
9657
|
+
type: integer
|
|
9658
|
+
next_number:
|
|
9659
|
+
description: The next number.
|
|
9660
|
+
format: int64
|
|
9661
|
+
type: integer
|
|
9662
|
+
number:
|
|
9663
|
+
description: The page number.
|
|
9664
|
+
format: int64
|
|
9665
|
+
type: integer
|
|
9666
|
+
prev_number:
|
|
9667
|
+
description: The previous page number.
|
|
9668
|
+
format: int64
|
|
9669
|
+
type: integer
|
|
9670
|
+
size:
|
|
9671
|
+
description: The size of the response.
|
|
9672
|
+
format: int64
|
|
9673
|
+
type: integer
|
|
9674
|
+
total:
|
|
9675
|
+
description: The total number of SLOs in the response.
|
|
9676
|
+
format: int64
|
|
9677
|
+
type: integer
|
|
9678
|
+
type:
|
|
9679
|
+
description: Type of pagination.
|
|
9680
|
+
type: string
|
|
9681
|
+
type: object
|
|
9347
9682
|
Series:
|
|
9348
9683
|
description: 'A metric to submit to Datadog.
|
|
9349
9684
|
|
|
@@ -9472,7 +9807,7 @@ components:
|
|
|
9472
9807
|
nullable: true
|
|
9473
9808
|
type: string
|
|
9474
9809
|
groups:
|
|
9475
|
-
description: 'A list of (up to
|
|
9810
|
+
description: 'A list of (up to 100) monitor groups that narrow the scope
|
|
9476
9811
|
of a monitor service level objective.
|
|
9477
9812
|
|
|
9478
9813
|
|
|
@@ -9521,8 +9856,8 @@ components:
|
|
|
9521
9856
|
|
|
9522
9857
|
field.
|
|
9523
9858
|
|
|
9524
|
-
Always included in service level objective responses for monitor
|
|
9525
|
-
level
|
|
9859
|
+
Always included in service level objective responses for monitor-based
|
|
9860
|
+
service level
|
|
9526
9861
|
|
|
9527
9862
|
objectives (but may be empty). Ignored in create/update requests. Does
|
|
9528
9863
|
not
|
|
@@ -9575,7 +9910,7 @@ components:
|
|
|
9575
9910
|
- thresholds
|
|
9576
9911
|
- type
|
|
9577
9912
|
ServiceLevelObjectiveQuery:
|
|
9578
|
-
description: 'A metric
|
|
9913
|
+
description: 'A metric-based SLO. **Required if type is `metric`**. Note that
|
|
9579
9914
|
Datadog only allows the sum by aggregator
|
|
9580
9915
|
|
|
9581
9916
|
to be used because this will sum up all request counts instead of averaging
|
|
@@ -9611,7 +9946,7 @@ components:
|
|
|
9611
9946
|
nullable: true
|
|
9612
9947
|
type: string
|
|
9613
9948
|
groups:
|
|
9614
|
-
description: 'A list of (up to
|
|
9949
|
+
description: 'A list of (up to 100) monitor groups that narrow the scope
|
|
9615
9950
|
of a monitor service level objective.
|
|
9616
9951
|
|
|
9617
9952
|
|
|
@@ -9630,7 +9965,7 @@ components:
|
|
|
9630
9965
|
type: string
|
|
9631
9966
|
type: array
|
|
9632
9967
|
monitor_ids:
|
|
9633
|
-
description: 'A list of monitor
|
|
9968
|
+
description: 'A list of monitor IDs that defines the scope of a monitor
|
|
9634
9969
|
service level
|
|
9635
9970
|
|
|
9636
9971
|
objective. **Required if type is `monitor`**.'
|
|
@@ -10135,6 +10470,7 @@ components:
|
|
|
10135
10470
|
- locations
|
|
10136
10471
|
- options
|
|
10137
10472
|
- type
|
|
10473
|
+
- message
|
|
10138
10474
|
type: object
|
|
10139
10475
|
SyntheticsAPITestConfig:
|
|
10140
10476
|
description: Configuration object for a Synthetic API test.
|
|
@@ -10196,7 +10532,6 @@ components:
|
|
|
10196
10532
|
responseHeaders:
|
|
10197
10533
|
additionalProperties:
|
|
10198
10534
|
description: Returned request header.
|
|
10199
|
-
type: object
|
|
10200
10535
|
description: Response headers returned for the API test.
|
|
10201
10536
|
type: object
|
|
10202
10537
|
responseSize:
|
|
@@ -10731,6 +11066,7 @@ components:
|
|
|
10731
11066
|
- name
|
|
10732
11067
|
- options
|
|
10733
11068
|
- type
|
|
11069
|
+
- message
|
|
10734
11070
|
type: object
|
|
10735
11071
|
SyntheticsBrowserTestConfig:
|
|
10736
11072
|
description: Configuration object for a Synthetic browser test.
|
|
@@ -11228,12 +11564,12 @@ components:
|
|
|
11228
11564
|
properties:
|
|
11229
11565
|
cls:
|
|
11230
11566
|
description: Cumulative Layout Shift.
|
|
11231
|
-
format:
|
|
11232
|
-
type:
|
|
11567
|
+
format: double
|
|
11568
|
+
type: number
|
|
11233
11569
|
lcp:
|
|
11234
11570
|
description: Largest Contentful Paint in milliseconds.
|
|
11235
|
-
format:
|
|
11236
|
-
type:
|
|
11571
|
+
format: double
|
|
11572
|
+
type: number
|
|
11237
11573
|
url:
|
|
11238
11574
|
description: URL attached to the metrics.
|
|
11239
11575
|
type: string
|
|
@@ -11901,6 +12237,12 @@ components:
|
|
|
11901
12237
|
- TYPE_TEXT
|
|
11902
12238
|
- UPLOAD_FILES
|
|
11903
12239
|
- WAIT
|
|
12240
|
+
SyntheticsTestCiOptions:
|
|
12241
|
+
description: CI/CD options for a Synthetic test.
|
|
12242
|
+
properties:
|
|
12243
|
+
executionRule:
|
|
12244
|
+
$ref: '#/components/schemas/SyntheticsTestExecutionRule'
|
|
12245
|
+
type: object
|
|
11904
12246
|
SyntheticsTestConfig:
|
|
11905
12247
|
description: Configuration object for a Synthetic test.
|
|
11906
12248
|
properties:
|
|
@@ -12066,6 +12408,8 @@ components:
|
|
|
12066
12408
|
description: For SSL test, whether or not the test should fail on revoked
|
|
12067
12409
|
certificate in stapled OCSP.
|
|
12068
12410
|
type: boolean
|
|
12411
|
+
ci:
|
|
12412
|
+
$ref: '#/components/schemas/SyntheticsTestCiOptions'
|
|
12069
12413
|
device_ids:
|
|
12070
12414
|
description: For browser test, array with the different device IDs used
|
|
12071
12415
|
to run the test.
|
|
@@ -13086,6 +13430,8 @@ components:
|
|
|
13086
13430
|
- snmp_usage
|
|
13087
13431
|
- apm_host_usage
|
|
13088
13432
|
- api_usage
|
|
13433
|
+
- appsec_usage
|
|
13434
|
+
- appsec_percentage
|
|
13089
13435
|
- container_usage
|
|
13090
13436
|
- custom_timeseries_percentage
|
|
13091
13437
|
- container_percentage
|
|
@@ -13104,12 +13450,16 @@ components:
|
|
|
13104
13450
|
- lambda_invocations_percentage
|
|
13105
13451
|
- estimated_indexed_logs_usage
|
|
13106
13452
|
- estimated_indexed_logs_percentage
|
|
13453
|
+
- estimated_indexed_spans_usage
|
|
13454
|
+
- estimated_indexed_spans_percentage
|
|
13107
13455
|
type: string
|
|
13108
13456
|
x-enum-varnames:
|
|
13109
13457
|
- API_PERCENTAGE
|
|
13110
13458
|
- SNMP_USAGE
|
|
13111
13459
|
- APM_HOST_USAGE
|
|
13112
13460
|
- API_USAGE
|
|
13461
|
+
- APPSEC_USAGE
|
|
13462
|
+
- APPSEC_PERCENTAGE
|
|
13113
13463
|
- CONTAINER_USAGE
|
|
13114
13464
|
- CUSTOM_TIMESERIES_PERCENTAGE
|
|
13115
13465
|
- CONTAINER_PERCENTAGE
|
|
@@ -13128,6 +13478,8 @@ components:
|
|
|
13128
13478
|
- LAMBDA_INVOCATIONS_PERCENTAGE
|
|
13129
13479
|
- ESTIMATED_INDEXED_LOGS_USAGE
|
|
13130
13480
|
- ESTIMATED_INDEXED_LOGS_PERCENTAGE
|
|
13481
|
+
- ESTIMATED_INDEXED_SPANS_USAGE
|
|
13482
|
+
- ESTIMATED_INDEXED_SPANS_PERCENTAGE
|
|
13131
13483
|
UsageAttributionSupportedMetrics:
|
|
13132
13484
|
description: Supported fields for usage attribution requests (valid requests
|
|
13133
13485
|
contain one or more metrics, or `*` for all).
|
|
@@ -13164,6 +13516,10 @@ components:
|
|
|
13164
13516
|
- dbm_queries_percentage
|
|
13165
13517
|
- estimated_indexed_logs_usage
|
|
13166
13518
|
- estimated_indexed_logs_percentage
|
|
13519
|
+
- appsec_usage
|
|
13520
|
+
- appsec_percentage
|
|
13521
|
+
- estimated_indexed_spans_usage
|
|
13522
|
+
- estimated_indexed_spans_percentage
|
|
13167
13523
|
- '*'
|
|
13168
13524
|
type: string
|
|
13169
13525
|
x-enum-varnames:
|
|
@@ -13199,6 +13555,10 @@ components:
|
|
|
13199
13555
|
- DBM_QUERIES_PERCENTAGE
|
|
13200
13556
|
- ESTIMATED_INDEXED_LOGS_USAGE
|
|
13201
13557
|
- ESTIMATED_INDEXED_LOGS_PERCENTAGE
|
|
13558
|
+
- APPSEC_USAGE
|
|
13559
|
+
- APPSEC_PERCENTAGE
|
|
13560
|
+
- ESTIMATED_INDEXED_SPANS_USAGE
|
|
13561
|
+
- ESTIMATED_INDEXED_SPANS_PERCENTAGE
|
|
13202
13562
|
- ALL
|
|
13203
13563
|
UsageAttributionTagNames:
|
|
13204
13564
|
additionalProperties:
|
|
@@ -13229,6 +13589,13 @@ components:
|
|
|
13229
13589
|
description: The APM host usage by tag(s).
|
|
13230
13590
|
format: double
|
|
13231
13591
|
type: number
|
|
13592
|
+
appsec_percentage:
|
|
13593
|
+
description: The percentage of Application Security Monitoring host usage
|
|
13594
|
+
by tag(s).
|
|
13595
|
+
appsec_usage:
|
|
13596
|
+
description: The Application Security Monitoring host usage by tag(s).
|
|
13597
|
+
format: double
|
|
13598
|
+
type: number
|
|
13232
13599
|
browser_percentage:
|
|
13233
13600
|
description: The percentage of synthetic browser test usage by tag(s).
|
|
13234
13601
|
format: double
|
|
@@ -13315,6 +13682,16 @@ components:
|
|
|
13315
13682
|
field is in private beta.
|
|
13316
13683
|
format: double
|
|
13317
13684
|
type: number
|
|
13685
|
+
estimated_indexed_spans_percentage:
|
|
13686
|
+
description: The percentage of estimated indexed spans usage by tag(s).
|
|
13687
|
+
Note this field is in private beta.
|
|
13688
|
+
format: double
|
|
13689
|
+
type: number
|
|
13690
|
+
estimated_indexed_spans_usage:
|
|
13691
|
+
description: The estimated indexed spans usage by tag(s). Note this field
|
|
13692
|
+
is in private beta.
|
|
13693
|
+
format: double
|
|
13694
|
+
type: number
|
|
13318
13695
|
infra_host_percentage:
|
|
13319
13696
|
description: The percentage of infrastructure host usage by tag(s).
|
|
13320
13697
|
format: double
|
|
@@ -13466,30 +13843,104 @@ components:
|
|
|
13466
13843
|
UsageBillableSummaryKeys:
|
|
13467
13844
|
description: Response with aggregated usage types.
|
|
13468
13845
|
properties:
|
|
13846
|
+
apm_fargate_average:
|
|
13847
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13848
|
+
apm_fargate_sum:
|
|
13849
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13469
13850
|
apm_host_sum:
|
|
13470
13851
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13471
13852
|
apm_host_top99p:
|
|
13472
13853
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13854
|
+
apm_profiler_host_sum:
|
|
13855
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13856
|
+
apm_profiler_host_top99p:
|
|
13857
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13473
13858
|
apm_trace_search_sum:
|
|
13474
13859
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13860
|
+
application_security_host_sum:
|
|
13861
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13862
|
+
ci_pipeline_indexed_spans_sum:
|
|
13863
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13864
|
+
ci_pipeline_maximum:
|
|
13865
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13866
|
+
ci_pipeline_sum:
|
|
13867
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13868
|
+
ci_test_indexed_spans_sum:
|
|
13869
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13870
|
+
ci_testing_maximum:
|
|
13871
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13872
|
+
ci_testing_sum:
|
|
13873
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13874
|
+
cspm_container_sum:
|
|
13875
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13876
|
+
cspm_host_sum:
|
|
13877
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13878
|
+
cspm_host_top99p:
|
|
13879
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13880
|
+
custom_event_sum:
|
|
13881
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13882
|
+
cws_container_sum:
|
|
13883
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13884
|
+
cws_host_sum:
|
|
13885
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13886
|
+
cws_host_top99p:
|
|
13887
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13888
|
+
dbm_host_sum:
|
|
13889
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13890
|
+
dbm_host_top99p:
|
|
13891
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13892
|
+
dbm_normalized_queries_average:
|
|
13893
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13894
|
+
dbm_normalized_queries_sum:
|
|
13895
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13896
|
+
fargate_container_apm_and_profiler_average:
|
|
13897
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13898
|
+
fargate_container_apm_and_profiler_sum:
|
|
13899
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13475
13900
|
fargate_container_average:
|
|
13476
13901
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13902
|
+
fargate_container_profiler_average:
|
|
13903
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13904
|
+
fargate_container_profiler_sum:
|
|
13905
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13906
|
+
fargate_container_sum:
|
|
13907
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13908
|
+
incident_management_maximum:
|
|
13909
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13910
|
+
incident_management_sum:
|
|
13911
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13912
|
+
infra_and_apm_host_sum:
|
|
13913
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13914
|
+
infra_and_apm_host_top99p:
|
|
13915
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13477
13916
|
infra_container_sum:
|
|
13478
13917
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13479
13918
|
infra_host_sum:
|
|
13480
13919
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13481
13920
|
infra_host_top99p:
|
|
13482
13921
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13922
|
+
ingested_spans_sum:
|
|
13923
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13924
|
+
ingested_timeseries_average:
|
|
13925
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13926
|
+
ingested_timeseries_sum:
|
|
13927
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13928
|
+
iot_sum:
|
|
13929
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13483
13930
|
iot_top99p:
|
|
13484
13931
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13485
13932
|
lambda_function_average:
|
|
13486
13933
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13934
|
+
lambda_function_sum:
|
|
13935
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13487
13936
|
logs_indexed_15day_sum:
|
|
13488
13937
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13489
13938
|
logs_indexed_180day_sum:
|
|
13490
13939
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13491
13940
|
logs_indexed_30day_sum:
|
|
13492
13941
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13942
|
+
logs_indexed_360day_sum:
|
|
13943
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13493
13944
|
logs_indexed_3day_sum:
|
|
13494
13945
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13495
13946
|
logs_indexed_45day_sum:
|
|
@@ -13506,6 +13957,8 @@ components:
|
|
|
13506
13957
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13507
13958
|
logs_ingested_sum:
|
|
13508
13959
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13960
|
+
network_device_sum:
|
|
13961
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13509
13962
|
network_device_top99p:
|
|
13510
13963
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13511
13964
|
npm_flow_sum:
|
|
@@ -13514,22 +13967,40 @@ components:
|
|
|
13514
13967
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13515
13968
|
npm_host_top99p:
|
|
13516
13969
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13970
|
+
observability_pipeline_sum:
|
|
13971
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13972
|
+
online_archive_sum:
|
|
13973
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13517
13974
|
prof_container_sum:
|
|
13518
13975
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13976
|
+
prof_host_sum:
|
|
13977
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13519
13978
|
prof_host_top99p:
|
|
13520
13979
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13980
|
+
rum_lite_sum:
|
|
13981
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13982
|
+
rum_replay_sum:
|
|
13983
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13521
13984
|
rum_sum:
|
|
13522
13985
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13986
|
+
rum_units_sum:
|
|
13987
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13988
|
+
sensitive_data_scanner_sum:
|
|
13989
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13523
13990
|
serverless_invocation_sum:
|
|
13524
13991
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13525
13992
|
siem_sum:
|
|
13526
13993
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13994
|
+
standard_timeseries_average:
|
|
13995
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13527
13996
|
synthetics_api_tests_sum:
|
|
13528
13997
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13529
13998
|
synthetics_browser_checks_sum:
|
|
13530
13999
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13531
14000
|
timeseries_average:
|
|
13532
14001
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
14002
|
+
timeseries_sum:
|
|
14003
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
|
13533
14004
|
type: object
|
|
13534
14005
|
UsageBillableSummaryResponse:
|
|
13535
14006
|
description: Response with monthly summary of data billed by Datadog.
|
|
@@ -16732,7 +17203,8 @@ components:
|
|
|
16732
17203
|
authorizationCode:
|
|
16733
17204
|
authorizationUrl: /oauth2/v1/authorize
|
|
16734
17205
|
scopes:
|
|
16735
|
-
dashboards_public_share:
|
|
17206
|
+
dashboards_public_share: Generate public and authenticated links to share
|
|
17207
|
+
dashboards externally.
|
|
16736
17208
|
dashboards_read: View dashboards.
|
|
16737
17209
|
dashboards_write: Create and change dashboards.
|
|
16738
17210
|
events_read: Read Events data.
|
|
@@ -16742,8 +17214,6 @@ components:
|
|
|
16742
17214
|
downtimes.
|
|
16743
17215
|
monitors_read: View monitors.
|
|
16744
17216
|
monitors_write: Edit, mute, and delete individual monitors.
|
|
16745
|
-
security_monitoring_signals_read: View Security Signals.
|
|
16746
|
-
security_monitoring_signals_write: Modify Security Signals.
|
|
16747
17217
|
synthetics_global_variable_read: View, search, and use in tests the list
|
|
16748
17218
|
of global variables available for Synthetics.
|
|
16749
17219
|
synthetics_global_variable_write: Create, edit, and delete global variables
|
|
@@ -18019,6 +18489,74 @@ paths:
|
|
|
18019
18489
|
x-menu-order: 6
|
|
18020
18490
|
x-undo:
|
|
18021
18491
|
type: idempotent
|
|
18492
|
+
/api/v1/distribution_points:
|
|
18493
|
+
post:
|
|
18494
|
+
description: "The distribution points end-point allows you to post distribution
|
|
18495
|
+
data that can be graphed on Datadog\u2019s dashboards."
|
|
18496
|
+
operationId: SubmitDistributionPoints
|
|
18497
|
+
parameters:
|
|
18498
|
+
- description: HTTP header used to compress the media-type.
|
|
18499
|
+
in: header
|
|
18500
|
+
name: Content-Encoding
|
|
18501
|
+
required: false
|
|
18502
|
+
schema:
|
|
18503
|
+
$ref: '#/components/schemas/DistributionPointsContentEncoding'
|
|
18504
|
+
requestBody:
|
|
18505
|
+
content:
|
|
18506
|
+
text/json:
|
|
18507
|
+
examples:
|
|
18508
|
+
dynamic-points:
|
|
18509
|
+
description: "Post time-series data that can be graphed on Datadog\u2019s
|
|
18510
|
+
dashboards."
|
|
18511
|
+
externalValue: examples/metrics/distribution-points.json.sh
|
|
18512
|
+
summary: Dynamic Points
|
|
18513
|
+
x-variables:
|
|
18514
|
+
NOW: $(date +%s)
|
|
18515
|
+
schema:
|
|
18516
|
+
$ref: '#/components/schemas/DistributionPointsPayload'
|
|
18517
|
+
required: true
|
|
18518
|
+
responses:
|
|
18519
|
+
'202':
|
|
18520
|
+
content:
|
|
18521
|
+
text/json:
|
|
18522
|
+
schema:
|
|
18523
|
+
$ref: '#/components/schemas/IntakePayloadAccepted'
|
|
18524
|
+
description: Payload accepted
|
|
18525
|
+
'400':
|
|
18526
|
+
content:
|
|
18527
|
+
text/json:
|
|
18528
|
+
schema:
|
|
18529
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
18530
|
+
description: Bad Request
|
|
18531
|
+
'403':
|
|
18532
|
+
content:
|
|
18533
|
+
text/json:
|
|
18534
|
+
schema:
|
|
18535
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
18536
|
+
description: Authentication error
|
|
18537
|
+
'408':
|
|
18538
|
+
content:
|
|
18539
|
+
text/json:
|
|
18540
|
+
schema:
|
|
18541
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
18542
|
+
description: Request timeout
|
|
18543
|
+
'413':
|
|
18544
|
+
content:
|
|
18545
|
+
text/json:
|
|
18546
|
+
schema:
|
|
18547
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
18548
|
+
description: Payload too large
|
|
18549
|
+
'429':
|
|
18550
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
18551
|
+
security:
|
|
18552
|
+
- apiKeyAuth: []
|
|
18553
|
+
summary: Submit distribution points
|
|
18554
|
+
tags:
|
|
18555
|
+
- Metrics
|
|
18556
|
+
x-codegen-request-body-name: body
|
|
18557
|
+
x-menu-order: 1
|
|
18558
|
+
x-undo:
|
|
18559
|
+
type: safe
|
|
18022
18560
|
/api/v1/downtime:
|
|
18023
18561
|
get:
|
|
18024
18562
|
description: Get all scheduled downtimes.
|
|
@@ -18554,6 +19092,22 @@ paths:
|
|
|
18554
19092
|
required: false
|
|
18555
19093
|
schema:
|
|
18556
19094
|
type: string
|
|
19095
|
+
- description: The height of the graph. If no height is specified, the graph's
|
|
19096
|
+
original height is used.
|
|
19097
|
+
in: query
|
|
19098
|
+
name: height
|
|
19099
|
+
required: false
|
|
19100
|
+
schema:
|
|
19101
|
+
format: int64
|
|
19102
|
+
type: integer
|
|
19103
|
+
- description: The width of the graph. If no width is specified, the graph's
|
|
19104
|
+
original width is used.
|
|
19105
|
+
in: query
|
|
19106
|
+
name: width
|
|
19107
|
+
required: false
|
|
19108
|
+
schema:
|
|
19109
|
+
format: int64
|
|
19110
|
+
type: integer
|
|
18557
19111
|
responses:
|
|
18558
19112
|
'200':
|
|
18559
19113
|
content:
|
|
@@ -22988,7 +23542,7 @@ paths:
|
|
|
22988
23542
|
type: idempotent
|
|
22989
23543
|
/api/v1/org:
|
|
22990
23544
|
get:
|
|
22991
|
-
description:
|
|
23545
|
+
description: This endpoint returns data on your top-level organization.
|
|
22992
23546
|
operationId: ListOrgs
|
|
22993
23547
|
responses:
|
|
22994
23548
|
'200':
|
|
@@ -23151,6 +23705,47 @@ paths:
|
|
|
23151
23705
|
x-menu-order: 4
|
|
23152
23706
|
x-undo:
|
|
23153
23707
|
type: idempotent
|
|
23708
|
+
/api/v1/org/{public_id}/downgrade:
|
|
23709
|
+
post:
|
|
23710
|
+
description: Only available for MSP customers. Removes a child organization
|
|
23711
|
+
from the hierarchy of the master organization and places the child organization
|
|
23712
|
+
on a 30-day trial.
|
|
23713
|
+
operationId: DowngradeOrg
|
|
23714
|
+
parameters:
|
|
23715
|
+
- description: The `public_id` of the organization you are operating within.
|
|
23716
|
+
in: path
|
|
23717
|
+
name: public_id
|
|
23718
|
+
required: true
|
|
23719
|
+
schema:
|
|
23720
|
+
example: abc123
|
|
23721
|
+
type: string
|
|
23722
|
+
responses:
|
|
23723
|
+
'200':
|
|
23724
|
+
content:
|
|
23725
|
+
application/json:
|
|
23726
|
+
schema:
|
|
23727
|
+
$ref: '#/components/schemas/OrgDowngradedResponse'
|
|
23728
|
+
description: OK
|
|
23729
|
+
'400':
|
|
23730
|
+
content:
|
|
23731
|
+
application/json:
|
|
23732
|
+
schema:
|
|
23733
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
23734
|
+
description: Bad Request
|
|
23735
|
+
'403':
|
|
23736
|
+
content:
|
|
23737
|
+
application/json:
|
|
23738
|
+
schema:
|
|
23739
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
23740
|
+
description: Forbidden
|
|
23741
|
+
'429':
|
|
23742
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
23743
|
+
summary: Spin-off Child Organization
|
|
23744
|
+
tags:
|
|
23745
|
+
- Organizations
|
|
23746
|
+
x-menu-order: 6
|
|
23747
|
+
x-undo:
|
|
23748
|
+
type: unsafe
|
|
23154
23749
|
/api/v1/org/{public_id}/idp_metadata:
|
|
23155
23750
|
post:
|
|
23156
23751
|
description: 'There are a couple of options for updating the Identity Provider
|
|
@@ -23405,11 +24000,6 @@ paths:
|
|
|
23405
24000
|
description: Not Found
|
|
23406
24001
|
'429':
|
|
23407
24002
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
23408
|
-
security:
|
|
23409
|
-
- AuthZ:
|
|
23410
|
-
- security_monitoring_signals_write
|
|
23411
|
-
apiKeyAuth: []
|
|
23412
|
-
appKeyAuth: []
|
|
23413
24003
|
summary: Modify the triage assignee of a security signal
|
|
23414
24004
|
tags:
|
|
23415
24005
|
- Security Monitoring
|
|
@@ -23456,11 +24046,6 @@ paths:
|
|
|
23456
24046
|
description: Not Found
|
|
23457
24047
|
'429':
|
|
23458
24048
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
23459
|
-
security:
|
|
23460
|
-
- AuthZ:
|
|
23461
|
-
- security_monitoring_signals_write
|
|
23462
|
-
apiKeyAuth: []
|
|
23463
|
-
appKeyAuth: []
|
|
23464
24049
|
summary: Change the triage state of a security signal
|
|
23465
24050
|
tags:
|
|
23466
24051
|
- Security Monitoring
|
|
@@ -23624,10 +24209,6 @@ paths:
|
|
|
23624
24209
|
description: Not Found
|
|
23625
24210
|
'429':
|
|
23626
24211
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
23627
|
-
security:
|
|
23628
|
-
- apiKeyAuth: []
|
|
23629
|
-
appKeyAuth: []
|
|
23630
|
-
- AuthZ: []
|
|
23631
24212
|
summary: Get all SLOs
|
|
23632
24213
|
tags:
|
|
23633
24214
|
- Service Level Objectives
|
|
@@ -23987,6 +24568,94 @@ paths:
|
|
|
23987
24568
|
x-menu-order: 4
|
|
23988
24569
|
x-undo:
|
|
23989
24570
|
type: idempotent
|
|
24571
|
+
/api/v1/slo/search:
|
|
24572
|
+
get:
|
|
24573
|
+
description: Get a list of service level objective objects for your organization.
|
|
24574
|
+
operationId: SearchSLO
|
|
24575
|
+
parameters:
|
|
24576
|
+
- description: The query string to filter results based on SLO names.
|
|
24577
|
+
in: query
|
|
24578
|
+
name: query
|
|
24579
|
+
required: false
|
|
24580
|
+
schema:
|
|
24581
|
+
type: string
|
|
24582
|
+
- description: The number of files to return in the response `[default=10]`.
|
|
24583
|
+
in: query
|
|
24584
|
+
name: page[size]
|
|
24585
|
+
required: false
|
|
24586
|
+
schema:
|
|
24587
|
+
format: int64
|
|
24588
|
+
type: integer
|
|
24589
|
+
- description: The identifier of the first page to return. This parameter is
|
|
24590
|
+
used for the pagination feature `[default=0]`.
|
|
24591
|
+
in: query
|
|
24592
|
+
name: page[number]
|
|
24593
|
+
required: false
|
|
24594
|
+
schema:
|
|
24595
|
+
format: int64
|
|
24596
|
+
type: integer
|
|
24597
|
+
responses:
|
|
24598
|
+
'200':
|
|
24599
|
+
content:
|
|
24600
|
+
application/json:
|
|
24601
|
+
schema:
|
|
24602
|
+
$ref: '#/components/schemas/SearchSLOResponse'
|
|
24603
|
+
description: OK
|
|
24604
|
+
'400':
|
|
24605
|
+
content:
|
|
24606
|
+
application/json:
|
|
24607
|
+
schema:
|
|
24608
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
24609
|
+
description: Bad Request
|
|
24610
|
+
'403':
|
|
24611
|
+
content:
|
|
24612
|
+
application/json:
|
|
24613
|
+
schema:
|
|
24614
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
24615
|
+
description: Forbidden
|
|
24616
|
+
'429':
|
|
24617
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
24618
|
+
servers:
|
|
24619
|
+
- url: https://{subdomain}.{site}
|
|
24620
|
+
variables:
|
|
24621
|
+
site:
|
|
24622
|
+
default: datadoghq.com
|
|
24623
|
+
description: The regional site for Datadog customers.
|
|
24624
|
+
enum:
|
|
24625
|
+
- datadoghq.com
|
|
24626
|
+
- us3.datadoghq.com
|
|
24627
|
+
- us5.datadoghq.com
|
|
24628
|
+
- ddog-gov.com
|
|
24629
|
+
subdomain:
|
|
24630
|
+
default: api
|
|
24631
|
+
description: The subdomain where the API is deployed.
|
|
24632
|
+
- url: '{protocol}://{name}'
|
|
24633
|
+
variables:
|
|
24634
|
+
name:
|
|
24635
|
+
default: api.datadoghq.com
|
|
24636
|
+
description: Full site DNS name.
|
|
24637
|
+
protocol:
|
|
24638
|
+
default: https
|
|
24639
|
+
description: The protocol for accessing the API.
|
|
24640
|
+
- url: https://{subdomain}.{site}
|
|
24641
|
+
variables:
|
|
24642
|
+
site:
|
|
24643
|
+
default: datadoghq.com
|
|
24644
|
+
description: Any Datadog deployment.
|
|
24645
|
+
subdomain:
|
|
24646
|
+
default: api
|
|
24647
|
+
description: The subdomain where the API is deployed.
|
|
24648
|
+
summary: Search for SLOs
|
|
24649
|
+
tags:
|
|
24650
|
+
- Service Level Objectives
|
|
24651
|
+
x-menu-order: 1
|
|
24652
|
+
x-undo:
|
|
24653
|
+
type: safe
|
|
24654
|
+
x-unstable: '**Note**: Note: This endpoint is in public beta for US regions.
|
|
24655
|
+
|
|
24656
|
+
It is not currently supported in the EU region.
|
|
24657
|
+
|
|
24658
|
+
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
23990
24659
|
/api/v1/slo/{slo_id}:
|
|
23991
24660
|
delete:
|
|
23992
24661
|
description: 'Permanently delete the specified service level objective object.
|
|
@@ -24081,10 +24750,6 @@ paths:
|
|
|
24081
24750
|
description: Not found
|
|
24082
24751
|
'429':
|
|
24083
24752
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
24084
|
-
security:
|
|
24085
|
-
- apiKeyAuth: []
|
|
24086
|
-
appKeyAuth: []
|
|
24087
|
-
- AuthZ: []
|
|
24088
24753
|
summary: Get an SLO's details
|
|
24089
24754
|
tags:
|
|
24090
24755
|
- Service Level Objectives
|
|
@@ -24180,10 +24845,6 @@ paths:
|
|
|
24180
24845
|
description: Not Found
|
|
24181
24846
|
'429':
|
|
24182
24847
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
24183
|
-
security:
|
|
24184
|
-
- apiKeyAuth: []
|
|
24185
|
-
appKeyAuth: []
|
|
24186
|
-
- AuthZ: []
|
|
24187
24848
|
summary: Get Corrections For an SLO
|
|
24188
24849
|
tags:
|
|
24189
24850
|
- Service Level Objectives
|
|
@@ -24268,10 +24929,6 @@ paths:
|
|
|
24268
24929
|
description: Not Found
|
|
24269
24930
|
'429':
|
|
24270
24931
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
24271
|
-
security:
|
|
24272
|
-
- apiKeyAuth: []
|
|
24273
|
-
appKeyAuth: []
|
|
24274
|
-
- AuthZ: []
|
|
24275
24932
|
summary: Get an SLO's history
|
|
24276
24933
|
tags:
|
|
24277
24934
|
- Service Level Objectives
|
|
@@ -26682,6 +27339,13 @@ paths:
|
|
|
26682
27339
|
required: false
|
|
26683
27340
|
schema:
|
|
26684
27341
|
type: string
|
|
27342
|
+
- description: Include child org usage in the response. Defaults to `true`.
|
|
27343
|
+
in: query
|
|
27344
|
+
name: include_descendants
|
|
27345
|
+
required: false
|
|
27346
|
+
schema:
|
|
27347
|
+
default: true
|
|
27348
|
+
type: boolean
|
|
26685
27349
|
responses:
|
|
26686
27350
|
'200':
|
|
26687
27351
|
content:
|
|
@@ -27195,6 +27859,13 @@ paths:
|
|
|
27195
27859
|
required: false
|
|
27196
27860
|
schema:
|
|
27197
27861
|
type: string
|
|
27862
|
+
- description: Include child org usage in the response. Defaults to `true`.
|
|
27863
|
+
in: query
|
|
27864
|
+
name: include_descendants
|
|
27865
|
+
required: false
|
|
27866
|
+
schema:
|
|
27867
|
+
default: true
|
|
27868
|
+
type: boolean
|
|
27198
27869
|
responses:
|
|
27199
27870
|
'200':
|
|
27200
27871
|
content:
|
|
@@ -28697,11 +29368,11 @@ tags:
|
|
|
28697
29368
|
description: Find out more at
|
|
28698
29369
|
url: https://docs.datadoghq.com/account_management/multi_organization
|
|
28699
29370
|
name: Organizations
|
|
28700
|
-
- description: 'Configure your [Datadog-PagerDuty integration](https://docs.datadoghq.com/
|
|
29371
|
+
- description: 'Configure your [Datadog-PagerDuty integration](https://docs.datadoghq.com/integrations/pagerduty/)
|
|
28701
29372
|
|
|
28702
29373
|
directly through the Datadog API.'
|
|
28703
29374
|
externalDocs:
|
|
28704
|
-
url: https://docs.datadoghq.com/
|
|
29375
|
+
url: https://docs.datadoghq.com/integrations/pagerduty/
|
|
28705
29376
|
name: PagerDuty Integration
|
|
28706
29377
|
- description: 'Detection rules for generating signals and listing of generated
|
|
28707
29378
|
|