pub struct AutomationExecution {Show 19 fields
pub automation_execution_id: String,
pub document_name: String,
pub document_version: Option<String>,
pub automation_execution_status: String,
pub execution_start_time: DateTime<Utc>,
pub execution_end_time: Option<DateTime<Utc>>,
pub parameters: HashMap<String, Vec<String>>,
pub outputs: HashMap<String, Vec<String>>,
pub mode: String,
pub target: Option<String>,
pub targets: Vec<Value>,
pub max_concurrency: Option<String>,
pub max_errors: Option<String>,
pub executed_by: String,
pub step_executions: Vec<AutomationStepExecution>,
pub automation_subtype: Option<String>,
pub runbooks: Vec<Value>,
pub change_request_name: Option<String>,
pub scheduled_time: Option<DateTime<Utc>>,
}Fields§
§automation_execution_id: String§document_name: String§document_version: Option<String>§automation_execution_status: String§execution_start_time: DateTime<Utc>§execution_end_time: Option<DateTime<Utc>>§parameters: HashMap<String, Vec<String>>§outputs: HashMap<String, Vec<String>>§mode: String§target: Option<String>§targets: Vec<Value>§max_concurrency: Option<String>§max_errors: Option<String>§executed_by: String§step_executions: Vec<AutomationStepExecution>§automation_subtype: Option<String>§runbooks: Vec<Value>§change_request_name: Option<String>§scheduled_time: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for AutomationExecution
impl Clone for AutomationExecution
Source§fn clone(&self) -> AutomationExecution
fn clone(&self) -> AutomationExecution
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AutomationExecution
impl RefUnwindSafe for AutomationExecution
impl Send for AutomationExecution
impl Sync for AutomationExecution
impl Unpin for AutomationExecution
impl UnsafeUnpin for AutomationExecution
impl UnwindSafe for AutomationExecution
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more