@@ -32160,6 +32160,8 @@ components:
32160
32160
format: int32
32161
32161
maximum: 2147483647
32162
32162
type: integer
32163
+ product_scales:
32164
+ $ref: '#/components/schemas/RUMProductScales'
32163
32165
type:
32164
32166
description: Type of the RUM application. Supported values are `browser`,
32165
32167
`ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32204,6 +32206,10 @@ components:
32204
32206
description: Name of the RUM application.
32205
32207
example: my_new_rum_application
32206
32208
type: string
32209
+ product_analytics_retention_state:
32210
+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionState'
32211
+ rum_event_processing_state:
32212
+ $ref: '#/components/schemas/RUMEventProcessingState'
32207
32213
type:
32208
32214
description: Type of the RUM application. Supported values are `browser`,
32209
32215
`ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32278,6 +32284,8 @@ components:
32278
32284
format: int32
32279
32285
maximum: 2147483647
32280
32286
type: integer
32287
+ product_scales:
32288
+ $ref: '#/components/schemas/RUMProductScales'
32281
32289
type:
32282
32290
description: Type of the RUM application. Supported values are `browser`,
32283
32291
`ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32349,6 +32357,10 @@ components:
32349
32357
description: Name of the RUM application.
32350
32358
example: updated_name_for_my_existing_rum_application
32351
32359
type: string
32360
+ product_analytics_retention_state:
32361
+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionState'
32362
+ rum_event_processing_state:
32363
+ $ref: '#/components/schemas/RUMEventProcessingState'
32352
32364
type:
32353
32365
description: Type of the RUM application. Supported values are `browser`,
32354
32366
`ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32477,6 +32489,33 @@ components:
32477
32489
format: date-time
32478
32490
type: string
32479
32491
type: object
32492
+ RUMEventProcessingScale:
32493
+ description: RUM event processing scale configuration.
32494
+ properties:
32495
+ last_modified_at:
32496
+ description: Timestamp in milliseconds when this scale was last modified.
32497
+ example: 1721897494108
32498
+ format: int64
32499
+ type: integer
32500
+ state:
32501
+ $ref: '#/components/schemas/RUMEventProcessingState'
32502
+ type: object
32503
+ RUMEventProcessingState:
32504
+ description: Configures which RUM events are processed and stored for the application.
32505
+ enum:
32506
+ - ALL
32507
+ - ERROR_FOCUSED_MODE
32508
+ - NONE
32509
+ example: ALL
32510
+ type: string
32511
+ x-enum-descriptions:
32512
+ - Process and store all RUM events (sessions, views, actions, resources, errors)
32513
+ - Process and store only error events and related critical events
32514
+ - "Disable RUM event processing\u2014no events are stored"
32515
+ x-enum-varnames:
32516
+ - ALL
32517
+ - ERROR_FOCUSED_MODE
32518
+ - NONE
32480
32519
RUMEventType:
32481
32520
default: rum
32482
32521
description: Type of the event.
@@ -32583,6 +32622,39 @@ components:
32583
32622
RUMGroupByTotalString:
32584
32623
description: A string to use as the key value for the total bucket.
32585
32624
type: string
32625
+ RUMProductAnalyticsRetentionScale:
32626
+ description: Product Analytics retention scale configuration.
32627
+ properties:
32628
+ last_modified_at:
32629
+ description: Timestamp in milliseconds when this scale was last modified.
32630
+ example: 1747922145974
32631
+ format: int64
32632
+ type: integer
32633
+ state:
32634
+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionState'
32635
+ type: object
32636
+ RUMProductAnalyticsRetentionState:
32637
+ description: Controls the retention policy for Product Analytics data derived
32638
+ from RUM events.
32639
+ enum:
32640
+ - MAX
32641
+ - NONE
32642
+ example: MAX
32643
+ type: string
32644
+ x-enum-descriptions:
32645
+ - Store Product Analytics data for the maximum available retention period
32646
+ - Do not store Product Analytics data
32647
+ x-enum-varnames:
32648
+ - MAX
32649
+ - NONE
32650
+ RUMProductScales:
32651
+ description: Product Scales configuration for the RUM application.
32652
+ properties:
32653
+ product_analytics_retention_scale:
32654
+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionScale'
32655
+ rum_event_processing_scale:
32656
+ $ref: '#/components/schemas/RUMEventProcessingScale'
32657
+ type: object
32586
32658
RUMQueryFilter:
32587
32659
description: The search and filter query settings.
32588
32660
properties:
0 commit comments