File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -35837,6 +35837,12 @@ components:
35837
35837
RUMApplicationAttributes:
35838
35838
description: RUM application attributes.
35839
35839
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
35840
35846
application_id:
35841
35847
description: ID of the RUM application.
35842
35848
example: abcd1234-0000-0000-abcd-1234abcd5678
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
11
11
* RUM application attributes.
12
12
*/
13
13
export class RUMApplicationAttributes {
14
+ /**
15
+ * ID of the API key associated with the application.
16
+ */
17
+ "apiKeyId" ?: number ;
14
18
/**
15
19
* ID of the RUM application.
16
20
*/
@@ -76,6 +80,11 @@ export class RUMApplicationAttributes {
76
80
* @ignore
77
81
*/
78
82
static readonly attributeTypeMap : AttributeTypeMap = {
83
+ apiKeyId : {
84
+ baseName : "api_key_id" ,
85
+ type : "number" ,
86
+ format : "int32" ,
87
+ } ,
79
88
applicationId : {
80
89
baseName : "application_id" ,
81
90
type : "string" ,
You can’t perform that action at this time.
0 commit comments