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
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75869,7 +75869,7 @@ components:
- data
type: object
ObservabilityPipelineSpecData:
description: Contains the the pipeline configuration.
description: Contains the pipeline configuration.
properties:
attributes:
$ref: "#/components/schemas/ObservabilityPipelineDataAttributes"
Expand Down
2 changes: 1 addition & 1 deletion src/datadogV2/model/model_observability_pipeline_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use std::fmt::{self, Formatter};
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct ObservabilityPipelineSpec {
/// Contains the the pipeline configuration.
/// Contains the pipeline configuration.
#[serde(rename = "data")]
pub data: crate::datadogV2::model::ObservabilityPipelineSpecData,
#[serde(flatten)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use serde::{Deserialize, Deserializer, Serialize};
use serde_with::skip_serializing_none;
use std::fmt::{self, Formatter};

/// Contains the the pipeline configuration.
/// Contains the pipeline configuration.
#[non_exhaustive]
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
Expand Down
Loading