Skip to content

Commit 2d76f19

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit e31a80b of spec repo
1 parent a642dda commit 2d76f19

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 through API calls,
7172

72-
AWS account only.'
73+
not the comprehensive enabled or disabled status of all namespaces. If
74+
a namespace is absent from this field, it uses Datadog''s
75+
76+
internal defaults (all 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
@@ -27635,8 +27643,9 @@ paths:
2763527643
/api/v1/integration/aws:
2763627644
delete:
2763727645
deprecated: true
27638-
description: Delete a Datadog-AWS integration matching the specified `account_id`
27639-
and `role_name parameters`.
27646+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
27647+
Delete a Datadog-AWS integration matching the specified `account_id` and `role_name
27648+
parameters`.'
2764027649
operationId: DeleteAWSAccount
2764127650
requestBody:
2764227651
content:
@@ -27682,7 +27691,8 @@ paths:
2768227691
- aws_configurations_manage
2768327692
get:
2768427693
deprecated: true
27685-
description: List all Datadog-AWS integrations available in your Datadog organization.
27694+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
27695+
List all Datadog-AWS integrations available in your Datadog organization.'
2768627696
operationId: ListAWSAccounts
2768727697
parameters:
2768827698
- description: Only return AWS accounts that matches this `account_id`.
@@ -27733,7 +27743,8 @@ paths:
2773327743
- aws_configuration_read
2773427744
post:
2773527745
deprecated: true
27736-
description: 'Create a Datadog-Amazon Web Services integration.
27746+
description: '"**This endpoint is deprecated - use the V2 endpoints instead.**
27747+
Create a Datadog-Amazon Web Services integration.
2773727748

2773827749
Using the `POST` method updates your integration configuration
2773927750

@@ -27785,7 +27796,8 @@ paths:
2778527796
- aws_configurations_manage
2778627797
put:
2778727798
deprecated: true
27788-
description: Update a Datadog-Amazon Web Services integration.
27799+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
27800+
Update a Datadog-Amazon Web Services integration.'
2778927801
operationId: UpdateAWSAccount
2779027802
parameters:
2779127803
- description: Only return AWS accounts that matches this `account_id`.
@@ -27855,8 +27867,9 @@ paths:
2785527867
/api/v1/integration/aws/available_namespace_rules:
2785627868
get:
2785727869
deprecated: true
27858-
description: List all namespace rules for a given Datadog-AWS integration. This
27859-
endpoint takes no arguments.
27870+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
27871+
List all namespace rules for a given Datadog-AWS integration. This endpoint
27872+
takes no arguments.'
2786027873
operationId: ListAvailableAWSNamespaces
2786127874
responses:
2786227875
'200':
@@ -28131,8 +28144,8 @@ paths:
2813128144
/api/v1/integration/aws/generate_new_external_id:
2813228145
put:
2813328146
deprecated: true
28134-
description: Generate a new AWS external ID for a given AWS account ID and role
28135-
name pair.
28147+
description: '**This endpoint is deprecated - use the V2 endpoints instead.**
28148+
Generate a new AWS external ID for a given AWS account ID and role name pair.'
2813628149
operationId: CreateNewAWSExternalID
2813728150
requestBody:
2813828151
content:
@@ -28359,9 +28372,10 @@ paths:
2835928372
/api/v1/integration/aws/logs/services:
2836028373
get:
2836128374
deprecated: true
28362-
description: Get the list of current AWS services that Datadog offers automatic
28363-
log collection. Use returned service IDs with the services parameter for the
28364-
Enable an AWS service log collection API endpoint.
28375+
description: '**This endpoint is deprecated - use the V2 endpoint instead.**
28376+
Get the list of current AWS services that Datadog offers automatic log collection.
28377+
Use returned service IDs with the services parameter for the Enable an AWS
28378+
service log collection API endpoint.'
2836528379
operationId: ListAWSLogsServices
2836628380
responses:
2836728381
'200':

lib/datadog_api_client/v1/api/aws_integration_api.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def create_aws_account(body, opts = {})
3333

3434
# Create an AWS integration.
3535
#
36-
# Create a Datadog-Amazon Web Services integration.
36+
# "**This endpoint is deprecated - use the V2 endpoints instead.** Create a Datadog-Amazon Web Services integration.
3737
# Using the `POST` method updates your integration configuration
3838
# by adding your new configuration to the existing one in your Datadog organization.
3939
# A unique AWS Account ID for role based authentication.
@@ -246,7 +246,7 @@ def create_new_aws_external_id(body, opts = {})
246246

247247
# Generate a new external ID.
248248
#
249-
# Generate a new AWS external ID for a given AWS account ID and role name pair.
249+
# **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.
250250
#
251251
# @deprecated This API is deprecated.
252252
#
@@ -316,7 +316,7 @@ def delete_aws_account(body, opts = {})
316316

317317
# Delete an AWS integration.
318318
#
319-
# Delete a Datadog-AWS integration matching the specified `account_id` and `role_name parameters`.
319+
# **This endpoint is deprecated - use the V2 endpoints instead.** Delete a Datadog-AWS integration matching the specified `account_id` and `role_name parameters`.
320320
#
321321
# @deprecated This API is deprecated.
322322
#
@@ -526,7 +526,7 @@ def list_available_aws_namespaces(opts = {})
526526

527527
# List namespace rules.
528528
#
529-
# List all namespace rules for a given Datadog-AWS integration. This endpoint takes no arguments.
529+
# **This endpoint is deprecated - use the V2 endpoints instead.** List all namespace rules for a given Datadog-AWS integration. This endpoint takes no arguments.
530530
#
531531
# @deprecated This API is deprecated.
532532
#
@@ -589,7 +589,7 @@ def list_aws_accounts(opts = {})
589589

590590
# List all AWS integrations.
591591
#
592-
# List all Datadog-AWS integrations available in your Datadog organization.
592+
# **This endpoint is deprecated - use the V2 endpoints instead.** List all Datadog-AWS integrations available in your Datadog organization.
593593
#
594594
# @deprecated This API is deprecated.
595595
#
@@ -790,7 +790,7 @@ def update_aws_account(body, opts = {})
790790

791791
# Update an AWS integration.
792792
#
793-
# Update a Datadog-Amazon Web Services integration.
793+
# **This endpoint is deprecated - use the V2 endpoints instead.** Update a Datadog-Amazon Web Services integration.
794794
#
795795
# @deprecated This API is deprecated.
796796
#

lib/datadog_api_client/v1/api/aws_logs_integration_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ def list_aws_logs_services(opts = {})
450450

451451
# Get list of AWS log ready services.
452452
#
453-
# 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.
453+
# **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.
454454
#
455455
# @deprecated This API is deprecated.
456456
#

lib/datadog_api_client/v1/models/aws_account.rb

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ class AWSAccount
2727
# Your AWS Account ID without dashes.
2828
attr_accessor :account_id
2929

30-
# An object, (in the form `{"namespace1":true/false, "namespace2":true/false}`),
31-
# that enables or disables metric collection for specific AWS namespaces for this
32-
# AWS account only.
30+
# An object (in the form `{"namespace1":true/false, "namespace2":true/false}`) containing user-supplied overrides
31+
# for AWS namespace metric collection. **Important**: This field only contains namespaces explicitly configured through API calls,
32+
# not the comprehensive enabled or disabled status of all namespaces. If a namespace is absent from this field, it uses Datadog's
33+
# internal defaults (all namespaces enabled by default, except `AWS/SQS`, `AWS/ElasticMapReduce`, and `AWS/Usage`).
34+
# For a complete view of all namespace statuses, use the V2 AWS Integration API instead.
3335
attr_accessor :account_specific_namespace_rules
3436

3537
# Whether Datadog collects cloud security posture management resources from your AWS account. This includes additional resources not covered under the general `resource_collection`.

0 commit comments

Comments
 (0)