File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
services/rum/src/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 @@ -6,6 +6,10 @@ import { RUMProductScales } from "./RUMProductScales";
6
6
* RUM application attributes.
7
7
*/
8
8
export class RUMApplicationAttributes {
9
+ /**
10
+ * ID of the API key associated with the application.
11
+ */
12
+ "apiKeyId" ?: number ;
9
13
/**
10
14
* ID of the RUM application.
11
15
*/
@@ -69,6 +73,11 @@ export class RUMApplicationAttributes {
69
73
* @ignore
70
74
*/
71
75
static readonly attributeTypeMap : AttributeTypeMap = {
76
+ apiKeyId : {
77
+ baseName : "api_key_id" ,
78
+ type : "number" ,
79
+ format : "int32" ,
80
+ } ,
72
81
applicationId : {
73
82
baseName : "application_id" ,
74
83
type : "string" ,
You can’t perform that action at this time.
0 commit comments