datadog_api_client 2.19.0 → 2.20.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 +97 -44
- data/.generator/schemas/v2/openapi.yaml +704 -42
- data/.generator/src/generator/templates/api.j2 +5 -5
- data/CHANGELOG.md +20 -0
- data/examples/v1/logs-indexes/CreateLogsIndex.rb +5 -0
- data/examples/v1/logs-indexes/UpdateLogsIndex.rb +5 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +1 -1
- data/examples/v1/synthetics/CreateSyntheticsBrowserTest.rb +1 -1
- data/examples/v1/synthetics/TriggerCITests.rb +1 -1
- data/examples/v1/synthetics/UpdateBrowserTest.rb +1 -1
- data/examples/v1/usage-metering/GetUsageLambda.rb +5 -2
- data/examples/v2/api-management/CreateOpenAPI.rb +11 -0
- data/examples/v2/api-management/DeleteOpenAPI.rb +11 -0
- data/examples/v2/api-management/GetOpenAPI.rb +11 -0
- data/examples/v2/api-management/UpdateOpenAPI.rb +14 -0
- data/examples/v2/okta-integration/CreateOktaAccount.rb +1 -1
- data/examples/v2/security-monitoring/CreateSecurityMonitoringSuppression.rb +19 -0
- data/examples/v2/security-monitoring/DeleteSecurityMonitoringSuppression.rb +8 -0
- data/examples/v2/security-monitoring/GetSecurityMonitoringSuppression.rb +8 -0
- data/examples/v2/security-monitoring/ListSecurityMonitoringSuppressions.rb +5 -0
- data/examples/v2/security-monitoring/UpdateSecurityMonitoringSuppression.rb +17 -0
- data/examples/v2/teams/GetTeamMemberships_3799131168.rb +8 -0
- data/examples/v2/usage-metering/GetUsageLambdaTracedInvocations.rb +1 -1
- data/lib/datadog_api_client/configuration.rb +4 -0
- data/lib/datadog_api_client/inflector.rb +22 -0
- data/lib/datadog_api_client/v1/api/organizations_api.rb +1 -1
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +3 -3
- data/lib/datadog_api_client/v1/models/dashboard.rb +5 -1
- data/lib/datadog_api_client/v1/models/dashboard_summary_definition.rb +2 -0
- data/lib/datadog_api_client/v1/models/log.rb +1 -1
- data/lib/datadog_api_client/v1/models/logs_daily_limit_reset.rb +90 -0
- data/lib/datadog_api_client/v1/models/logs_index.rb +36 -1
- data/lib/datadog_api_client/v1/models/logs_index_update_request.rb +36 -1
- data/lib/datadog_api_client/v1/models/metrics_payload.rb +1 -1
- data/lib/datadog_api_client/v1/models/metrics_query_metadata.rb +1 -1
- data/lib/datadog_api_client/v1/models/slo_correction_create_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/slo_correction_response_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/slo_correction_update_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +2 -2
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series.rb +1 -1
- data/lib/datadog_api_client/v1/models/slo_history_monitor.rb +1 -1
- data/lib/datadog_api_client/v1/models/slo_history_sli_data.rb +1 -1
- data/lib/datadog_api_client/v1/models/split_config.rb +6 -6
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +11 -1
- data/lib/datadog_api_client/v1/models/usage_lambda_hour.rb +1 -1
- data/lib/datadog_api_client/v1/models/usage_lambda_response.rb +1 -1
- data/lib/datadog_api_client/v2/api/api_management_api.rb +319 -0
- data/lib/datadog_api_client/v2/api/organizations_api.rb +1 -1
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +329 -0
- data/lib/datadog_api_client/v2/api/teams_api.rb +22 -0
- data/lib/datadog_api_client/v2/api/usage_metering_api.rb +3 -3
- data/lib/datadog_api_client/v2/models/create_open_api_response.rb +80 -0
- data/lib/datadog_api_client/v2/models/create_open_api_response_attributes.rb +82 -0
- data/lib/datadog_api_client/v2/models/create_open_api_response_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_request_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/dora_incident_request_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/metric_payload.rb +1 -1
- data/lib/datadog_api_client/v2/models/open_api_endpoint.rb +90 -0
- data/lib/datadog_api_client/v2/models/open_api_file.rb +80 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression.rb +100 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression_attributes.rb +198 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression_create_attributes.rb +181 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression_create_data.rb +119 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression_create_request.rb +98 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression_response.rb +80 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression_update_attributes.rb +166 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression_update_data.rb +119 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppression_update_request.rb +98 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_suppressions_response.rb +82 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_user.rb +98 -0
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_included_keyword_configuration.rb +1 -1
- data/lib/datadog_api_client/v2/models/update_open_api_response.rb +80 -0
- data/lib/datadog_api_client/v2/models/update_open_api_response_attributes.rb +82 -0
- data/lib/datadog_api_client/v2/models/update_open_api_response_data.rb +90 -0
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +34 -3
- data/examples/v1/usage-metering/GetUsageLambda_3132428705.rb +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0f30666e69c33c637e8811cd07f7a5cb7ab5edc404e1e8a8e7626f1ff1465d5
|
|
4
|
+
data.tar.gz: d23bf4368dbc58c0e7f20490e4a5248d9111848f04b61062a632f91bf52f2342
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0645a7ca595b01413ab2fe61cecaaacad236327e69b27359161187caad7127c58ef4ff76194bc0792409faee726a6243273ddc8abdad459b3044606d7995a44d
|
|
7
|
+
data.tar.gz: e9d6b38a3c690d05d4a80201dc97453631a06e90736f4c6113d051794b980dfc0fb4a6709c367c989dd987b20f789fe4ade132bfee65521c605737f1ad85b3ca
|
data/.apigentools-info
CHANGED
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"spec_versions": {
|
|
5
5
|
"v1": {
|
|
6
6
|
"apigentools_version": "1.6.6",
|
|
7
|
-
"regenerated": "2024-
|
|
8
|
-
"spec_repo_commit": "
|
|
7
|
+
"regenerated": "2024-02-06 15:45:08.603113",
|
|
8
|
+
"spec_repo_commit": "46672359"
|
|
9
9
|
},
|
|
10
10
|
"v2": {
|
|
11
11
|
"apigentools_version": "1.6.6",
|
|
12
|
-
"regenerated": "2024-
|
|
13
|
-
"spec_repo_commit": "
|
|
12
|
+
"regenerated": "2024-02-06 15:45:08.619048",
|
|
13
|
+
"spec_repo_commit": "46672359"
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -328,7 +328,7 @@ components:
|
|
|
328
328
|
type: string
|
|
329
329
|
message:
|
|
330
330
|
description: Message content.
|
|
331
|
-
example: AWS account 12345 has no
|
|
331
|
+
example: AWS account 12345 has no Lambda config to update
|
|
332
332
|
type: string
|
|
333
333
|
type: object
|
|
334
334
|
AWSLogsAsyncResponse:
|
|
@@ -1142,9 +1142,12 @@ components:
|
|
|
1142
1142
|
is_read_only:
|
|
1143
1143
|
default: false
|
|
1144
1144
|
deprecated: true
|
|
1145
|
-
description: Whether this dashboard is read-only. If True, only the author
|
|
1146
|
-
and admins can make changes to it.
|
|
1147
|
-
|
|
1145
|
+
description: 'Whether this dashboard is read-only. If True, only the author
|
|
1146
|
+
and admins can make changes to it.
|
|
1147
|
+
|
|
1148
|
+
|
|
1149
|
+
This property is deprecated; please use the [Restriction Policies API](https://docs.datadoghq.com/api/latest/restriction-policies/)
|
|
1150
|
+
instead to manage write authorization for individual dashboards.'
|
|
1148
1151
|
example: false
|
|
1149
1152
|
type: boolean
|
|
1150
1153
|
layout_type:
|
|
@@ -1165,8 +1168,13 @@ components:
|
|
|
1165
1168
|
reflow_type:
|
|
1166
1169
|
$ref: '#/components/schemas/DashboardReflowType'
|
|
1167
1170
|
restricted_roles:
|
|
1168
|
-
|
|
1171
|
+
deprecated: true
|
|
1172
|
+
description: 'A list of role identifiers. Only the author and users associated
|
|
1169
1173
|
with at least one of these roles can edit this dashboard.
|
|
1174
|
+
|
|
1175
|
+
|
|
1176
|
+
This property is deprecated; please use the [Restriction Policies API](https://docs.datadoghq.com/api/latest/restriction-policies/)
|
|
1177
|
+
instead to manage write authorization for individual dashboards.'
|
|
1170
1178
|
items:
|
|
1171
1179
|
description: A role UUID.
|
|
1172
1180
|
type: string
|
|
@@ -1439,8 +1447,13 @@ components:
|
|
|
1439
1447
|
description: Dashboard identifier.
|
|
1440
1448
|
type: string
|
|
1441
1449
|
is_read_only:
|
|
1442
|
-
|
|
1450
|
+
deprecated: true
|
|
1451
|
+
description: 'Whether this dashboard is read-only. If True, only the author
|
|
1443
1452
|
and admins can make changes to it.
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
|
+
This property is deprecated; please use the [Restriction Policies API](https://docs.datadoghq.com/api/latest/restriction-policies/)
|
|
1456
|
+
instead to manage write authorization for individual dashboards.'
|
|
1444
1457
|
type: boolean
|
|
1445
1458
|
layout_type:
|
|
1446
1459
|
$ref: '#/components/schemas/DashboardLayoutType'
|
|
@@ -4750,7 +4763,7 @@ components:
|
|
|
4750
4763
|
content:
|
|
4751
4764
|
$ref: '#/components/schemas/LogContent'
|
|
4752
4765
|
id:
|
|
4753
|
-
description:
|
|
4766
|
+
description: ID of the Log.
|
|
4754
4767
|
example: AAAAAWgN8Xwgr1vKDQAAAABBV2dOOFh3ZzZobm1mWXJFYTR0OA
|
|
4755
4768
|
type: string
|
|
4756
4769
|
type: object
|
|
@@ -5180,6 +5193,21 @@ components:
|
|
|
5180
5193
|
type: string
|
|
5181
5194
|
x-enum-varnames:
|
|
5182
5195
|
- CATEGORY_PROCESSOR
|
|
5196
|
+
LogsDailyLimitReset:
|
|
5197
|
+
description: Object containing options to override the default daily limit reset
|
|
5198
|
+
time.
|
|
5199
|
+
properties:
|
|
5200
|
+
reset_time:
|
|
5201
|
+
description: String in `HH:00` format representing the time of day the daily
|
|
5202
|
+
limit should be reset. The hours must be between 00 and 23 (inclusive).
|
|
5203
|
+
example: '14:00'
|
|
5204
|
+
type: string
|
|
5205
|
+
reset_utc_offset:
|
|
5206
|
+
description: String in `(-|+)HH:00` format representing the UTC offset to
|
|
5207
|
+
apply to the given reset time. The hours must be between -12 and +14 (inclusive).
|
|
5208
|
+
example: +02:00
|
|
5209
|
+
type: string
|
|
5210
|
+
type: object
|
|
5183
5211
|
LogsDateRemapper:
|
|
5184
5212
|
description: "As Datadog receives logs, it timestamps them using the value(s)
|
|
5185
5213
|
from any of these default attributes.\n\n - `timestamp`\n - `date`\n -
|
|
@@ -5394,6 +5422,16 @@ components:
|
|
|
5394
5422
|
example: 300000000
|
|
5395
5423
|
format: int64
|
|
5396
5424
|
type: integer
|
|
5425
|
+
daily_limit_reset:
|
|
5426
|
+
$ref: '#/components/schemas/LogsDailyLimitReset'
|
|
5427
|
+
daily_limit_warning_threshold_percentage:
|
|
5428
|
+
description: A percentage threshold of the daily quota at which a Datadog
|
|
5429
|
+
warning event is generated.
|
|
5430
|
+
example: 70
|
|
5431
|
+
format: double
|
|
5432
|
+
maximum: 99.99
|
|
5433
|
+
minimum: 50
|
|
5434
|
+
type: number
|
|
5397
5435
|
exclusion_filters:
|
|
5398
5436
|
description: 'An array of exclusion objects. The logs are tested against
|
|
5399
5437
|
the query of each filter,
|
|
@@ -5449,6 +5487,16 @@ components:
|
|
|
5449
5487
|
example: 300000000
|
|
5450
5488
|
format: int64
|
|
5451
5489
|
type: integer
|
|
5490
|
+
daily_limit_reset:
|
|
5491
|
+
$ref: '#/components/schemas/LogsDailyLimitReset'
|
|
5492
|
+
daily_limit_warning_threshold_percentage:
|
|
5493
|
+
description: A percentage threshold of the daily quota at which a Datadog
|
|
5494
|
+
warning event is generated.
|
|
5495
|
+
example: 70
|
|
5496
|
+
format: double
|
|
5497
|
+
maximum: 99.99
|
|
5498
|
+
minimum: 50
|
|
5499
|
+
type: number
|
|
5452
5500
|
disable_daily_limit:
|
|
5453
5501
|
description: 'If true, sets the `daily_limit` value to null and the index
|
|
5454
5502
|
is not limited on a daily basis (any
|
|
@@ -6280,7 +6328,7 @@ components:
|
|
|
6280
6328
|
description: The metrics' payload.
|
|
6281
6329
|
properties:
|
|
6282
6330
|
series:
|
|
6283
|
-
description: A list of
|
|
6331
|
+
description: A list of timeseries to submit to Datadog.
|
|
6284
6332
|
example:
|
|
6285
6333
|
- metric: system.load.1
|
|
6286
6334
|
points:
|
|
@@ -6333,7 +6381,7 @@ components:
|
|
|
6333
6381
|
readOnly: true
|
|
6334
6382
|
type: string
|
|
6335
6383
|
pointlist:
|
|
6336
|
-
description: List of points of the
|
|
6384
|
+
description: List of points of the timeseries in milliseconds.
|
|
6337
6385
|
example:
|
|
6338
6386
|
- - 1681683300000.0
|
|
6339
6387
|
- 77.62145685254418
|
|
@@ -10061,7 +10109,7 @@ components:
|
|
|
10061
10109
|
description: 'The recurrence rules as defined in the iCalendar RFC 5545.
|
|
10062
10110
|
The supported rules for SLO corrections
|
|
10063
10111
|
|
|
10064
|
-
are `FREQ`, `INTERVAL`, `COUNT` and `
|
|
10112
|
+
are `FREQ`, `INTERVAL`, `COUNT`, `UNTIL` and `BYDAY`.'
|
|
10065
10113
|
example: FREQ=DAILY;INTERVAL=10;COUNT=5
|
|
10066
10114
|
type: string
|
|
10067
10115
|
slo_id:
|
|
@@ -10138,7 +10186,7 @@ components:
|
|
|
10138
10186
|
description: 'The recurrence rules as defined in the iCalendar RFC 5545.
|
|
10139
10187
|
The supported rules for SLO corrections
|
|
10140
10188
|
|
|
10141
|
-
are `FREQ`, `INTERVAL`, `COUNT`, and `
|
|
10189
|
+
are `FREQ`, `INTERVAL`, `COUNT`, `UNTIL` and `BYDAY`.'
|
|
10142
10190
|
example: FREQ=DAILY;INTERVAL=10;COUNT=5
|
|
10143
10191
|
nullable: true
|
|
10144
10192
|
type: string
|
|
@@ -10214,7 +10262,7 @@ components:
|
|
|
10214
10262
|
description: 'The recurrence rules as defined in the iCalendar RFC 5545.
|
|
10215
10263
|
The supported rules for SLO corrections
|
|
10216
10264
|
|
|
10217
|
-
are `FREQ`, `INTERVAL`, `COUNT`, and `
|
|
10265
|
+
are `FREQ`, `INTERVAL`, `COUNT`, `UNTIL` and `BYDAY`.'
|
|
10218
10266
|
example: FREQ=DAILY;INTERVAL=10;COUNT=5
|
|
10219
10267
|
type: string
|
|
10220
10268
|
start:
|
|
@@ -10361,7 +10409,7 @@ components:
|
|
|
10361
10409
|
- denominator
|
|
10362
10410
|
type: object
|
|
10363
10411
|
SLOHistoryMetricsSeries:
|
|
10364
|
-
description: 'A representation of `metric` based SLO
|
|
10412
|
+
description: 'A representation of `metric` based SLO timeseries for the provided
|
|
10365
10413
|
queries.
|
|
10366
10414
|
|
|
10367
10415
|
This is the same response type from `batch_query` endpoint.'
|
|
@@ -10482,18 +10530,18 @@ components:
|
|
|
10482
10530
|
type: string
|
|
10483
10531
|
history:
|
|
10484
10532
|
description: For `monitor` based SLOs, this includes the aggregated history
|
|
10485
|
-
as arrays that include
|
|
10533
|
+
as arrays that include timeseries and uptime data where `0=monitor` is
|
|
10486
10534
|
in `OK` state and `1=monitor` is in `alert` state.
|
|
10487
10535
|
example:
|
|
10488
10536
|
- - 1579212382
|
|
10489
10537
|
- 0
|
|
10490
10538
|
items:
|
|
10491
|
-
description: Represents an array
|
|
10539
|
+
description: Represents an array timeseries data.
|
|
10492
10540
|
example:
|
|
10493
10541
|
- 1579212382
|
|
10494
10542
|
- 0
|
|
10495
10543
|
items:
|
|
10496
|
-
description: A
|
|
10544
|
+
description: A timeseries data point which is a tuple of (timestamp,
|
|
10497
10545
|
value).
|
|
10498
10546
|
format: double
|
|
10499
10547
|
type: number
|
|
@@ -10664,18 +10712,18 @@ components:
|
|
|
10664
10712
|
type: string
|
|
10665
10713
|
history:
|
|
10666
10714
|
description: For `monitor` based SLOs, this includes the aggregated history
|
|
10667
|
-
as arrays that include
|
|
10715
|
+
as arrays that include timeseries and uptime data where `0=monitor` is
|
|
10668
10716
|
in `OK` state and `1=monitor` is in `alert` state.
|
|
10669
10717
|
example:
|
|
10670
10718
|
- - 1579212382
|
|
10671
10719
|
- 0
|
|
10672
10720
|
items:
|
|
10673
|
-
description: Represents an array
|
|
10721
|
+
description: Represents an array timeseries data.
|
|
10674
10722
|
example:
|
|
10675
10723
|
- 1579212382
|
|
10676
10724
|
- 0
|
|
10677
10725
|
items:
|
|
10678
|
-
description: A
|
|
10726
|
+
description: A timeseries data point which is a tuple of (timestamp,
|
|
10679
10727
|
value).
|
|
10680
10728
|
format: double
|
|
10681
10729
|
type: number
|
|
@@ -12819,7 +12867,7 @@ components:
|
|
|
12819
12867
|
description: Maximum number of graphs to display in the widget.
|
|
12820
12868
|
example: 24
|
|
12821
12869
|
format: int64
|
|
12822
|
-
maximum:
|
|
12870
|
+
maximum: 500
|
|
12823
12871
|
minimum: 1
|
|
12824
12872
|
type: integer
|
|
12825
12873
|
sort:
|
|
@@ -12835,7 +12883,7 @@ components:
|
|
|
12835
12883
|
description: Manual selection of tags making split graph widget static
|
|
12836
12884
|
items:
|
|
12837
12885
|
$ref: '#/components/schemas/SplitVectorEntry'
|
|
12838
|
-
maxItems:
|
|
12886
|
+
maxItems: 500
|
|
12839
12887
|
type: array
|
|
12840
12888
|
required:
|
|
12841
12889
|
- split_dimensions
|
|
@@ -14619,7 +14667,7 @@ components:
|
|
|
14619
14667
|
- edge.laptop_large
|
|
14620
14668
|
- edge.tablet
|
|
14621
14669
|
- edge.mobile_small
|
|
14622
|
-
example: laptop_large
|
|
14670
|
+
example: chrome.laptop_large
|
|
14623
14671
|
type: string
|
|
14624
14672
|
x-enum-varnames:
|
|
14625
14673
|
- LAPTOP_LARGE
|
|
@@ -15678,6 +15726,10 @@ components:
|
|
|
15678
15726
|
description: A protobuf JSON descriptor that needs to be gzipped first then
|
|
15679
15727
|
base64 encoded.
|
|
15680
15728
|
type: string
|
|
15729
|
+
compressedProtoFile:
|
|
15730
|
+
description: A protobuf file that needs to be gzipped first then base64
|
|
15731
|
+
encoded.
|
|
15732
|
+
type: string
|
|
15681
15733
|
dnsServer:
|
|
15682
15734
|
description: DNS server to use for DNS tests.
|
|
15683
15735
|
type: string
|
|
@@ -18015,7 +18067,7 @@ components:
|
|
|
18015
18067
|
type: array
|
|
18016
18068
|
type: object
|
|
18017
18069
|
UsageLambdaHour:
|
|
18018
|
-
description: 'Number of
|
|
18070
|
+
description: 'Number of Lambda functions and sum of the invocations of all Lambda
|
|
18019
18071
|
functions
|
|
18020
18072
|
|
|
18021
18073
|
for each hour for a given organization.'
|
|
@@ -18043,8 +18095,8 @@ components:
|
|
|
18043
18095
|
type: string
|
|
18044
18096
|
type: object
|
|
18045
18097
|
UsageLambdaResponse:
|
|
18046
|
-
description: 'Response containing the number of
|
|
18047
|
-
the invocations of all
|
|
18098
|
+
description: 'Response containing the number of Lambda functions and sum of
|
|
18099
|
+
the invocations of all Lambda functions
|
|
18048
18100
|
|
|
18049
18101
|
for each hour for a given organization.'
|
|
18050
18102
|
properties:
|
|
@@ -31118,7 +31170,7 @@ paths:
|
|
|
31118
31170
|
- Usage Metering
|
|
31119
31171
|
/api/v1/usage/aws_lambda:
|
|
31120
31172
|
get:
|
|
31121
|
-
description: 'Get hourly usage for
|
|
31173
|
+
description: 'Get hourly usage for Lambda.
|
|
31122
31174
|
|
|
31123
31175
|
**Note:** hourly usage data for all products is now available in the [Get
|
|
31124
31176
|
hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family).
|
|
@@ -31172,7 +31224,7 @@ paths:
|
|
|
31172
31224
|
appKeyAuth: []
|
|
31173
31225
|
- AuthZ:
|
|
31174
31226
|
- usage_read
|
|
31175
|
-
summary: Get hourly usage for
|
|
31227
|
+
summary: Get hourly usage for Lambda
|
|
31176
31228
|
tags:
|
|
31177
31229
|
- Usage Metering
|
|
31178
31230
|
/api/v1/usage/billable-summary:
|
|
@@ -33521,9 +33573,9 @@ tags:
|
|
|
33521
33573
|
- description: 'Configure your Datadog-AWS-Logs integration directly through Datadog
|
|
33522
33574
|
API.
|
|
33523
33575
|
|
|
33524
|
-
For more information, see the [AWS integration page](https://docs.datadoghq.com/
|
|
33576
|
+
For more information, see the [AWS integration page](https://docs.datadoghq.com/integrations/amazon_web_services/#log-collection).'
|
|
33525
33577
|
externalDocs:
|
|
33526
|
-
url: https://docs.datadoghq.com/
|
|
33578
|
+
url: https://docs.datadoghq.com/integrations/amazon_web_services/#log-collection
|
|
33527
33579
|
name: AWS Logs Integration
|
|
33528
33580
|
- description: "All requests to Datadog\u2019s API must be authenticated.\nRequests
|
|
33529
33581
|
that write data require reporting access and require an `API key`.\nRequests that
|
|
@@ -33531,7 +33583,9 @@ tags:
|
|
|
33531
33583
|
All Datadog API clients are configured by default to consume Datadog US site APIs.\nIf
|
|
33532
33584
|
you are on the Datadog EU site, set the environment variable `DATADOG_HOST` to\n`https://api.datadoghq.eu`
|
|
33533
33585
|
or override this value directly when creating your client.\n\n[Manage your account\u2019s
|
|
33534
|
-
API and application keys](https://app.datadoghq.com/
|
|
33586
|
+
API and application keys](https://app.datadoghq.com/organization-settings/) in
|
|
33587
|
+
Datadog, and see the [API and Application Keys page](https://docs.datadoghq.com/account_management/api-app-keys/)
|
|
33588
|
+
in the documentation."
|
|
33535
33589
|
name: Authentication
|
|
33536
33590
|
- description: 'Configure your Datadog-Azure integration directly through the Datadog
|
|
33537
33591
|
API.
|
|
@@ -33547,10 +33601,9 @@ tags:
|
|
|
33547
33601
|
organization.'
|
|
33548
33602
|
name: Dashboard Lists
|
|
33549
33603
|
x-deprecated: true
|
|
33550
|
-
- description:
|
|
33551
|
-
|
|
33552
|
-
|
|
33553
|
-
find, and share all of your dashboards with your team and organization.'
|
|
33604
|
+
- description: Manage all your dashboards, as well as access to your shared dashboards,
|
|
33605
|
+
through the API. See the [Dashboards page](https://docs.datadoghq.com/dashboards/)
|
|
33606
|
+
for more information.
|
|
33554
33607
|
name: Dashboards
|
|
33555
33608
|
- description: '[Downtiming](https://docs.datadoghq.com/monitors/notify/downtimes)
|
|
33556
33609
|
gives
|
|
@@ -33561,15 +33614,11 @@ tags:
|
|
|
33561
33614
|
|
|
33562
33615
|
end times, prevent all alerting related to specified Datadog tags.'
|
|
33563
33616
|
name: Downtimes
|
|
33564
|
-
- description: 'The
|
|
33565
|
-
|
|
33617
|
+
- description: 'The Event Management API allows you to programmatically post events
|
|
33618
|
+
to the Events Explorer
|
|
33566
33619
|
|
|
33567
|
-
and fetch events from the
|
|
33568
|
-
|
|
33569
|
-
If an event is sent out with a message containing more than 4000 characters, only
|
|
33570
|
-
the
|
|
33571
|
-
|
|
33572
|
-
first 4000 characters are displayed.'
|
|
33620
|
+
and fetch events from the Events Explorer. See the [Event Management page](https://docs.datadoghq.com/service_management/events/)
|
|
33621
|
+
for more information.'
|
|
33573
33622
|
name: Events
|
|
33574
33623
|
- description: 'Configure your Datadog-Google Cloud Platform (GCP) integration directly
|
|
33575
33624
|
|
|
@@ -33577,7 +33626,9 @@ tags:
|
|
|
33577
33626
|
externalDocs:
|
|
33578
33627
|
url: https://docs.datadoghq.com/integrations/google_cloud_platform
|
|
33579
33628
|
name: GCP Integration
|
|
33580
|
-
- description: Get information about your
|
|
33629
|
+
- description: Get information about your infrastructure hosts in Datadog, and mute
|
|
33630
|
+
or unmute any notifications from your hosts. See the [Infrastructure page](https://docs.datadoghq.com/infrastructure/)
|
|
33631
|
+
for more information.
|
|
33581
33632
|
name: Hosts
|
|
33582
33633
|
- description: Get a list of IP prefixes belonging to Datadog.
|
|
33583
33634
|
name: IP Ranges
|
|
@@ -33774,7 +33825,9 @@ tags:
|
|
|
33774
33825
|
|
|
33775
33826
|
You can retrieve up to 24 hours of hourly usage data for multiple organizations,
|
|
33776
33827
|
|
|
33777
|
-
and up to two months of hourly usage data for a single organization in one request.
|
|
33828
|
+
and up to two months of hourly usage data for a single organization in one request.
|
|
33829
|
+
|
|
33830
|
+
Learn more on the [usage details documentation](https://docs.datadoghq.com/account_management/billing/usage_details/).'
|
|
33778
33831
|
externalDocs:
|
|
33779
33832
|
description: Find out more at
|
|
33780
33833
|
url: https://docs.datadoghq.com/account_management/billing/usage_details/
|