#[derive(Debug, Clone)]
pub struct StatusClient<T> {
client: T,
path: String,
}
impl<T> StatusClient<T>
where
T: crate::client::Client,
{
pub fn new(client: T, parent_path: &str) -> Self {
Self {
client,
path: format!("{}{}", parent_path, "/status"),
}
}
}
impl<T> StatusClient<T>
where
T: crate::client::Client,
{
#[doc = "Read task status."]
#[doc = ""]
#[doc = "The user needs 'Sys.Audit' permissions on '/nodes/\\<node\\>' if they are not the owner of the task."]
pub async fn get(&self) -> Result<GetOutput, T::Error> {
let path = self.path.to_string();
self.client.get(&path, &()).await
}
}
impl GetOutput {
pub fn new(
id: String,
node: String,
pid: i64,
pstart: i64,
starttime: i64,
status: Status,
ty: String,
upid: String,
user: String,
) -> Self {
Self {
id,
node,
pid,
pstart,
starttime,
status,
ty,
upid,
user,
exitstatus: ::std::default::Default::default(),
additional_properties: ::std::default::Default::default(),
}
}
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct GetOutput {
#[serde(skip_serializing_if = "Option::is_none", default)]
pub exitstatus: Option<String>,
pub id: String,
pub node: String,
#[serde(
serialize_with = "crate::types::serialize_int",
deserialize_with = "crate::types::deserialize_int"
)]
pub pid: i64,
#[serde(
serialize_with = "crate::types::serialize_int",
deserialize_with = "crate::types::deserialize_int"
)]
pub pstart: i64,
#[serde(
serialize_with = "crate::types::serialize_int",
deserialize_with = "crate::types::deserialize_int"
)]
pub starttime: i64,
pub status: Status,
#[serde(rename = "type")]
pub ty: String,
pub upid: String,
pub user: String,
#[serde(
flatten,
default,
skip_serializing_if = "::std::collections::HashMap::is_empty"
)]
pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize, PartialEq)]
pub enum Status {
#[serde(rename = "running")]
Running,
#[serde(rename = "stopped")]
Stopped,
}
impl TryFrom<&str> for Status {
type Error = String;
fn try_from(value: &str) -> Result<Self, <Self as TryFrom<&str>>::Error> {
match value {
"running" => Ok(Self::Running),
"stopped" => Ok(Self::Stopped),
v => Err(format!("Unknown variant {v}")),
}
}
}