bitwarden_api_api/apis/
installations_api.rs1use std::sync::Arc;
12
13use async_trait::async_trait;
14#[cfg(feature = "mockall")]
15use mockall::automock;
16use reqwest;
17use serde::{Deserialize, Serialize, de::Error as _};
18
19use super::{Error, configuration};
20use crate::{
21 apis::{AuthRequired, ContentType, ResponseContent},
22 models,
23};
24
25#[cfg_attr(feature = "mockall", automock)]
26#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
27#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
28pub trait InstallationsApi: Send + Sync {
29 async fn get<'a>(
31 &self,
32 id: uuid::Uuid,
33 ) -> Result<models::InstallationResponseModel, Error<GetError>>;
34
35 async fn post<'a>(
37 &self,
38 installation_request_model: Option<models::InstallationRequestModel>,
39 ) -> Result<models::InstallationResponseModel, Error<PostError>>;
40}
41
42pub struct InstallationsApiClient {
43 configuration: Arc<configuration::Configuration>,
44}
45
46impl InstallationsApiClient {
47 pub fn new(configuration: Arc<configuration::Configuration>) -> Self {
48 Self { configuration }
49 }
50}
51
52#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
53#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
54impl InstallationsApi for InstallationsApiClient {
55 async fn get<'a>(
56 &self,
57 id: uuid::Uuid,
58 ) -> Result<models::InstallationResponseModel, Error<GetError>> {
59 let local_var_configuration = &self.configuration;
60
61 let local_var_client = &local_var_configuration.client;
62
63 let local_var_uri_str = format!(
64 "{}/installations/{id}",
65 local_var_configuration.base_path,
66 id = id
67 );
68 let mut local_var_req_builder =
69 local_var_client.request(reqwest::Method::GET, local_var_uri_str.as_str());
70
71 local_var_req_builder = local_var_req_builder.with_extension(AuthRequired::Bearer);
72
73 bitwarden_api_base::process_with_json_response(local_var_req_builder).await
74 }
75
76 async fn post<'a>(
77 &self,
78 installation_request_model: Option<models::InstallationRequestModel>,
79 ) -> Result<models::InstallationResponseModel, Error<PostError>> {
80 let local_var_configuration = &self.configuration;
81
82 let local_var_client = &local_var_configuration.client;
83
84 let local_var_uri_str = format!("{}/installations", local_var_configuration.base_path);
85 let mut local_var_req_builder =
86 local_var_client.request(reqwest::Method::POST, local_var_uri_str.as_str());
87
88 local_var_req_builder = local_var_req_builder.with_extension(AuthRequired::Bearer);
89 local_var_req_builder = local_var_req_builder.json(&installation_request_model);
90
91 bitwarden_api_base::process_with_json_response(local_var_req_builder).await
92 }
93}
94
95#[derive(Debug, Clone, Serialize, Deserialize)]
97#[serde(untagged)]
98pub enum GetError {
99 UnknownValue(serde_json::Value),
100}
101#[derive(Debug, Clone, Serialize, Deserialize)]
103#[serde(untagged)]
104pub enum PostError {
105 UnknownValue(serde_json::Value),
106}