Skip to content

Commit 2674145

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit f0eb3a3 of spec repo
1 parent 19a4754 commit 2674145

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88943,6 +88943,9 @@ components:
8894388943
$ref: "#/components/schemas/TeamsResponseLinks"
8894488944
meta:
8894588945
$ref: "#/components/schemas/TeamsResponseMeta"
88946+
test:
88947+
description: Indicates whether the response is from a test environment.
88948+
type: boolean
8894688949
type: object
8894788950
TeamsResponseLinks:
8894888951
description: Teams response links.

src/datadog_api_client/v2/model/teams_response.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@ def openapi_types(_):
3636
"included": ([TeamIncluded],),
3737
"links": (TeamsResponseLinks,),
3838
"meta": (TeamsResponseMeta,),
39+
"test": (bool,),
3940
}
4041

4142
attribute_map = {
4243
"data": "data",
4344
"included": "included",
4445
"links": "links",
4546
"meta": "meta",
47+
"test": "test",
4648
}
4749

4850
def __init__(
@@ -51,6 +53,7 @@ def __init__(
5153
included: Union[List[Union[TeamIncluded, User, TeamLink, UserTeamPermission]], UnsetType] = unset,
5254
links: Union[TeamsResponseLinks, UnsetType] = unset,
5355
meta: Union[TeamsResponseMeta, UnsetType] = unset,
56+
test: Union[bool, UnsetType] = unset,
5457
**kwargs,
5558
):
5659
"""
@@ -67,6 +70,9 @@ def __init__(
6770
6871
:param meta: Teams response metadata.
6972
:type meta: TeamsResponseMeta, optional
73+
74+
:param test: Indicates whether the response is from a test environment.
75+
:type test: bool, optional
7076
"""
7177
if data is not unset:
7278
kwargs["data"] = data
@@ -76,4 +82,6 @@ def __init__(
7682
kwargs["links"] = links
7783
if meta is not unset:
7884
kwargs["meta"] = meta
85+
if test is not unset:
86+
kwargs["test"] = test
7987
super().__init__(kwargs)

0 commit comments

Comments
 (0)