Skip to content

Commit c4f8718

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Add tags field to dashboard list response (#1265)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent f9f12c6 commit c4f8718

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-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-08-03 15:19:17.289251",
8-
"spec_repo_commit": "200d56a1"
7+
"regenerated": "2023-08-03 18:00:18.464046",
8+
"spec_repo_commit": "b1453658"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-08-03 15:19:17.307858",
13-
"spec_repo_commit": "200d56a1"
12+
"regenerated": "2023-08-03 18:00:18.481981",
13+
"spec_repo_commit": "b1453658"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3605,6 +3605,15 @@ components:
36053605
maximum: 5
36063606
readOnly: true
36073607
type: integer
3608+
tags:
3609+
description: List of team names representing ownership of a dashboard.
3610+
items:
3611+
description: The name of a Datadog team, formatted as `team:<name>`
3612+
type: string
3613+
maxItems: 5
3614+
nullable: true
3615+
readOnly: true
3616+
type: array
36083617
title:
36093618
description: Title of the dashboard.
36103619
readOnly: true

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ export class DashboardListItem {
5252
* Popularity of the dashboard.
5353
*/
5454
"popularity"?: number;
55+
/**
56+
* List of team names representing ownership of a dashboard.
57+
*/
58+
"tags"?: Array<string>;
5559
/**
5660
* Title of the dashboard.
5761
*/
@@ -118,6 +122,10 @@ export class DashboardListItem {
118122
type: "number",
119123
format: "int32",
120124
},
125+
tags: {
126+
baseName: "tags",
127+
type: "Array<string>",
128+
},
121129
title: {
122130
baseName: "title",
123131
type: "string",

0 commit comments

Comments
 (0)