Skip to content
Open
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
10 changes: 5 additions & 5 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45104,12 +45104,12 @@ components:
$ref: '#/components/schemas/RumRetentionFilterData'
type: object
RumRetentionFilterSampleRate:
description: The sample rate for a RUM retention filter, between 0 and 100.
example: 25
format: int64
description: The sample rate for a RUM retention filter, between 0.1 and 100.
example: 50.5
format: double
maximum: 100
minimum: 0
type: integer
minimum: 0.1
type: number
RumRetentionFilterType:
default: retention_filters
description: The type of the resource. The value should always be retention_filters.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class RumRetentionFilterAttributes {
*/
"query"?: string;
/**
* The sample rate for a RUM retention filter, between 0 and 100.
* The sample rate for a RUM retention filter, between 0.1 and 100.
*/
"sampleRate"?: number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class RumRetentionFilterCreateAttributes {
*/
"query"?: string;
/**
* The sample rate for a RUM retention filter, between 0 and 100.
* The sample rate for a RUM retention filter, between 0.1 and 100.
*/
"sampleRate": number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class RumRetentionFilterUpdateAttributes {
*/
"query"?: string;
/**
* The sample rate for a RUM retention filter, between 0 and 100.
* The sample rate for a RUM retention filter, between 0.1 and 100.
*/
"sampleRate"?: number;

Expand Down
Loading