Skip to content

Commit 3e8ebc6

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 4ffe2b5 of spec repo (#144)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent d33111f commit 3e8ebc6

File tree

2 files changed

+17
-4
lines changed

2 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.4.1.dev6",
7-
"regenerated": "2021-05-21 18:10:08.464066",
8-
"spec_repo_commit": "888558a"
7+
"regenerated": "2021-05-24 14:55:27.156969",
8+
"spec_repo_commit": "4ffe2b5"
99
},
1010
"v2": {
1111
"apigentools_version": "1.4.1.dev6",
12-
"regenerated": "2021-05-21 18:10:54.641466",
13-
"spec_repo_commit": "888558a"
12+
"regenerated": "2021-05-24 14:56:19.775069",
13+
"spec_repo_commit": "4ffe2b5"
1414
}
1515
}
1616
}

packages/datadog-api-client-v1/models/UsageAttributionBody.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ export class UsageAttributionBody {
3030
*/
3131
'publicId'?: string;
3232
/**
33+
* The source of the usage attribution tag configuration and the selected tags in the format `<source_org_name>:<selected tag 1>-<selected tag 2>-<selected tag 3>`.
34+
*/
35+
'tagConfigSource'?: string;
36+
/**
3337
* Usage Summary by tag name.
3438
*/
3539
'tags'?: { [key: string]: Array<string>; };
@@ -57,6 +61,11 @@ export class UsageAttributionBody {
5761
"type": "string",
5862
"format": ""
5963
},
64+
"tagConfigSource": {
65+
"baseName": "tag_config_source",
66+
"type": "string",
67+
"format": ""
68+
},
6069
"tags": {
6170
"baseName": "tags",
6271
"type": "{ [key: string]: Array<string>; }",
@@ -86,6 +95,8 @@ export class UsageAttributionBody {
8695

8796
res.publicId = ObjectSerializer.deserialize(data.public_id, "string", "")
8897

98+
res.tagConfigSource = ObjectSerializer.deserialize(data.tag_config_source, "string", "")
99+
89100
res.tags = ObjectSerializer.deserialize(data.tags, "{ [key: string]: Array<string>; }", "")
90101

91102
res.updatedAt = ObjectSerializer.deserialize(data.updated_at, "string", "")
@@ -110,6 +121,8 @@ export class UsageAttributionBody {
110121

111122
res.public_id = ObjectSerializer.serialize(data.publicId, "string", "")
112123

124+
res.tag_config_source = ObjectSerializer.serialize(data.tagConfigSource, "string", "")
125+
113126
res.tags = ObjectSerializer.serialize(data.tags, "{ [key: string]: Array<string>; }", "")
114127

115128
res.updated_at = ObjectSerializer.serialize(data.updatedAt, "string", "")

0 commit comments

Comments
 (0)