Skip to content

Commit 5aa5eaa

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 3d750c7 of spec repo
1 parent 6251385 commit 5aa5eaa

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35837,6 +35837,12 @@ components:
3583735837
RUMApplicationAttributes:
3583835838
description: RUM application attributes.
3583935839
properties:
35840+
api_key_id:
35841+
description: ID of the API key associated with the application.
35842+
example: 123456789
35843+
format: int32
35844+
maximum: 2147483647
35845+
type: integer
3584035846
application_id:
3584135847
description: ID of the RUM application.
3584235848
example: abcd1234-0000-0000-abcd-1234abcd5678

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1111
* RUM application attributes.
1212
*/
1313
export class RUMApplicationAttributes {
14+
/**
15+
* ID of the API key associated with the application.
16+
*/
17+
"apiKeyId"?: number;
1418
/**
1519
* ID of the RUM application.
1620
*/
@@ -76,6 +80,11 @@ export class RUMApplicationAttributes {
7680
* @ignore
7781
*/
7882
static readonly attributeTypeMap: AttributeTypeMap = {
83+
apiKeyId: {
84+
baseName: "api_key_id",
85+
type: "number",
86+
format: "int32",
87+
},
7988
applicationId: {
8089
baseName: "application_id",
8190
type: "string",

0 commit comments

Comments
 (0)