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
Copy file name to clipboardExpand all lines: services/aws_logs_integration/src/v1/AWSLogsIntegrationApi.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -833,7 +833,7 @@ export class AWSLogsIntegrationApi {
833
833
}
834
834
835
835
/**
836
-
* Test if permissions are present to add a log-forwarding triggers for the given services and AWS account. The input
836
+
* **This endpoint is deprecated.** Test if permissions are present to add a log-forwarding triggers for the given services and AWS account. The input
837
837
* is the same as for Enable an AWS service log collection. Subsequent requests will always repeat the above, so this
838
838
* endpoint can be polled intermittently instead of blocking.
839
839
*
@@ -863,7 +863,7 @@ export class AWSLogsIntegrationApi {
863
863
}
864
864
865
865
/**
866
-
* Test if permissions are present to add log-forwarding triggers for the
866
+
* **This endpoint is deprecated.** Test if permissions are present to add log-forwarding triggers for the
867
867
* given services and AWS account. Input is the same as for `EnableAWSLogServices`.
868
868
* Done async, so can be repeatedly polled in a non-blocking fashion until
869
869
* the async request completes.
@@ -895,7 +895,7 @@ export class AWSLogsIntegrationApi {
895
895
}
896
896
897
897
/**
898
-
* Attach the Lambda ARN of the Lambda created for the Datadog-AWS log collection to your AWS account ID to enable log collection.
898
+
* **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.
899
899
* @param param The request object
900
900
*/
901
901
publiccreateAWSLambdaARN(
@@ -916,7 +916,7 @@ export class AWSLogsIntegrationApi {
916
916
}
917
917
918
918
/**
919
-
* Delete a Datadog-AWS logs configuration by removing the specific Lambda ARN associated with a given AWS account.
919
+
* **This endpoint is deprecated.** Delete a Datadog-AWS logs configuration by removing the specific Lambda ARN associated with a given AWS account.
0 commit comments