@@ -25,9 +25,6 @@ pub struct ObservabilityPipelineCloudPremDestination {
2525 /// A list of component IDs whose output is used as the `input` for this component.
2626 #[ serde( rename = "inputs" ) ]
2727 pub inputs : Vec < String > ,
28- /// Configuration for enabling TLS encryption between the pipeline component and external services.
29- #[ serde( rename = "tls" ) ]
30- pub tls : Option < crate :: datadogV2:: model:: ObservabilityPipelineTls > ,
3128 /// The destination type. The value should always be `cloud_prem`.
3229 #[ serde( rename = "type" ) ]
3330 pub type_ : crate :: datadogV2:: model:: ObservabilityPipelineCloudPremDestinationType ,
@@ -49,7 +46,6 @@ impl ObservabilityPipelineCloudPremDestination {
4946 endpoint_url_key : None ,
5047 id,
5148 inputs,
52- tls : None ,
5349 type_,
5450 additional_properties : std:: collections:: BTreeMap :: new ( ) ,
5551 _unparsed : false ,
@@ -69,11 +65,6 @@ impl ObservabilityPipelineCloudPremDestination {
6965 self
7066 }
7167
72- pub fn tls ( mut self , value : crate :: datadogV2:: model:: ObservabilityPipelineTls ) -> Self {
73- self . tls = Some ( value) ;
74- self
75- }
76-
7768 pub fn additional_properties (
7869 mut self ,
7970 value : std:: collections:: BTreeMap < String , serde_json:: Value > ,
@@ -106,7 +97,6 @@ impl<'de> Deserialize<'de> for ObservabilityPipelineCloudPremDestination {
10697 let mut endpoint_url_key: Option < String > = None ;
10798 let mut id: Option < String > = None ;
10899 let mut inputs: Option < Vec < String > > = None ;
109- let mut tls: Option < crate :: datadogV2:: model:: ObservabilityPipelineTls > = None ;
110100 let mut type_: Option <
111101 crate :: datadogV2:: model:: ObservabilityPipelineCloudPremDestinationType ,
112102 > = None ;
@@ -145,12 +135,6 @@ impl<'de> Deserialize<'de> for ObservabilityPipelineCloudPremDestination {
145135 "inputs" => {
146136 inputs = Some ( serde_json:: from_value ( v) . map_err ( M :: Error :: custom) ?) ;
147137 }
148- "tls" => {
149- if v. is_null ( ) {
150- continue ;
151- }
152- tls = Some ( serde_json:: from_value ( v) . map_err ( M :: Error :: custom) ?) ;
153- }
154138 "type" => {
155139 type_ = Some ( serde_json:: from_value ( v) . map_err ( M :: Error :: custom) ?) ;
156140 if let Some ( ref _type_) = type_ {
@@ -178,7 +162,6 @@ impl<'de> Deserialize<'de> for ObservabilityPipelineCloudPremDestination {
178162 endpoint_url_key,
179163 id,
180164 inputs,
181- tls,
182165 type_,
183166 additional_properties,
184167 _unparsed,
0 commit comments