Skip to content

Commit bd5848d

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add integration_id field for dashboard list item (#1240)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 01fcafb commit bd5848d

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-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:07.102067",
8-
"spec_repo_commit": "9ad4f63e"
7+
"regenerated": "2023-07-13 19:35:35.496802",
8+
"spec_repo_commit": "b37fc521"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-07-13 19:08:07.115252",
13-
"spec_repo_commit": "9ad4f63e"
12+
"regenerated": "2023-07-13 19:35:35.513504",
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

packages/datadog-api-client-v2/models/DashboardListItem.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ export class DashboardListItem {
2828
* ID of the dashboard.
2929
*/
3030
"id": string;
31+
/**
32+
* The short name of the integration.
33+
*/
34+
"integrationId"?: string;
3135
/**
3236
* Whether or not the dashboard is in the favorites.
3337
*/
@@ -88,6 +92,10 @@ export class DashboardListItem {
8892
type: "string",
8993
required: true,
9094
},
95+
integrationId: {
96+
baseName: "integration_id",
97+
type: "string",
98+
},
9199
isFavorite: {
92100
baseName: "is_favorite",
93101
type: "boolean",

0 commit comments

Comments
 (0)