From 5e5b1df3005e2c1ce848a2cc3e4447d1a2087dd3 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Thu, 25 Sep 2025 12:13:13 +0000 Subject: [PATCH] Regenerate client from commit eda7212 of spec repo --- .generator/schemas/v2/openapi.yaml | 6 ++++++ services/rum/src/v2/models/RUMApplicationAttributes.ts | 9 +++++++++ 2 files changed, 15 insertions(+) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index f3d3ffaa56b6..5051b689027c 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -35837,6 +35837,12 @@ components: RUMApplicationAttributes: description: RUM application attributes. properties: + api_key_id: + description: ID of the API key associated with the application. + example: 123456789 + format: int32 + maximum: 2147483647 + type: integer application_id: description: ID of the RUM application. example: abcd1234-0000-0000-abcd-1234abcd5678 diff --git a/services/rum/src/v2/models/RUMApplicationAttributes.ts b/services/rum/src/v2/models/RUMApplicationAttributes.ts index 278288418ef5..731f87176df6 100644 --- a/services/rum/src/v2/models/RUMApplicationAttributes.ts +++ b/services/rum/src/v2/models/RUMApplicationAttributes.ts @@ -6,6 +6,10 @@ import { RUMProductScales } from "./RUMProductScales"; * RUM application attributes. */ export class RUMApplicationAttributes { + /** + * ID of the API key associated with the application. + */ + "apiKeyId"?: number; /** * ID of the RUM application. */ @@ -69,6 +73,11 @@ export class RUMApplicationAttributes { * @ignore */ static readonly attributeTypeMap: AttributeTypeMap = { + apiKeyId: { + baseName: "api_key_id", + type: "number", + format: "int32", + }, applicationId: { baseName: "application_id", type: "string",