Skip to content

Commit 09b4ea4

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 0d76884c of spec repo (#2165)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 160f34a commit 09b4ea4

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.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": "2024-09-24 18:16:22.924081",
8-
"spec_repo_commit": "2eb52c63"
7+
"regenerated": "2024-09-25 14:32:15.820167",
8+
"spec_repo_commit": "0d76884c"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-09-24 18:16:22.938930",
13-
"spec_repo_commit": "2eb52c63"
12+
"regenerated": "2024-09-25 14:32:15.835778",
13+
"spec_repo_commit": "0d76884c"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6559,6 +6559,12 @@ components:
65596559
example: 1693491974000000000
65606560
format: int64
65616561
type: integer
6562+
team:
6563+
description: Name of the team owning the deployed service. If not provided,
6564+
this is automatically populated with the team associated with the service
6565+
in the Service Catalog.
6566+
example: backend
6567+
type: string
65626568
version:
65636569
description: Version to correlate with [APM Deployment Tracking](https://docs.datadoghq.com/tracing/services/deployment_tracking/).
65646570
example: v1.12.07

src/datadog_api_client/v2/model/dora_deployment_request_attributes.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def openapi_types(_):
2929
"id": (str,),
3030
"service": (str,),
3131
"started_at": (int,),
32+
"team": (str,),
3233
"version": (str,),
3334
}
3435

@@ -39,6 +40,7 @@ def openapi_types(_):
3940
"id": "id",
4041
"service": "service",
4142
"started_at": "started_at",
43+
"team": "team",
4244
"version": "version",
4345
}
4446

@@ -50,6 +52,7 @@ def __init__(
5052
env: Union[str, UnsetType] = unset,
5153
git: Union[DORAGitInfo, UnsetType] = unset,
5254
id: Union[str, UnsetType] = unset,
55+
team: Union[str, UnsetType] = unset,
5356
version: Union[str, UnsetType] = unset,
5457
**kwargs,
5558
):
@@ -74,6 +77,9 @@ def __init__(
7477
:param started_at: Unix timestamp when the deployment started. It must be in nanoseconds, milliseconds, or seconds.
7578
:type started_at: int
7679
80+
:param team: Name of the team owning the deployed service. If not provided, this is automatically populated with the team associated with the service in the Service Catalog.
81+
:type team: str, optional
82+
7783
:param version: Version to correlate with `APM Deployment Tracking <https://docs.datadoghq.com/tracing/services/deployment_tracking/>`_.
7884
:type version: str, optional
7985
"""
@@ -83,6 +89,8 @@ def __init__(
8389
kwargs["git"] = git
8490
if id is not unset:
8591
kwargs["id"] = id
92+
if team is not unset:
93+
kwargs["team"] = team
8694
if version is not unset:
8795
kwargs["version"] = version
8896
super().__init__(kwargs)

0 commit comments

Comments
 (0)