Skip to content

Commit f8a855e

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit b37fc521 of spec repo
1 parent 6b87d44 commit f8a855e

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.5",
7-
"regenerated": "2023-07-13 19:08:05.234547",
8-
"spec_repo_commit": "9ad4f63e"
7+
"regenerated": "2023-07-13 19:35:43.377556",
8+
"spec_repo_commit": "b37fc521"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-07-13 19:08:05.246545",
13-
"spec_repo_commit": "9ad4f63e"
12+
"regenerated": "2023-07-13 19:35:43.395282",
13+
"spec_repo_commit": "b37fc521"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3523,6 +3523,11 @@ components:
35233523
description: ID of the dashboard.
35243524
example: q5j-nti-fv6
35253525
type: string
3526+
integration_id:
3527+
description: The short name of the integration.
3528+
nullable: true
3529+
readOnly: true
3530+
type: string
35263531
is_favorite:
35273532
description: Whether or not the dashboard is in the favorites.
35283533
readOnly: true

src/datadog_api_client/v2/model/dashboard_list_item.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def openapi_types(_):
3737
"created": (datetime,),
3838
"icon": (str, none_type),
3939
"id": (str,),
40+
"integration_id": (str, none_type),
4041
"is_favorite": (bool,),
4142
"is_read_only": (bool,),
4243
"is_shared": (bool,),
@@ -52,6 +53,7 @@ def openapi_types(_):
5253
"created": "created",
5354
"icon": "icon",
5455
"id": "id",
56+
"integration_id": "integration_id",
5557
"is_favorite": "is_favorite",
5658
"is_read_only": "is_read_only",
5759
"is_shared": "is_shared",
@@ -64,6 +66,7 @@ def openapi_types(_):
6466
read_only_vars = {
6567
"created",
6668
"icon",
69+
"integration_id",
6770
"is_favorite",
6871
"is_read_only",
6972
"is_shared",
@@ -80,6 +83,7 @@ def __init__(
8083
author: Union[Creator, UnsetType] = unset,
8184
created: Union[datetime, UnsetType] = unset,
8285
icon: Union[str, none_type, UnsetType] = unset,
86+
integration_id: Union[str, none_type, UnsetType] = unset,
8387
is_favorite: Union[bool, UnsetType] = unset,
8488
is_read_only: Union[bool, UnsetType] = unset,
8589
is_shared: Union[bool, UnsetType] = unset,
@@ -104,6 +108,9 @@ def __init__(
104108
:param id: ID of the dashboard.
105109
:type id: str
106110
111+
:param integration_id: The short name of the integration.
112+
:type integration_id: str, none_type, optional
113+
107114
:param is_favorite: Whether or not the dashboard is in the favorites.
108115
:type is_favorite: bool, optional
109116
@@ -134,6 +141,8 @@ def __init__(
134141
kwargs["created"] = created
135142
if icon is not unset:
136143
kwargs["icon"] = icon
144+
if integration_id is not unset:
145+
kwargs["integration_id"] = integration_id
137146
if is_favorite is not unset:
138147
kwargs["is_favorite"] = is_favorite
139148
if is_read_only is not unset:

0 commit comments

Comments
 (0)