datadog-api-client 0.32.0

Rust client for the Datadog API.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2019-Present Datadog, Inc.
use serde::de::{Error, MapAccess, Visitor};
use serde::{Deserialize, Deserializer, Serialize};
use serde_with::skip_serializing_none;
use std::fmt::{self, Formatter};

/// The `kafka` destination sends logs to Apache Kafka topics.
///
/// **Supported pipeline types:** logs
#[non_exhaustive]
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct ObservabilityPipelineKafkaDestination {
    /// Name of the environment variable or secret that holds the Kafka bootstrap servers list.
    #[serde(rename = "bootstrap_servers_key")]
    pub bootstrap_servers_key: Option<String>,
    /// Configuration for buffer settings on destination components.
    #[serde(rename = "buffer")]
    pub buffer: Option<crate::datadogV2::model::ObservabilityPipelineBufferOptions>,
    /// Compression codec for Kafka messages.
    #[serde(rename = "compression")]
    pub compression:
        Option<crate::datadogV2::model::ObservabilityPipelineKafkaDestinationCompression>,
    /// Encoding format for log events.
    #[serde(rename = "encoding")]
    pub encoding: crate::datadogV2::model::ObservabilityPipelineKafkaDestinationEncoding,
    /// The field name to use for Kafka message headers.
    #[serde(rename = "headers_key")]
    pub headers_key: Option<String>,
    /// The unique identifier for this component.
    #[serde(rename = "id")]
    pub id: String,
    /// A list of component IDs whose output is used as the `input` for this component.
    #[serde(rename = "inputs")]
    pub inputs: Vec<String>,
    /// The field name to use as the Kafka message key.
    #[serde(rename = "key_field")]
    pub key_field: Option<String>,
    /// Optional list of advanced Kafka producer configuration options, defined as key-value pairs.
    #[serde(rename = "librdkafka_options")]
    pub librdkafka_options:
        Option<Vec<crate::datadogV2::model::ObservabilityPipelineKafkaLibrdkafkaOption>>,
    /// Maximum time in milliseconds to wait for message delivery confirmation.
    #[serde(rename = "message_timeout_ms")]
    pub message_timeout_ms: Option<i64>,
    /// Duration in seconds for the rate limit window.
    #[serde(rename = "rate_limit_duration_secs")]
    pub rate_limit_duration_secs: Option<i64>,
    /// Maximum number of messages allowed per rate limit duration.
    #[serde(rename = "rate_limit_num")]
    pub rate_limit_num: Option<i64>,
    /// Specifies the SASL mechanism for authenticating with a Kafka cluster.
    #[serde(rename = "sasl")]
    pub sasl: Option<crate::datadogV2::model::ObservabilityPipelineKafkaSasl>,
    /// Socket timeout in milliseconds for network requests.
    #[serde(rename = "socket_timeout_ms")]
    pub socket_timeout_ms: Option<i64>,
    /// Configuration for enabling TLS encryption between the pipeline component and external services.
    #[serde(rename = "tls")]
    pub tls: Option<crate::datadogV2::model::ObservabilityPipelineTls>,
    /// The Kafka topic name to publish logs to.
    #[serde(rename = "topic")]
    pub topic: String,
    /// The destination type. The value should always be `kafka`.
    #[serde(rename = "type")]
    pub type_: crate::datadogV2::model::ObservabilityPipelineKafkaDestinationType,
    #[serde(flatten)]
    pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
    #[serde(skip)]
    #[serde(default)]
    pub(crate) _unparsed: bool,
}

impl ObservabilityPipelineKafkaDestination {
    pub fn new(
        encoding: crate::datadogV2::model::ObservabilityPipelineKafkaDestinationEncoding,
        id: String,
        inputs: Vec<String>,
        topic: String,
        type_: crate::datadogV2::model::ObservabilityPipelineKafkaDestinationType,
    ) -> ObservabilityPipelineKafkaDestination {
        ObservabilityPipelineKafkaDestination {
            bootstrap_servers_key: None,
            buffer: None,
            compression: None,
            encoding,
            headers_key: None,
            id,
            inputs,
            key_field: None,
            librdkafka_options: None,
            message_timeout_ms: None,
            rate_limit_duration_secs: None,
            rate_limit_num: None,
            sasl: None,
            socket_timeout_ms: None,
            tls: None,
            topic,
            type_,
            additional_properties: std::collections::BTreeMap::new(),
            _unparsed: false,
        }
    }

