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:
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
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1111 * RUM application attributes.
1212 */
1313export 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" ,
You can’t perform that action at this time.
0 commit comments