datadog-api-client 0.30.0

Rust client for the Datadog API.
// 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};

/// Attributes for creating a new OCI tenancy integration configuration, including credentials, region settings, and collection options.
#[non_exhaustive]
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct CreateTenancyConfigDataAttributes {
    /// OCI API signing key credentials used to authenticate the Datadog integration with the OCI tenancy.
    #[serde(rename = "auth_credentials")]
    pub auth_credentials: crate::datadogV2::model::CreateTenancyConfigDataAttributesAuthCredentials,
    /// Version number of the integration the tenancy is integrated with
    #[serde(
        rename = "config_version",
        default,
        with = "::serde_with::rust::double_option"
    )]
    pub config_version: Option<Option<i64>>,
    /// Whether cost data collection from OCI is enabled for the tenancy.
    #[serde(rename = "cost_collection_enabled")]
    pub cost_collection_enabled: Option<bool>,
    /// The OCID of the OCI compartment used by the Datadog integration stack.
    #[serde(rename = "dd_compartment_id")]
    pub dd_compartment_id: Option<String>,
    /// The OCID of the OCI Resource Manager stack used by the Datadog integration.
    #[serde(rename = "dd_stack_id")]
    pub dd_stack_id: Option<String>,
    /// The home region of the OCI tenancy (for example, us-ashburn-1).
    #[serde(rename = "home_region")]
    pub home_region: String,
    /// Log collection configuration for an OCI tenancy, controlling which compartments and services have log collection enabled.
    #[serde(rename = "logs_config")]
    pub logs_config: Option<crate::datadogV2::model::CreateTenancyConfigDataAttributesLogsConfig>,
    /// Metrics collection configuration for an OCI tenancy, controlling which compartments and services are included or excluded.
    #[serde(rename = "metrics_config")]
    pub metrics_config:
        Option<crate::datadogV2::model::CreateTenancyConfigDataAttributesMetricsConfig>,
    /// Region configuration for an OCI tenancy, specifying which regions are available, enabled, or disabled for data collection.
    #[serde(rename = "regions_config")]
    pub regions_config:
        Option<crate::datadogV2::model::CreateTenancyConfigDataAttributesRegionsConfig>,
    /// Whether resource collection from OCI is enabled for the tenancy.
    #[serde(rename = "resource_collection_enabled")]
    pub resource_collection_enabled: Option<bool>,
    /// The OCID of the OCI user used by the Datadog integration for authentication.
    #[serde(rename = "user_ocid")]
    pub user_ocid: String,
    #[serde(flatten)]
    pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
    #[serde(skip)]
    #[serde(default)]
    pub(crate) _unparsed: bool,
}

impl CreateTenancyConfigDataAttributes {
    pub fn new(
        auth_credentials: crate::datadogV2::model::CreateTenancyConfigDataAttributesAuthCredentials,
        home_region: String,
        user_ocid: String,
    ) -> CreateTenancyConfigDataAttributes {
        CreateTenancyConfigDataAttributes {
            auth_credentials,
            config_version: None,
            cost_collection_enabled: None,
            dd_compartment_id: None,
            dd_stack_id: None,
            home_region,
            logs_config: None,
            metrics_config: None,
            regions_config: None,
            resource_collection_enabled: None,
            user_ocid,
            additional_properties: std::collections::BTreeMap::new(),
            _unparsed: false,
        }
    }

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

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

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

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

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

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

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

    pub fn resource_collection_enabled(mut self, value: bool) -> Self {
        self.resource_collection_enabled = 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 CreateTenancyConfigDataAttributes {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        struct CreateTenancyConfigDataAttributesVisitor;
        impl<'a> Visitor<'a> for CreateTenancyConfigDataAttributesVisitor {
            type Value = CreateTenancyConfigDataAttributes;

            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 auth_credentials: Option<
                    crate::datadogV2::model::CreateTenancyConfigDataAttributesAuthCredentials,
                > = None;
                let mut config_version: Option<Option<i64>> = None;
                let mut cost_collection_enabled: Option<bool> = None;
                let mut dd_compartment_id: Option<String> = None;
                let mut dd_stack_id: Option<String> = None;
                let mut home_region: Option<String> = None;
                let mut logs_config: Option<
                    crate::datadogV2::model::CreateTenancyConfigDataAttributesLogsConfig,
                > = None;
                let mut metrics_config: Option<
                    crate::datadogV2::model::CreateTenancyConfigDataAttributesMetricsConfig,
                > = None;
                let mut regions_config: Option<
                    crate::datadogV2::model::CreateTenancyConfigDataAttributesRegionsConfig,
                > = None;
                let mut resource_collection_enabled: Option<bool> = None;
                let mut user_ocid: Option<String> = 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() {
                        "auth_credentials" => {
                            auth_credentials =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "config_version" => {
                            config_version =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "cost_collection_enabled" => {
                            if v.is_null() {
                                continue;
                            }
                            cost_collection_enabled =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "dd_compartment_id" => {
                            if v.is_null() {
                                continue;
                            }
                            dd_compartment_id =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "dd_stack_id" => {
                            if v.is_null() {
                                continue;
                            }
                            dd_stack_id =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "home_region" => {
                            home_region =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "logs_config" => {
                            if v.is_null() {
                                continue;
                            }
                            logs_config =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "metrics_config" => {
                            if v.is_null() {
                                continue;
                            }
                            metrics_config =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "regions_config" => {
                            if v.is_null() {
                                continue;
                            }
                            regions_config =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "resource_collection_enabled" => {
                            if v.is_null() {
                                continue;
                            }
                            resource_collection_enabled =
                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        "user_ocid" => {
                            user_ocid = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
                        }
                        &_ => {
                            if let Ok(value) = serde_json::from_value(v.clone()) {
                                additional_properties.insert(k, value);
                            }
                        }
                    }
                }
                let auth_credentials =
                    auth_credentials.ok_or_else(|| M::Error::missing_field("auth_credentials"))?;
                let home_region =
                    home_region.ok_or_else(|| M::Error::missing_field("home_region"))?;
                let user_ocid = user_ocid.ok_or_else(|| M::Error::missing_field("user_ocid"))?;

                let content = CreateTenancyConfigDataAttributes {
                    auth_credentials,
                    config_version,
                    cost_collection_enabled,
                    dd_compartment_id,
                    dd_stack_id,
                    home_region,
                    logs_config,
                    metrics_config,
                    regions_config,
                    resource_collection_enabled,
                    user_ocid,
                    additional_properties,
                    _unparsed,
                };

                Ok(content)
            }
        }

        deserializer.deserialize_any(CreateTenancyConfigDataAttributesVisitor)
    }
}