@@ -32161,6 +32161,8 @@ components:
3216132161 format: int32
3216232162 maximum: 2147483647
3216332163 type: integer
32164+ product_scales:
32165+ $ref: '#/components/schemas/RUMProductScales'
3216432166 type:
3216532167 description: Type of the RUM application. Supported values are `browser`,
3216632168 `ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32205,6 +32207,10 @@ components:
3220532207 description: Name of the RUM application.
3220632208 example: my_new_rum_application
3220732209 type: string
32210+ rum_event_processing_state:
32211+ $ref: '#/components/schemas/RUMEventProcessingState'
32212+ rum_product_analytics_retention_state:
32213+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionState'
3220832214 type:
3220932215 description: Type of the RUM application. Supported values are `browser`,
3221032216 `ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32279,6 +32285,8 @@ components:
3227932285 format: int32
3228032286 maximum: 2147483647
3228132287 type: integer
32288+ product_scales:
32289+ $ref: '#/components/schemas/RUMProductScales'
3228232290 type:
3228332291 description: Type of the RUM application. Supported values are `browser`,
3228432292 `ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32350,6 +32358,10 @@ components:
3235032358 description: Name of the RUM application.
3235132359 example: updated_name_for_my_existing_rum_application
3235232360 type: string
32361+ rum_event_processing_state:
32362+ $ref: '#/components/schemas/RUMEventProcessingState'
32363+ rum_product_analytics_retention_state:
32364+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionState'
3235332365 type:
3235432366 description: Type of the RUM application. Supported values are `browser`,
3235532367 `ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32478,6 +32490,33 @@ components:
3247832490 format: date-time
3247932491 type: string
3248032492 type: object
32493+ RUMEventProcessingScale:
32494+ description: RUM event processing scale configuration.
32495+ properties:
32496+ last_modified_at:
32497+ description: Timestamp in milliseconds when this scale was last modified.
32498+ example: 1721897494108
32499+ format: int64
32500+ type: integer
32501+ state:
32502+ $ref: '#/components/schemas/RUMEventProcessingState'
32503+ type: object
32504+ RUMEventProcessingState:
32505+ description: Configures which RUM events are processed and stored for the application.
32506+ enum:
32507+ - ALL
32508+ - ERROR_FOCUSED_MODE
32509+ - NONE
32510+ example: ALL
32511+ type: string
32512+ x-enum-descriptions:
32513+ - Process and store all RUM events (sessions, views, actions, resources, errors)
32514+ - Process and store only error events and related critical events
32515+ - Disable RUM event processing - no events will be stored
32516+ x-enum-varnames:
32517+ - ALL
32518+ - ERROR_FOCUSED_MODE
32519+ - NONE
3248132520 RUMEventType:
3248232521 default: rum
3248332522 description: Type of the event.
@@ -32584,6 +32623,39 @@ components:
3258432623 RUMGroupByTotalString:
3258532624 description: A string to use as the key value for the total bucket.
3258632625 type: string
32626+ RUMProductAnalyticsRetentionScale:
32627+ description: Product analytics retention scale configuration.
32628+ properties:
32629+ last_modified_at:
32630+ description: Timestamp in milliseconds when this scale was last modified.
32631+ example: 1747922145974
32632+ format: int64
32633+ type: integer
32634+ state:
32635+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionState'
32636+ type: object
32637+ RUMProductAnalyticsRetentionState:
32638+ description: Controls the retention policy for product analytics data derived
32639+ from RUM events.
32640+ enum:
32641+ - MAX
32642+ - NONE
32643+ example: MAX
32644+ type: string
32645+ x-enum-descriptions:
32646+ - Store product analytics data for the maximum available retention period
32647+ - Do not store product analytics data
32648+ x-enum-varnames:
32649+ - MAX
32650+ - NONE
32651+ RUMProductScales:
32652+ description: Product Scales configuration for the RUM application.
32653+ properties:
32654+ product_analytics_retention_scale:
32655+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionScale'
32656+ rum_event_processing_scale:
32657+ $ref: '#/components/schemas/RUMEventProcessingScale'
32658+ type: object
3258732659 RUMQueryFilter:
3258832660 description: The search and filter query settings.
3258932661 properties:
0 commit comments