diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 1cf641bdf3d..f29755c443f 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -94889,7 +94889,7 @@ components: example: true type: boolean trace_sample_rate: - description: The sample rate for the APM cross-product retention filter, between 0 and 100. + description: The sample rate for the APM cross-product retention filter, between 0 and 100. Values returned by the API are rounded to two decimal places. example: 25.0 format: double maximum: 100 @@ -95540,7 +95540,7 @@ components: $ref: '#/components/schemas/RumRetentionFilterData' type: object RumRetentionFilterSampleRate: - description: The sample rate for a RUM retention filter, between 0.1 and 100. + description: The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one decimal place. example: 50.5 format: double maximum: 100 diff --git a/src/main/java/com/datadog/api/client/v2/model/RumCrossProductSampling.java b/src/main/java/com/datadog/api/client/v2/model/RumCrossProductSampling.java index 8a8bdbf563c..1188b1bfdb0 100644 --- a/src/main/java/com/datadog/api/client/v2/model/RumCrossProductSampling.java +++ b/src/main/java/com/datadog/api/client/v2/model/RumCrossProductSampling.java @@ -58,8 +58,8 @@ public RumCrossProductSampling traceSampleRate(Double traceSampleRate) { } /** - * The sample rate for the APM cross-product retention filter, between 0 and 100. minimum: 0 - * maximum: 100 + * The sample rate for the APM cross-product retention filter, between 0 and 100. Values returned + * by the API are rounded to two decimal places. minimum: 0 maximum: 100 * * @return traceSampleRate */ diff --git a/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterAttributes.java b/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterAttributes.java index c9922aab930..a6269ac69b8 100644 --- a/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterAttributes.java +++ b/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterAttributes.java @@ -167,7 +167,8 @@ public RumRetentionFilterAttributes sampleRate(Double sampleRate) { } /** - * The sample rate for a RUM retention filter, between 0.1 and 100. minimum: 0.1 maximum: 100 + * The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one + * decimal place. minimum: 0.1 maximum: 100 * * @return sampleRate */ diff --git a/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterCreateAttributes.java b/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterCreateAttributes.java index 214e9454356..c3bf42ce094 100644 --- a/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterCreateAttributes.java +++ b/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterCreateAttributes.java @@ -180,7 +180,8 @@ public RumRetentionFilterCreateAttributes sampleRate(Double sampleRate) { } /** - * The sample rate for a RUM retention filter, between 0.1 and 100. minimum: 0.1 maximum: 100 + * The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one + * decimal place. minimum: 0.1 maximum: 100 * * @return sampleRate */ diff --git a/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterUpdateAttributes.java b/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterUpdateAttributes.java index 657b8329fd2..51b8fff00f1 100644 --- a/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterUpdateAttributes.java +++ b/src/main/java/com/datadog/api/client/v2/model/RumRetentionFilterUpdateAttributes.java @@ -168,7 +168,8 @@ public RumRetentionFilterUpdateAttributes sampleRate(Double sampleRate) { } /** - * The sample rate for a RUM retention filter, between 0.1 and 100. minimum: 0.1 maximum: 100 + * The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one + * decimal place. minimum: 0.1 maximum: 100 * * @return sampleRate */