Skip to content

Commit b6f1a2f

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit f509be8e of spec repo
1 parent 7cc4c3b commit b6f1a2f

3 files changed

Lines changed: 4 additions & 35 deletions

File tree

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-05-27 10:37:47.296878",
8-
"spec_repo_commit": "c75940cb"
7+
"regenerated": "2025-05-27 13:44:02.234652",
8+
"spec_repo_commit": "f509be8e"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-05-27 10:37:47.323956",
13-
"spec_repo_commit": "c75940cb"
12+
"regenerated": "2025-05-27 13:44:02.249520",
13+
"spec_repo_commit": "f509be8e"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1298,20 +1298,10 @@ components:
12981298
$ref: '#/components/schemas/AWSAccountPartition'
12991299
aws_regions:
13001300
$ref: '#/components/schemas/AWSRegions'
1301-
created_at:
1302-
description: Timestamp of when the account integration was created.
1303-
format: date-time
1304-
readOnly: true
1305-
type: string
13061301
logs_config:
13071302
$ref: '#/components/schemas/AWSLogsConfig'
13081303
metrics_config:
13091304
$ref: '#/components/schemas/AWSMetricsConfig'
1310-
modified_at:
1311-
description: Timestamp of when the account integration was updated.
1312-
format: date-time
1313-
readOnly: true
1314-
type: string
13151305
resources_config:
13161306
$ref: '#/components/schemas/AWSResourcesConfig'
13171307
traces_config:

src/datadog_api_client/v2/model/aws_account_response_attributes.py

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from datadog_api_client.model_utils import (
99
ModelNormal,
1010
cached_property,
11-
datetime,
1211
none_type,
1312
unset,
1413
UnsetType,
@@ -46,10 +45,8 @@ def openapi_types(_):
4645
"aws_account_id": (str,),
4746
"aws_partition": (AWSAccountPartition,),
4847
"aws_regions": (AWSRegions,),
49-
"created_at": (datetime,),
5048
"logs_config": (AWSLogsConfig,),
5149
"metrics_config": (AWSMetricsConfig,),
52-
"modified_at": (datetime,),
5350
"resources_config": (AWSResourcesConfig,),
5451
"traces_config": (AWSTracesConfig,),
5552
}
@@ -60,17 +57,11 @@ def openapi_types(_):
6057
"aws_account_id": "aws_account_id",
6158
"aws_partition": "aws_partition",
6259
"aws_regions": "aws_regions",
63-
"created_at": "created_at",
6460
"logs_config": "logs_config",
6561
"metrics_config": "metrics_config",
66-
"modified_at": "modified_at",
6762
"resources_config": "resources_config",
6863
"traces_config": "traces_config",
6964
}
70-
read_only_vars = {
71-
"created_at",
72-
"modified_at",
73-
}
7465

7566
def __init__(
7667
self_,
@@ -79,10 +70,8 @@ def __init__(
7970
auth_config: Union[AWSAuthConfig, AWSAuthConfigKeys, AWSAuthConfigRole, UnsetType] = unset,
8071
aws_partition: Union[AWSAccountPartition, UnsetType] = unset,
8172
aws_regions: Union[AWSRegions, AWSRegionsIncludeAll, AWSRegionsIncludeOnly, UnsetType] = unset,
82-
created_at: Union[datetime, UnsetType] = unset,
8373
logs_config: Union[AWSLogsConfig, UnsetType] = unset,
8474
metrics_config: Union[AWSMetricsConfig, UnsetType] = unset,
85-
modified_at: Union[datetime, UnsetType] = unset,
8675
resources_config: Union[AWSResourcesConfig, UnsetType] = unset,
8776
traces_config: Union[AWSTracesConfig, UnsetType] = unset,
8877
**kwargs,
@@ -106,18 +95,12 @@ def __init__(
10695
:param aws_regions: AWS Regions to collect data from. Defaults to ``include_all``.
10796
:type aws_regions: AWSRegions, optional
10897
109-
:param created_at: Timestamp of when the account integration was created.
110-
:type created_at: datetime, optional
111-
11298
:param logs_config: AWS Logs Collection config.
11399
:type logs_config: AWSLogsConfig, optional
114100
115101
:param metrics_config: AWS Metrics Collection config.
116102
:type metrics_config: AWSMetricsConfig, optional
117103
118-
:param modified_at: Timestamp of when the account integration was updated.
119-
:type modified_at: datetime, optional
120-
121104
:param resources_config: AWS Resources Collection config.
122105
:type resources_config: AWSResourcesConfig, optional
123106
@@ -132,14 +115,10 @@ def __init__(
132115
kwargs["aws_partition"] = aws_partition
133116
if aws_regions is not unset:
134117
kwargs["aws_regions"] = aws_regions
135-
if created_at is not unset:
136-
kwargs["created_at"] = created_at
137118
if logs_config is not unset:
138119
kwargs["logs_config"] = logs_config
139120
if metrics_config is not unset:
140121
kwargs["metrics_config"] = metrics_config
141-
if modified_at is not unset:
142-
kwargs["modified_at"] = modified_at
143122
if resources_config is not unset:
144123
kwargs["resources_config"] = resources_config
145124
if traces_config is not unset:

0 commit comments

Comments
 (0)