Skip to content

Commit 75eec42

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 36d0569 of spec repo
1 parent d650b74 commit 75eec42

8 files changed

Lines changed: 10 additions & 8 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1390,6 +1390,7 @@ components:
13901390
- PREVIOUS_WEEK
13911391
- PREVIOUS_MONTH
13921392
ContentEncoding:
1393+
default: gzip
13931394
description: HTTP header used to compress the media-type.
13941395
enum:
13951396
- gzip

.generator/schemas/v2/openapi.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22529,6 +22529,7 @@ components:
2252922529
type: string
2253022530
type: object
2253122531
ContentEncoding:
22532+
default: gzip
2253222533
description: HTTP header used to compress the media-type.
2253322534
enum:
2253422535
- identity
@@ -95787,7 +95788,7 @@ components:
9578795788
example: true
9578895789
type: boolean
9578995790
trace_sample_rate:
95790-
description: The sample rate for the APM cross-product retention filter, between 0 and 100.
95791+
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.
9579195792
example: 25.0
9579295793
format: double
9579395794
maximum: 100
@@ -96438,7 +96439,7 @@ components:
9643896439
$ref: "#/components/schemas/RumRetentionFilterData"
9643996440
type: object
9644096441
RumRetentionFilterSampleRate:
96441-
description: The sample rate for a RUM retention filter, between 0.1 and 100.
96442+
description: The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one decimal place.
9644296443
example: 50.5
9644396444
format: double
9644496445
maximum: 100

src/datadog_api_client/v1/model/content_encoding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class ContentEncoding(ModelSimple):
1616
"""
1717
HTTP header used to compress the media-type.
1818
19-
:param value: Must be one of ["gzip", "deflate"].
19+
:param value: If omitted defaults to "gzip". Must be one of ["gzip", "deflate"].
2020
:type value: str
2121
"""
2222

src/datadog_api_client/v2/model/content_encoding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class ContentEncoding(ModelSimple):
1616
"""
1717
HTTP header used to compress the media-type.
1818
19-
:param value: Must be one of ["identity", "gzip", "deflate"].
19+
:param value: If omitted defaults to "gzip". Must be one of ["identity", "gzip", "deflate"].
2020
:type value: str
2121
"""
2222

src/datadog_api_client/v2/model/rum_cross_product_sampling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def __init__(
4545
:param trace_enabled: Whether the cross-product retention filter for APM traces is enabled.
4646
:type trace_enabled: bool, optional
4747
48-
:param trace_sample_rate: The sample rate for the APM cross-product retention filter, between 0 and 100.
48+
:param trace_sample_rate: 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.
4949
:type trace_sample_rate: float, optional
5050
"""
5151
if trace_enabled is not unset:

src/datadog_api_client/v2/model/rum_retention_filter_attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(
7777
:param query: The query string for a RUM retention filter.
7878
:type query: str, optional
7979
80-
:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100.
80+
:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one decimal place.
8181
:type sample_rate: float, optional
8282
"""
8383
if cross_product_sampling is not unset:

src/datadog_api_client/v2/model/rum_retention_filter_create_attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(
7777
:param query: The query string for a RUM retention filter.
7878
:type query: str, optional
7979
80-
:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100.
80+
:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one decimal place.
8181
:type sample_rate: float
8282
"""
8383
if cross_product_sampling is not unset:

src/datadog_api_client/v2/model/rum_retention_filter_update_attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(
7777
:param query: The query string for a RUM retention filter.
7878
:type query: str, optional
7979
80-
:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100.
80+
:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one decimal place.
8181
:type sample_rate: float, optional
8282
"""
8383
if cross_product_sampling is not unset:

0 commit comments

Comments
 (0)