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
use anyhow::Result;

use crate::Client;

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,
    ) -> Result<crate::types::ThreatInsightConfiguration> {
        let url = "/api/v1/threats/configuration".to_string();
        self.client.get(&url, 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,
    ) -> Result<crate::types::ThreatInsightConfiguration> {
        let url = "/api/v1/threats/configuration".to_string();
        self.client
            .post(&url, Some(reqwest::Body::from(serde_json::to_vec(body)?)))
            .await
    }
}