@@ -32160,6 +32160,8 @@ components:
3216032160 format: int32
3216132161 maximum: 2147483647
3216232162 type: integer
32163+ product_scales:
32164+ $ref: '#/components/schemas/RUMProductScales'
3216332165 type:
3216432166 description: Type of the RUM application. Supported values are `browser`,
3216532167 `ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32204,6 +32206,10 @@ components:
3220432206 description: Name of the RUM application.
3220532207 example: my_new_rum_application
3220632208 type: string
32209+ product_analytics_retention_state:
32210+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionState'
32211+ rum_event_processing_state:
32212+ $ref: '#/components/schemas/RUMEventProcessingState'
3220732213 type:
3220832214 description: Type of the RUM application. Supported values are `browser`,
3220932215 `ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32278,6 +32284,8 @@ components:
3227832284 format: int32
3227932285 maximum: 2147483647
3228032286 type: integer
32287+ product_scales:
32288+ $ref: '#/components/schemas/RUMProductScales'
3228132289 type:
3228232290 description: Type of the RUM application. Supported values are `browser`,
3228332291 `ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32349,6 +32357,10 @@ components:
3234932357 description: Name of the RUM application.
3235032358 example: updated_name_for_my_existing_rum_application
3235132359 type: string
32360+ product_analytics_retention_state:
32361+ $ref: '#/components/schemas/RUMProductAnalyticsRetentionState'
32362+ rum_event_processing_state:
32363+ $ref: '#/components/schemas/RUMEventProcessingState'
3235232364 type:
3235332365 description: Type of the RUM application. Supported values are `browser`,
3235432366 `ios`, `android`, `react-native`, `flutter`, `roku`, `electron`, `unity`,
@@ -32477,6 +32489,33 @@ components:
3247732489 format: date-time
3247832490 type: string
3247932491 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
3248032519 RUMEventType:
3248132520 default: rum
3248232521 description: Type of the event.
@@ -32583,6 +32622,39 @@ components:
3258332622 RUMGroupByTotalString:
3258432623 description: A string to use as the key value for the total bucket.
3258532624 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
3258632658 RUMQueryFilter:
3258732659 description: The search and filter query settings.
3258832660 properties:
0 commit comments