Skip to content

Commit 30d3473

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add missing GetRUMApplications response field id (#1238)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 4a98971 commit 30d3473

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-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 20:37:06.082780",
8-
"spec_repo_commit": "efde263a"
7+
"regenerated": "2023-07-13 21:23:39.909700",
8+
"spec_repo_commit": "70f8c389"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-07-13 20:37:06.100361",
13-
"spec_repo_commit": "efde263a"
12+
"regenerated": "2023-07-13 21:23:39.924986",
13+
"spec_repo_commit": "70f8c389"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10872,6 +10872,10 @@ components:
1087210872
properties:
1087310873
attributes:
1087410874
$ref: '#/components/schemas/RUMApplicationListAttributes'
10875+
id:
10876+
description: RUM application ID.
10877+
example: abcd1234-0000-0000-abcd-1234abcd5678
10878+
type: string
1087510879
type:
1087610880
$ref: '#/components/schemas/RUMApplicationListType'
1087710881
required:

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ export class RUMApplicationList {
1616
* RUM application list attributes.
1717
*/
1818
"attributes": RUMApplicationListAttributes;
19+
/**
20+
* RUM application ID.
21+
*/
22+
"id"?: string;
1923
/**
2024
* RUM application list type.
2125
*/
@@ -35,6 +39,10 @@ export class RUMApplicationList {
3539
type: "RUMApplicationListAttributes",
3640
required: true,
3741
},
42+
id: {
43+
baseName: "id",
44+
type: "string",
45+
},
3846
type: {
3947
baseName: "type",
4048
type: "RUMApplicationListType",

0 commit comments

Comments
 (0)