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
use crate::Client;
use crate::ClientResult;

pub struct ThreatInsights {
    pub client: Client,
}

impl ThreatInsights {
    #[doc(hidden)]
    pub fn new(client: Client) -> Self {
        ThreatInsights { client }
    }

    /**
     * This function performs a `GET` to the `/api/v1/threats/configuration` endpoint.
     *
     * Gets current ThreatInsight configuration
     */
    pub async fn get_current_configuration(
        &self,
    ) -> ClientResult<crate::Response<crate::types::ThreatInsightConfiguration>> {
        let url = self.client.url("/api/v1/threats/configuration", None);
        self.client
            .get(
                &url,
                crate::Message {
                    body: None,
                    content_type: None,
                },
            )
            .await
    }
    /**
     * This function performs a `POST` to the `/api/v1/threats/configuration` endpoint.
     *
     * Updates ThreatInsight configuration
     */
    pub async fn update_configuration(
        &self,
        body: &crate::types::ThreatInsightConfiguration,
    ) -> ClientResult<crate::Response<crate::types::ThreatInsightConfiguration>> {
        let url = self.client.url("/api/v1/threats/configuration", None);
        self.client
            .post(
                &url,
                crate::Message {
                    body: Some(reqwest::Body::from(serde_json::to_vec(body)?)),
                    content_type: Some("application/json".to_string()),
                },
            )
            .await
    }
}