Skip to content

Commit 4f64b34

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit d77820d of spec repo
1 parent 8ed43cd commit 4f64b34

File tree

4 files changed

+42
-26
lines changed

4 files changed

+42
-26
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,20 @@ components:
6464
additionalProperties:
6565
description: A list of additional properties.
6666
type: boolean
67-
description: 'An object, (in the form `{"namespace1":true/false, "namespace2":true/false}`),
67+
description: 'An object (in the form `{"namespace1":true/false, "namespace2":true/false}`)
68+
containing user-supplied overrides
6869

69-
that enables or disables metric collection for specific AWS namespaces
70-
for this
70+
for AWS namespace metric collection. **Important**: This field only contains
71+
namespaces explicitly configured via API calls,
7172

72-
AWS account only.'
73+
not the comprehensive enabled/disabled status of all namespaces. If a
74+
namespace is absent from this field, it uses Datadog''s
75+
76+
internal defaults (most namespaces enabled by default, except `AWS/SQS`,
77+
`AWS/ElasticMapReduce`, and `AWS/Usage`).
78+
79+
For a complete view of all namespace statuses, use the V2 AWS Integration
80+
API instead.'
7381
example:
7482
auto_scaling: false
7583
opswork: false
@@ -27394,8 +27402,9 @@ paths:
2739427402
/api/v1/integration/aws:
2739527403
delete:
2739627404
deprecated: true
27397-
description: Delete a Datadog-AWS integration matching the specified `account_id`
27398-
and `role_name parameters`.
27405+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
27406+
Delete a Datadog-AWS integration matching the specified `account_id` and `role_name
27407+
parameters`.'
2739927408
operationId: DeleteAWSAccount
2740027409
requestBody:
2740127410
content:
@@ -27441,7 +27450,8 @@ paths:
2744127450
- aws_configurations_manage
2744227451
get:
2744327452
deprecated: true
27444-
description: List all Datadog-AWS integrations available in your Datadog organization.
27453+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
27454+
List all Datadog-AWS integrations available in your Datadog organization.'
2744527455
operationId: ListAWSAccounts
2744627456
parameters:
2744727457
- description: Only return AWS accounts that matches this `account_id`.
@@ -27492,7 +27502,8 @@ paths:
2749227502
- aws_configuration_read
2749327503
post:
2749427504
deprecated: true
27495-
description: 'Create a Datadog-Amazon Web Services integration.
27505+
description: '"**This endpoint is deprecated - use the V2 endpoints instead.**
27506+
Create a Datadog-Amazon Web Services integration.
2749627507

2749727508
Using the `POST` method updates your integration configuration
2749827509

@@ -27544,7 +27555,8 @@ paths:
2754427555
- aws_configurations_manage
2754527556
put:
2754627557
deprecated: true
27547-
description: Update a Datadog-Amazon Web Services integration.
27558+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
27559+
Update a Datadog-Amazon Web Services integration.'
2754827560
operationId: UpdateAWSAccount
2754927561
parameters:
2755027562
- description: Only return AWS accounts that matches this `account_id`.
@@ -27614,8 +27626,9 @@ paths:
2761427626
/api/v1/integration/aws/available_namespace_rules:
2761527627
get:
2761627628
deprecated: true
27617-
description: List all namespace rules for a given Datadog-AWS integration. This
27618-
endpoint takes no arguments.
27629+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
27630+
List all namespace rules for a given Datadog-AWS integration. This endpoint
27631+
takes no arguments.'
2761927632
operationId: ListAvailableAWSNamespaces
2762027633
responses:
2762127634
'200':
@@ -27887,8 +27900,8 @@ paths:
2788727900
/api/v1/integration/aws/generate_new_external_id:
2788827901
put:
2788927902
deprecated: true
27890-
description: Generate a new AWS external ID for a given AWS account ID and role
27891-
name pair.
27903+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
27904+
Generate a new AWS external ID for a given AWS account ID and role name pair.'
2789227905
operationId: CreateNewAWSExternalID
2789327906
requestBody:
2789427907
content:
@@ -28115,9 +28128,10 @@ paths:
2811528128
/api/v1/integration/aws/logs/services:
2811628129
get:
2811728130
deprecated: true
28118-
description: Get the list of current AWS services that Datadog offers automatic
28119-
log collection. Use returned service IDs with the services parameter for the
28120-
Enable an AWS service log collection API endpoint.
28131+
description: '**This endpoint is deprecated - use the V2 endpoint instead.**
28132+
Get the list of current AWS services that Datadog offers automatic log collection.
28133+
Use returned service IDs with the services parameter for the Enable an AWS
28134+
service log collection API endpoint.'
2812128135
operationId: ListAWSLogsServices
2812228136
responses:
2812328137
'200':

