windmill_api/apis/
service_logs_api.rs1use reqwest;
13use serde::{Deserialize, Serialize};
14use crate::{apis::ResponseContent, models};
15use super::{Error, configuration};
16
17
18#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum GetLogFileError {
22 UnknownValue(serde_json::Value),
23}
24
25#[derive(Debug, Clone, Serialize, Deserialize)]
27#[serde(untagged)]
28pub enum ListLogFilesError {
29 UnknownValue(serde_json::Value),
30}
31
32
33pub async fn get_log_file(configuration: &configuration::Configuration, path: &str) -> Result<String, Error<GetLogFileError>> {
34 let local_var_configuration = configuration;
35
36 let local_var_client = &local_var_configuration.client;
37
38 let local_var_uri_str = format!("{}/service_logs/get_log_file/{path}", local_var_configuration.base_path, path=crate::apis::urlencode(path));
39 let mut local_var_req_builder = local_var_client.request(reqwest::Method::GET, local_var_uri_str.as_str());
40
41 if let Some(ref local_var_user_agent) = local_var_configuration.user_agent {
42 local_var_req_builder = local_var_req_builder.header(reqwest::header::USER_AGENT, local_var_user_agent.clone());
43 }
44 if let Some(ref local_var_token) = local_var_configuration.bearer_access_token {
45 local_var_req_builder = local_var_req_builder.bearer_auth(local_var_token.to_owned());
46 };
47
48 let local_var_req = local_var_req_builder.build()?;
49 let local_var_resp = local_var_client.execute(local_var_req).await?;
50
51 let local_var_status = local_var_resp.status();
52 let local_var_content = local_var_resp.text().await?;
53
54 if !local_var_status.is_client_error() && !local_var_status.is_server_error() {
55 crate::from_str_patched(&local_var_content).map_err(Error::from)
56 } else {
57 let local_var_entity: Option<GetLogFileError> = crate::from_str_patched(&local_var_content).ok();
58 let local_var_error = ResponseContent { status: local_var_status, content: local_var_content, entity: local_var_entity };
59 Err(Error::ResponseError(local_var_error))
60 }
61}
62
63pub async fn list_log_files(configuration: &configuration::Configuration, before: Option<String>, after: Option<String>, with_error: Option<bool>) -> Result<Vec<models::ListLogFiles200ResponseInner>, Error<ListLogFilesError>> {
64 let local_var_configuration = configuration;
65
66 let local_var_client = &local_var_configuration.client;
67
68 let local_var_uri_str = format!("{}/service_logs/list_files", local_var_configuration.base_path);
69 let mut local_var_req_builder = local_var_client.request(reqwest::Method::GET, local_var_uri_str.as_str());
70
71 if let Some(ref local_var_str) = before {
72 local_var_req_builder = local_var_req_builder.query(&[("before", &local_var_str.to_string())]);
73 }
74 if let Some(ref local_var_str) = after {
75 local_var_req_builder = local_var_req_builder.query(&[("after", &local_var_str.to_string())]);
76 }
77 if let Some(ref local_var_str) = with_error {
78 local_var_req_builder = local_var_req_builder.query(&[("with_error", &local_var_str.to_string())]);
79 }
80 if let Some(ref local_var_user_agent) = local_var_configuration.user_agent {
81 local_var_req_builder = local_var_req_builder.header(reqwest::header::USER_AGENT, local_var_user_agent.clone());
82 }
83 if let Some(ref local_var_token) = local_var_configuration.bearer_access_token {
84 local_var_req_builder = local_var_req_builder.bearer_auth(local_var_token.to_owned());
85 };
86
87 let local_var_req = local_var_req_builder.build()?;
88 let local_var_resp = local_var_client.execute(local_var_req).await?;
89
90 let local_var_status = local_var_resp.status();
91 let local_var_content = local_var_resp.text().await?;
92
93 if !local_var_status.is_client_error() && !local_var_status.is_server_error() {
94 crate::from_str_patched(&local_var_content).map_err(Error::from)
95 } else {
96 let local_var_entity: Option<ListLogFilesError> = crate::from_str_patched(&local_var_content).ok();
97 let local_var_error = ResponseContent { status: local_var_status, content: local_var_content, entity: local_var_entity };
98 Err(Error::ResponseError(local_var_error))
99 }
100}
101