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/packages/datadog-api-client-v2/models/RUMApplicationAttributes.ts b/packages/datadog-api-client-v2/models/RUMApplicationAttributes.ts index 4f231b1e52b6..668b9b4d6019 100644 --- a/packages/datadog-api-client-v2/models/RUMApplicationAttributes.ts +++ b/packages/datadog-api-client-v2/models/RUMApplicationAttributes.ts @@ -11,6 +11,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util"; * RUM application attributes. */ export class RUMApplicationAttributes { + /** + * ID of the API key associated with the application. + */ + "apiKeyId"?: number; /** * ID of the RUM application. */ @@ -76,6 +80,11 @@ export class RUMApplicationAttributes { * @ignore */ static readonly attributeTypeMap: AttributeTypeMap = { + apiKeyId: { + baseName: "api_key_id", + type: "number", + format: "int32", + }, applicationId: { baseName: "application_id", type: "string",