You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .generator/schemas/v1/openapi.yaml
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -32327,8 +32327,9 @@ paths:
32327
32327
- aws_configuration_edit
32328
32328
/api/v1/integration/aws/logs:
32329
32329
delete:
32330
+
deprecated: true
32330
32331
description: >-
32331
-
Delete a Datadog-AWS logs configuration by removing the specific Lambda ARN associated with a given AWS account.
32332
+
**This endpoint is deprecated.** Delete a Datadog-AWS logs configuration by removing the specific Lambda ARN associated with a given AWS account.
32332
32333
operationId: DeleteAWSLambdaARN
32333
32334
requestBody:
32334
32335
content:
@@ -32423,8 +32424,9 @@ paths:
32423
32424
permissions:
32424
32425
- aws_configuration_read
32425
32426
post:
32427
+
deprecated: true
32426
32428
description: >-
32427
-
Attach the Lambda ARN of the Lambda created for the Datadog-AWS log collection to your AWS account ID to enable log collection.
32429
+
**This endpoint is deprecated.** Attach the Lambda ARN of the Lambda created for the Datadog-AWS log collection to your AWS account ID to enable log collection.
32428
32430
operationId: CreateAWSLambdaARN
32429
32431
requestBody:
32430
32432
content:
@@ -32472,8 +32474,9 @@ paths:
32472
32474
- aws_configuration_edit
32473
32475
/api/v1/integration/aws/logs/check_async:
32474
32476
post:
32477
+
deprecated: true
32475
32478
description: |-
32476
-
Test if permissions are present to add a log-forwarding triggers for the given services and AWS account. The input
32479
+
**This endpoint is deprecated.** Test if permissions are present to add a log-forwarding triggers for the given services and AWS account. The input
32477
32480
is the same as for Enable an AWS service log collection. Subsequent requests will always repeat the above, so this
32478
32481
endpoint can be polled intermittently instead of blocking.
32479
32482
@@ -32623,8 +32626,9 @@ paths:
32623
32626
- aws_configuration_edit
32624
32627
/api/v1/integration/aws/logs/services_async:
32625
32628
post:
32629
+
deprecated: true
32626
32630
description: |-
32627
-
Test if permissions are present to add log-forwarding triggers for the
32631
+
**This endpoint is deprecated.** Test if permissions are present to add log-forwarding triggers for the
32628
32632
given services and AWS account. Input is the same as for `EnableAWSLogServices`.
32629
32633
Done async, so can be repeatedly polled in a non-blocking fashion until
Attach the Lambda ARN of the Lambda created for the Datadog-AWS log collection to your AWS account ID to enable log collection.
219
+
**This endpoint is deprecated.** Attach the Lambda ARN of the Lambda created for the Datadog-AWS log collection to your AWS account ID to enable log collection.
218
220
219
221
:param body: AWS Log Lambda Async request body.
220
222
:type body: AWSAccountAndLambdaRequest
@@ -223,15 +225,16 @@ def create_aws_lambda_arn(
223
225
kwargs: Dict[str, Any] = {}
224
226
kwargs["body"] =body
225
227
228
+
warnings.warn("create_aws_lambda_arn is deprecated", DeprecationWarning, stacklevel=2)
0 commit comments