Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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",
Expand Down