packages/datadog-api-client-v1/apis/AWSIntegrationApi.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,7 @@ export class AWSIntegrationApi {
13881388
}
13891389

13901390
/**
1391-
* Create a Datadog-Amazon Web Services integration.
1391+
* "**This endpoint is deprecated - use the V2 endpoints instead.** Create a Datadog-Amazon Web Services integration.
13921392
* Using the `POST` method updates your integration configuration
13931393
* by adding your new configuration to the existing one in your Datadog organization.
13941394
* A unique AWS Account ID for role based authentication.
@@ -1454,7 +1454,7 @@ export class AWSIntegrationApi {
14541454
}
14551455

14561456
/**
1457-
* Generate a new AWS external ID for a given AWS account ID and role name pair.
1457+
* **This endpoint is deprecated - use the V2 endpoints instead.** Generate a new AWS external ID for a given AWS account ID and role name pair.
14581458
* @param param The request object
14591459
*/
14601460
public createNewAWSExternalID(
@@ -1475,7 +1475,7 @@ export class AWSIntegrationApi {
14751475
}
14761476

14771477
/**
1478-
* Delete a Datadog-AWS integration matching the specified `account_id` and `role_name parameters`.
1478+
* **This endpoint is deprecated - use the V2 endpoints instead.** Delete a Datadog-AWS integration matching the specified `account_id` and `role_name parameters`.
14791479
* @param param The request object
14801480
*/
14811481
public deleteAWSAccount(
@@ -1538,7 +1538,7 @@ export class AWSIntegrationApi {
15381538
}
15391539

15401540
/**
1541-
* List all namespace rules for a given Datadog-AWS integration. This endpoint takes no arguments.
1541+
* **This endpoint is deprecated - use the V2 endpoints instead.** List all namespace rules for a given Datadog-AWS integration. This endpoint takes no arguments.
15421542
* @param param The request object
15431543
*/
15441544
public listAvailableAWSNamespaces(
@@ -1558,7 +1558,7 @@ export class AWSIntegrationApi {
15581558
}
15591559

15601560
/**
1561-
* List all Datadog-AWS integrations available in your Datadog organization.
1561+
* **This endpoint is deprecated - use the V2 endpoints instead.** List all Datadog-AWS integrations available in your Datadog organization.
15621562
* @param param The request object
15631563
*/
15641564
public listAWSAccounts(
@@ -1622,7 +1622,7 @@ export class AWSIntegrationApi {
16221622
}
16231623

16241624
/**
1625-
* Update a Datadog-Amazon Web Services integration.
1625+
* **This endpoint is deprecated - use the V2 endpoints instead.** Update a Datadog-Amazon Web Services integration.
16261626
* @param param The request object
16271627
*/
16281628
public updateAWSAccount(

packages/datadog-api-client-v1/apis/AWSLogsIntegrationApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ export class AWSLogsIntegrationApi {
909909
}
910910

911911
/**
912-
* Get the list of current AWS services that Datadog offers automatic log collection. Use returned service IDs with the services parameter for the Enable an AWS service log collection API endpoint.
912+
* **This endpoint is deprecated - use the V2 endpoint instead.** Get the list of current AWS services that Datadog offers automatic log collection. Use returned service IDs with the services parameter for the Enable an AWS service log collection API endpoint.
913913
* @param param The request object
914914
*/
915915
public listAWSLogsServices(

packages/datadog-api-client-v1/models/AWSAccount.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ export class AWSAccount {
1919
*/
2020
"accountId"?: string;
2121
/**
22-
* An object, (in the form `{"namespace1":true/false, "namespace2":true/false}`),
23-
* that enables or disables metric collection for specific AWS namespaces for this
24-
* AWS account only.
22+
* An object (in the form `{"namespace1":true/false, "namespace2":true/false}`) containing user-supplied overrides
23+
* for AWS namespace metric collection. **Important**: This field only contains namespaces explicitly configured via API calls,
24+
* not the comprehensive enabled/disabled status of all namespaces. If a namespace is absent from this field, it uses Datadog's
25+
* internal defaults (most namespaces enabled by default, except `AWS/SQS`, `AWS/ElasticMapReduce`, and `AWS/Usage`).
26+
* For a complete view of all namespace statuses, use the V2 AWS Integration API instead.
2527
*/
2628
"accountSpecificNamespaceRules"?: { [key: string]: boolean };
2729
/**

0 commit comments

Comments
 (0)