    pub fn bootstrap_servers_key(mut self, value: String) -> Self {
        self.bootstrap_servers_key = Some(value);
        self
    }

    pub fn buffer(
        mut self,
        value: crate::datadogV2::model::ObservabilityPipelineBufferOptions,
    ) -> Self {
        self.buffer = Some(value);
        self
    }

    pub fn compression(
        mut self,
        value: crate::datadogV2::model::ObservabilityPipelineKafkaDestinationCompression,
    ) -> Self {
        self.compression = Some(value);
        self
    }

    pub fn headers_key(mut self, value: String) -> Self {
        self.headers_key = Some(value);
        self
    }

    pub fn key_field(mut self, value: String) -> Self {
        self.key_field = Some(value);
        self
    }

    pub fn librdkafka_options(
        mut self,
        value: Vec<crate::datadogV2::model::ObservabilityPipelineKafkaLibrdkafkaOption>,
    ) -> Self {
        self.librdkafka_options = Some(value);
        self
    }

    pub fn message_timeout_ms(mut self, value: i64) -> Self {
        self.message_timeout_ms = Some(value);
        self
    }

    pub fn rate_limit_duration_secs(mut self, value: i64) -> Self {
        self.rate_limit_duration_secs = Some(value);
        self
    }

    pub fn rate_limit_num(mut self, value: i64) -> Self {
        self.rate_limit_num = Some(value);
        self
    }

    pub fn sasl(mut self, value: crate::datadogV2::model::ObservabilityPipelineKafkaSasl) -> Self {
        self.sasl = Some(value);
        self
    }

    pub fn socket_timeout_ms(mut self, value: i64) -> Self {
        self.socket_timeout_ms = Some(value);
        self
    }

    pub fn tls(mut self, value: crate::datadogV2::model::ObservabilityPipelineTls) -> Self {
        self.tls = Some(value);
        self
    }

    pub fn additional_properties(
        mut self,
        value: std::collections::BTreeMap<String, serde_json::Value>,
    ) -> Self {
        self.additional_properties = value;
        self
    }
}

impl<'de> Deserialize<'de> for ObservabilityPipelineKafkaDestination {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        struct ObservabilityPipelineKafkaDestinationVisitor;
        impl<'a> Visitor<'a> for ObservabilityPipelineKafkaDestinationVisitor {
            type Value = ObservabilityPipelineKafkaDestination;

            fn expecting(&self, f: &mut Formatter<'_>) -> fmt::Result {
                f.write_str("a mapping")
            }

