Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-11 15:05:37.258509",
"spec_repo_commit": "d209cd40"
"regenerated": "2025-04-14 08:41:51.365494",
"spec_repo_commit": "e73254d7"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-11 15:05:37.274982",
"spec_repo_commit": "d209cd40"
"regenerated": "2025-04-14 08:41:51.382445",
"spec_repo_commit": "e73254d7"
}
}
}
16 changes: 8 additions & 8 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25398,9 +25398,9 @@ components:
type: string
rate:
description: 'Sample rate to apply to spans going through this retention
filter,
filter.

a value of 1.0 keeps all spans matching the query.'
A value of 1.0 keeps all spans matching the query.'
example: 1.0
format: double
type: number
Expand Down Expand Up @@ -25465,9 +25465,9 @@ components:
type: string
rate:
description: 'Sample rate to apply to spans going through this retention
filter,
filter.

a value of 1.0 keeps all spans matching the query.'
A value of 1.0 keeps all spans matching the query.'
example: 1.0
format: double
type: number
Expand Down Expand Up @@ -25498,9 +25498,9 @@ components:
type: string
rate:
description: 'Sample rate to apply to spans going through this retention
filter,
filter.

a value of 1.0 keeps all spans matching the query.'
A value of 1.0 keeps all spans matching the query.'
example: 1.0
format: double
type: number
Expand Down Expand Up @@ -25577,9 +25577,9 @@ components:
type: string
rate:
description: 'Sample rate to apply to spans going through this retention
filter,
filter.

a value of 1.0 keeps all spans matching the query.'
A value of 1.0 keeps all spans matching the query.'
example: 1.0
format: double
type: number
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ pub struct RetentionFilterAllAttributes {
/// The name of the retention filter.
#[serde(rename = "name")]
pub name: Option<String>,
/// Sample rate to apply to spans going through this retention filter,
/// a value of 1.0 keeps all spans matching the query.
/// Sample rate to apply to spans going through this retention filter.
/// A value of 1.0 keeps all spans matching the query.
#[serde(rename = "rate")]
pub rate: Option<f64>,
/// Sample rate to apply to traces containing spans going through this retention filter.
Expand Down
4 changes: 2 additions & 2 deletions src/datadogV2/model/model_retention_filter_attributes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ pub struct RetentionFilterAttributes {
/// The name of the retention filter.
#[serde(rename = "name")]
pub name: Option<String>,
/// Sample rate to apply to spans going through this retention filter,
/// a value of 1.0 keeps all spans matching the query.
/// Sample rate to apply to spans going through this retention filter.
/// A value of 1.0 keeps all spans matching the query.
#[serde(rename = "rate")]
pub rate: Option<f64>,
/// Sample rate to apply to traces containing spans going through this retention filter.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ pub struct RetentionFilterCreateAttributes {
/// The name of the retention filter.
#[serde(rename = "name")]
pub name: String,
/// Sample rate to apply to spans going through this retention filter,
/// a value of 1.0 keeps all spans matching the query.
/// Sample rate to apply to spans going through this retention filter.
/// A value of 1.0 keeps all spans matching the query.
#[serde(rename = "rate")]
pub rate: f64,
/// Sample rate to apply to traces containing spans going through this retention filter.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ pub struct RetentionFilterUpdateAttributes {
/// The name of the retention filter.
#[serde(rename = "name")]
pub name: String,
/// Sample rate to apply to spans going through this retention filter,
/// a value of 1.0 keeps all spans matching the query.
/// Sample rate to apply to spans going through this retention filter.
/// A value of 1.0 keeps all spans matching the query.
#[serde(rename = "rate")]
pub rate: f64,
/// Sample rate to apply to traces containing spans going through this retention filter.
Expand Down
Loading