File tree 3 files changed +21
-4
lines changed
packages/datadog-api-client-v2/models
3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"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 "
9
9
},
10
10
"v2": {
11
11
"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 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -3605,6 +3605,15 @@ components:
3605
3605
maximum: 5
3606
3606
readOnly: true
3607
3607
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
3608
3617
title:
3609
3618
description: Title of the dashboard.
3610
3619
readOnly: true
Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ export class DashboardListItem {
52
52
* Popularity of the dashboard.
53
53
*/
54
54
"popularity" ?: number ;
55
+ /**
56
+ * List of team names representing ownership of a dashboard.
57
+ */
58
+ "tags" ?: Array < string > ;
55
59
/**
56
60
* Title of the dashboard.
57
61
*/
@@ -118,6 +122,10 @@ export class DashboardListItem {
118
122
type : "number" ,
119
123
format : "int32" ,
120
124
} ,
125
+ tags : {
126
+ baseName : "tags" ,
127
+ type : "Array<string>" ,
128
+ } ,
121
129
title : {
122
130
baseName : "title" ,
123
131
type : "string" ,
You can’t perform that action at this time.
0 commit comments