Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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.

Expand Down Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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<AWSLogsAsyncResponse> checkAWSLogsLambdaAsyncAsync(
AWSAccountAndLambdaRequest body) {
return checkAWSLogsLambdaAsyncWithHttpInfoAsync(body)
Expand All @@ -80,10 +84,10 @@ public CompletableFuture<AWSLogsAsyncResponse> 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.
* <strong>This endpoint is deprecated.</strong> 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.
*
* <ul>
* <li>Returns a status of 'created' when it's checking if the Lambda exists in the account.
Expand All @@ -104,7 +108,10 @@ public CompletableFuture<AWSLogsAsyncResponse> checkAWSLogsLambdaAsyncAsync(
* <tr><td> 403 </td><td> Authentication Error </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<AWSLogsAsyncResponse> checkAWSLogsLambdaAsyncWithHttpInfo(
AWSAccountAndLambdaRequest body) throws ApiException {
Object localVarPostBody = body;
Expand Down Expand Up @@ -146,7 +153,9 @@ public ApiResponse<AWSLogsAsyncResponse> checkAWSLogsLambdaAsyncWithHttpInfo(
*
* @param body Check AWS Log Lambda Async request body. (required)
* @return CompletableFuture&lt;ApiResponse&lt;AWSLogsAsyncResponse&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<AWSLogsAsyncResponse>>
checkAWSLogsLambdaAsyncWithHttpInfoAsync(AWSAccountAndLambdaRequest body) {
Object localVarPostBody = body;
Expand Down Expand Up @@ -199,7 +208,9 @@ public ApiResponse<AWSLogsAsyncResponse> checkAWSLogsLambdaAsyncWithHttpInfo(
* @param body Check AWS Logs Async Services request body. (required)
* @return AWSLogsAsyncResponse
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public AWSLogsAsyncResponse checkAWSLogsServicesAsync(AWSLogsServicesRequest body)
throws ApiException {
return checkAWSLogsServicesAsyncWithHttpInfo(body).getData();
Expand All @@ -212,7 +223,9 @@ public AWSLogsAsyncResponse checkAWSLogsServicesAsync(AWSLogsServicesRequest bod
*
* @param body Check AWS Logs Async Services request body. (required)
* @return CompletableFuture&lt;AWSLogsAsyncResponse&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<AWSLogsAsyncResponse> checkAWSLogsServicesAsyncAsync(
AWSLogsServicesRequest body) {
return checkAWSLogsServicesAsyncWithHttpInfoAsync(body)
Expand All @@ -223,9 +236,10 @@ public CompletableFuture<AWSLogsAsyncResponse> checkAWSLogsServicesAsyncAsync(
}

/**
* Test if permissions are present to add log-forwarding triggers for the given services and AWS
* account. Input is the same as for <code>EnableAWSLogServices</code>. Done async, so can be
* repeatedly polled in a non-blocking fashion until the async request completes.
* <strong>This endpoint is deprecated.</strong> Test if permissions are present to add
* log-forwarding triggers for the given services and AWS account. Input is the same as for <code>
* EnableAWSLogServices</code>. Done async, so can be repeatedly polled in a non-blocking fashion
* until the async request completes.
*
* <ul>
* <li>Returns a status of <code>created</code> when it's checking if the permissions exists in
Expand All @@ -247,7 +261,10 @@ public CompletableFuture<AWSLogsAsyncResponse> checkAWSLogsServicesAsyncAsync(
* <tr><td> 403 </td><td> Authentication Error </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<AWSLogsAsyncResponse> checkAWSLogsServicesAsyncWithHttpInfo(
AWSLogsServicesRequest body) throws ApiException {
Object localVarPostBody = body;
Expand Down Expand Up @@ -289,7 +306,9 @@ public ApiResponse<AWSLogsAsyncResponse> checkAWSLogsServicesAsyncWithHttpInfo(
*
* @param body Check AWS Logs Async Services request body. (required)
* @return CompletableFuture&lt;ApiResponse&lt;AWSLogsAsyncResponse&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<AWSLogsAsyncResponse>>
checkAWSLogsServicesAsyncWithHttpInfoAsync(AWSLogsServicesRequest body) {
Object localVarPostBody = body;
Expand Down Expand Up @@ -342,7 +361,9 @@ public ApiResponse<AWSLogsAsyncResponse> checkAWSLogsServicesAsyncWithHttpInfo(
* @param body AWS Log Lambda Async request body. (required)
* @return Object
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public Object createAWSLambdaARN(AWSAccountAndLambdaRequest body) throws ApiException {
return createAWSLambdaARNWithHttpInfo(body).getData();
}
Expand All @@ -354,7 +375,9 @@ public Object createAWSLambdaARN(AWSAccountAndLambdaRequest body) throws ApiExce
*
* @param body AWS Log Lambda Async request body. (required)
* @return CompletableFuture&lt;Object&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<Object> createAWSLambdaARNAsync(AWSAccountAndLambdaRequest body) {
return createAWSLambdaARNWithHttpInfoAsync(body)
.thenApply(
Expand All @@ -364,8 +387,8 @@ public CompletableFuture<Object> createAWSLambdaARNAsync(AWSAccountAndLambdaRequ
}

/**
* Attach the Lambda ARN of the Lambda created for the Datadog-AWS log collection to your AWS
* account ID to enable log collection.
* <strong>This endpoint is deprecated.</strong> Attach the Lambda ARN of the Lambda created for
* the Datadog-AWS log collection to your AWS account ID to enable log collection.
*
* @param body AWS Log Lambda Async request body. (required)
* @return ApiResponse&lt;Object&gt;
Expand All @@ -379,7 +402,10 @@ public CompletableFuture<Object> createAWSLambdaARNAsync(AWSAccountAndLambdaRequ
* <tr><td> 403 </td><td> Authentication Error </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<Object> createAWSLambdaARNWithHttpInfo(AWSAccountAndLambdaRequest body)
throws ApiException {
Object localVarPostBody = body;
Expand Down Expand Up @@ -421,7 +447,9 @@ public ApiResponse<Object> createAWSLambdaARNWithHttpInfo(AWSAccountAndLambdaReq
*
* @param body AWS Log Lambda Async request body. (required)
* @return CompletableFuture&lt;ApiResponse&lt;Object&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<Object>> createAWSLambdaARNWithHttpInfoAsync(
AWSAccountAndLambdaRequest body) {
Object localVarPostBody = body;
Expand Down Expand Up @@ -474,7 +502,9 @@ public CompletableFuture<ApiResponse<Object>> createAWSLambdaARNWithHttpInfoAsyn
* @param body Delete AWS Lambda ARN request body. (required)
* @return Object
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public Object deleteAWSLambdaARN(AWSAccountAndLambdaRequest body) throws ApiException {
return deleteAWSLambdaARNWithHttpInfo(body).getData();
}
Expand All @@ -486,7 +516,9 @@ public Object deleteAWSLambdaARN(AWSAccountAndLambdaRequest body) throws ApiExce
*
* @param body Delete AWS Lambda ARN request body. (required)
* @return CompletableFuture&lt;Object&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<Object> deleteAWSLambdaARNAsync(AWSAccountAndLambdaRequest body) {
return deleteAWSLambdaARNWithHttpInfoAsync(body)
.thenApply(
Expand All @@ -496,8 +528,8 @@ public CompletableFuture<Object> deleteAWSLambdaARNAsync(AWSAccountAndLambdaRequ
}

/**
* Delete a Datadog-AWS logs configuration by removing the specific Lambda ARN associated with a
* given AWS account.
* <strong>This endpoint is deprecated.</strong> Delete a Datadog-AWS logs configuration by
* removing the specific Lambda ARN associated with a given AWS account.
*
* @param body Delete AWS Lambda ARN request body. (required)
* @return ApiResponse&lt;Object&gt;
Expand All @@ -511,7 +543,10 @@ public CompletableFuture<Object> deleteAWSLambdaARNAsync(AWSAccountAndLambdaRequ
* <tr><td> 403 </td><td> Authentication Error </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<Object> deleteAWSLambdaARNWithHttpInfo(AWSAccountAndLambdaRequest body)
throws ApiException {
Object localVarPostBody = body;
Expand Down Expand Up @@ -553,7 +588,9 @@ public ApiResponse<Object> deleteAWSLambdaARNWithHttpInfo(AWSAccountAndLambdaReq
*
* @param body Delete AWS Lambda ARN request body. (required)
* @return CompletableFuture&lt;ApiResponse&lt;Object&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<Object>> deleteAWSLambdaARNWithHttpInfoAsync(
AWSAccountAndLambdaRequest body) {
Object localVarPostBody = body;
Expand Down
Loading