            fn visit_map<M>(self, mut map: M) -> Result<Self::Value, M::Error>
            where
                M: MapAccess<'a>,
            {
                let mut bootstrap_servers_key: Option<String> = None;
                let mut buffer: Option<
                    crate::datadogV2::model::ObservabilityPipelineBufferOptions,
                > = None;
                let mut compression: Option<
                    crate::datadogV2::model::ObservabilityPipelineKafkaDestinationCompression,
                > = None;
                let mut encoding: Option<
                    crate::datadogV2::model::ObservabilityPipelineKafkaDestinationEncoding,
                > = None;
                let mut headers_key: Option<String> = None;
                let mut id: Option<String> = None;
                let mut inputs: Option<Vec<String>> = None;
                let mut key_field: Option<String> = None;
                let mut librdkafka_options: Option<
                    Vec<crate::datadogV2::model::ObservabilityPipelineKafkaLibrdkafkaOption>,
                > = None;
                let mut message_timeout_ms: Option<i64> = None;
                let mut rate_limit_duration_secs: Option<i64> = None;
                let mut rate_limit_num: Option<i64> = None;
                let mut sasl: Option<crate::datadogV2::model::ObservabilityPipelineKafkaSasl> =
                    None;
                let mut socket_timeout_ms: Option<i64> = None;
                let mut tls: Option<crate::datadogV2::model::ObservabilityPipelineTls> = None;
                let mut topic: Option<String> = None;
                let mut type_: Option<
                    crate::datadogV2::model::ObservabilityPipelineKafkaDestinationType,
                > = None;
                let mut additional_properties: std::collections::BTreeMap<
                    String,
                    serde_json::Value,
                > = std::collections::BTreeMap::new();
                let mut _unparsed = false;

                while let Some((k, v)) = map.next_entry::<String, serde_json::Value>()? {
                    match k.as_str() {
                        "bootstrap_servers_key" => {
                            if v.is_null() {
                                continue;
                            }
                            bootstrap_servers_key =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "buffer" => {
                            if v.is_null() {
                                continue;
                            }
                            buffer = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                            if let Some(ref _buffer) = buffer {
                                match _buffer {
                                    crate::datadogV2::model::ObservabilityPipelineBufferOptions::UnparsedObject(_buffer) => {
                                        _unparsed = true;
                                    },
                                    _ => {}
                                }
                            }
                        }
                        "compression" => {
                            if v.is_null() {
                                continue;
                            }
                            compression =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                            if let Some(ref _compression) = compression {
                                match _compression {
                                    crate::datadogV2::model::ObservabilityPipelineKafkaDestinationCompression::UnparsedObject(_compression) => {
                                        _unparsed = true;
                                    },
                                    _ => {}
                                }
                            }
                        }
                        "encoding" => {
                            encoding = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                            if let Some(ref _encoding) = encoding {
                                match _encoding {
                                    crate::datadogV2::model::ObservabilityPipelineKafkaDestinationEncoding::UnparsedObject(_encoding) => {
                                        _unparsed = true;
                                    },
                                    _ => {}
                                }
                            }
                        }
                        "headers_key" => {
                            if v.is_null() {
                                continue;
                            }
                            headers_key =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "id" => {
                            id = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "inputs" => {
                            inputs = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "key_field" => {
                            if v.is_null() {
                                continue;
                            }
                            key_field = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "librdkafka_options" => {
                            if v.is_null() {
                                continue;
                            }
                            librdkafka_options =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "message_timeout_ms" => {
                            if v.is_null() {
                                continue;
                            }
                            message_timeout_ms =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "rate_limit_duration_secs" => {
                            if v.is_null() {
                                continue;
                            }
                            rate_limit_duration_secs =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "rate_limit_num" => {
                            if v.is_null() {
                                continue;
                            }
                            rate_limit_num =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "sasl" => {
                            if v.is_null() {
                                continue;
                            }
                            sasl = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "socket_timeout_ms" => {
                            if v.is_null() {
                                continue;
                            }
                            socket_timeout_ms =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "tls" => {
                            if v.is_null() {
                                continue;
                            }
                            tls = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "topic" => {
                            topic = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "type" => {
                            type_ = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                            if let Some(ref _type_) = type_ {
                                match _type_ {
                                    crate::datadogV2::model::ObservabilityPipelineKafkaDestinationType::UnparsedObject(_type_) => {
                                        _unparsed = true;
                                    },
                                    _ => {}
                                }
                            }
                        }
                        &_ => {
                            if let Ok(value) = serde_json::from_value(v.clone()) {
                                additional_properties.insert(k, value);
                            }
                        }
                    }
                }
                let encoding = encoding.ok_or_else(|| M::Error::missing_field("encoding"))?;
                let id = id.ok_or_else(|| M::Error::missing_field("id"))?;
                let inputs = inputs.ok_or_else(|| M::Error::missing_field("inputs"))?;
                let topic = topic.ok_or_else(|| M::Error::missing_field("topic"))?;
                let type_ = type_.ok_or_else(|| M::Error::missing_field("type_"))?;

                let content = ObservabilityPipelineKafkaDestination {
                    bootstrap_servers_key,
                    buffer,
                    compression,
                    encoding,
                    headers_key,
                    id,
                    inputs,
                    key_field,
                    librdkafka_options,
                    message_timeout_ms,
                    rate_limit_duration_secs,
                    rate_limit_num,
                    sasl,
                    socket_timeout_ms,
                    tls,
                    topic,
                    type_,
                    additional_properties,
                    _unparsed,
                };

                Ok(content)
            }
        }

        deserializer.deserialize_any(ObservabilityPipelineKafkaDestinationVisitor)
    }
}