Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add missing GetRUMApplications response field id #1238

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.5",
"regenerated": "2023-07-13 20:37:06.082780",
"spec_repo_commit": "efde263a"
"regenerated": "2023-07-13 21:23:39.909700",
"spec_repo_commit": "70f8c389"
},
"v2": {
"apigentools_version": "1.6.5",
"regenerated": "2023-07-13 20:37:06.100361",
"spec_repo_commit": "efde263a"
"regenerated": "2023-07-13 21:23:39.924986",
"spec_repo_commit": "70f8c389"
}
}
}
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10872,6 +10872,10 @@ components:
properties:
attributes:
$ref: '#/components/schemas/RUMApplicationListAttributes'
id:
description: RUM application ID.
example: abcd1234-0000-0000-abcd-1234abcd5678
type: string
type:
$ref: '#/components/schemas/RUMApplicationListType'
required:
Expand Down
8 changes: 8 additions & 0 deletions packages/datadog-api-client-v2/models/RUMApplicationList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ export class RUMApplicationList {
* RUM application list attributes.
*/
"attributes": RUMApplicationListAttributes;
/**
* RUM application ID.
*/
"id"?: string;
/**
* RUM application list type.
*/
Expand All @@ -35,6 +39,10 @@ export class RUMApplicationList {
type: "RUMApplicationListAttributes",
required: true,
},
id: {
baseName: "id",
type: "string",
},
type: {
baseName: "type",
type: "RUMApplicationListType",
Expand Down