diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 2ba4dbf6d68..b62ca3eab33 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -32327,8 +32327,9 @@ paths: - aws_configuration_edit /api/v1/integration/aws/logs: delete: + deprecated: true description: >- - Delete a Datadog-AWS logs configuration by removing the specific Lambda ARN associated with a given AWS account. + **This endpoint is deprecated.** Delete a Datadog-AWS logs configuration by removing the specific Lambda ARN associated with a given AWS account. operationId: DeleteAWSLambdaARN requestBody: content: @@ -32423,8 +32424,9 @@ paths: permissions: - aws_configuration_read post: + deprecated: true description: >- - Attach the Lambda ARN of the Lambda created for the Datadog-AWS log collection to your AWS account ID to enable log collection. + **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. operationId: CreateAWSLambdaARN requestBody: content: @@ -32472,8 +32474,9 @@ paths: - aws_configuration_edit /api/v1/integration/aws/logs/check_async: post: + deprecated: true description: |- - Test if permissions are present to add a log-forwarding triggers for the given services and AWS account. The input + **This endpoint is deprecated.** Test if permissions are present to add a log-forwarding triggers for the given services and AWS account. The input is the same as for Enable an AWS service log collection. Subsequent requests will always repeat the above, so this endpoint can be polled intermittently instead of blocking. @@ -32623,8 +32626,9 @@ paths: - aws_configuration_edit /api/v1/integration/aws/logs/services_async: post: + deprecated: true description: |- - Test if permissions are present to add log-forwarding triggers for the + **This endpoint is deprecated.** Test if permissions are present to add log-forwarding triggers for the given services and AWS account. Input is the same as for `EnableAWSLogServices`. Done async, so can be repeatedly polled in a non-blocking fashion until the async request completes. diff --git a/src/main/java/com/datadog/api/client/v1/api/AwsLogsIntegrationApi.java b/src/main/java/com/datadog/api/client/v1/api/AwsLogsIntegrationApi.java index 01231900ab4..a9850dcf6e7 100644 --- a/src/main/java/com/datadog/api/client/v1/api/AwsLogsIntegrationApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/AwsLogsIntegrationApi.java @@ -56,7 +56,9 @@ public void setApiClient(ApiClient apiClient) { * @param body Check AWS Log Lambda Async request body. (required) * @return AWSLogsAsyncResponse * @throws ApiException if fails to make API call + * @deprecated */ + @Deprecated public AWSLogsAsyncResponse checkAWSLogsLambdaAsync(AWSAccountAndLambdaRequest body) throws ApiException { return checkAWSLogsLambdaAsyncWithHttpInfo(body).getData(); @@ -69,7 +71,9 @@ public AWSLogsAsyncResponse checkAWSLogsLambdaAsync(AWSAccountAndLambdaRequest b * * @param body Check AWS Log Lambda Async request body. (required) * @return CompletableFuture<AWSLogsAsyncResponse> + * @deprecated */ + @Deprecated public CompletableFuture checkAWSLogsLambdaAsyncAsync( AWSAccountAndLambdaRequest body) { return checkAWSLogsLambdaAsyncWithHttpInfoAsync(body) @@ -80,10 +84,10 @@ public CompletableFuture checkAWSLogsLambdaAsyncAsync( } /** - * Test if permissions are present to add a log-forwarding triggers for the given services and AWS - * account. The input is the same as for Enable an AWS service log collection. Subsequent requests - * will always repeat the above, so this endpoint can be polled intermittently instead of - * blocking. + * This endpoint is deprecated. Test if permissions are present to add a + * log-forwarding triggers for the given services and AWS account. The input is the same as for + * Enable an AWS service log collection. Subsequent requests will always repeat the above, so this + * endpoint can be polled intermittently instead of blocking. * *