Skip to content

Commit 25f7b69

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit a0971ff8 of spec repo
1 parent 6581b8e commit 25f7b69

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-01 14:52:18.981128",
8-
"spec_repo_commit": "279094e1"
7+
"regenerated": "2023-08-01 15:48:23.785259",
8+
"spec_repo_commit": "a0971ff8"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-08-01 14:52:19.002286",
13-
"spec_repo_commit": "279094e1"
12+
"regenerated": "2023-08-01 15:48:23.802013",
13+
"spec_repo_commit": "a0971ff8"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3602,6 +3602,15 @@ components:
36023602
maximum: 5
36033603
readOnly: true
36043604
type: integer
3605+
tags:
3606+
description: List of team names representing ownership of a dashboard.
3607+
items:
3608+
description: The name of a Datadog team of the form `team:<name>`
3609+
type: string
3610+
maxItems: 5
3611+
nullable: true
3612+
readOnly: true
3613+
type: array
36053614
title:
36063615
description: Title of the dashboard.
36073616
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)