pub struct SoftwareUpdateConfigurationRunProperties {Show 13 fields
pub software_update_configuration: Option<UpdateConfigurationNavigation>,
pub status: Option<String>,
pub configured_duration: Option<String>,
pub os_type: Option<String>,
pub start_time: Option<OffsetDateTime>,
pub end_time: Option<OffsetDateTime>,
pub computer_count: Option<i64>,
pub failed_count: Option<i64>,
pub creation_time: Option<OffsetDateTime>,
pub created_by: Option<String>,
pub last_modified_time: Option<OffsetDateTime>,
pub last_modified_by: Option<String>,
pub tasks: Option<SoftwareUpdateConfigurationRunTasks>,
}Expand description
Software update configuration properties.
Fields§
§software_update_configuration: Option<UpdateConfigurationNavigation>Software update configuration Run Navigation model.
status: Option<String>Status of the software update configuration run.
configured_duration: Option<String>Configured duration for the software update configuration run.
os_type: Option<String>Operating system target of the software update configuration triggered this run
start_time: Option<OffsetDateTime>Start time of the software update configuration run.
end_time: Option<OffsetDateTime>End time of the software update configuration run.
computer_count: Option<i64>Number of computers in the software update configuration run.
failed_count: Option<i64>Number of computers with failed status.
creation_time: Option<OffsetDateTime>Creation time of the resource, which only appears in the response.
created_by: Option<String>CreatedBy property, which only appears in the response.
last_modified_time: Option<OffsetDateTime>Last time resource was modified, which only appears in the response.
last_modified_by: Option<String>LastModifiedBy property, which only appears in the response.
tasks: Option<SoftwareUpdateConfigurationRunTasks>Software update configuration run tasks model.
Implementations§
Trait Implementations§
Source§impl Clone for SoftwareUpdateConfigurationRunProperties
impl Clone for SoftwareUpdateConfigurationRunProperties
Source§fn clone(&self) -> SoftwareUpdateConfigurationRunProperties
fn clone(&self) -> SoftwareUpdateConfigurationRunProperties
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for SoftwareUpdateConfigurationRunProperties
impl Default for SoftwareUpdateConfigurationRunProperties
Source§fn default() -> SoftwareUpdateConfigurationRunProperties
fn default() -> SoftwareUpdateConfigurationRunProperties
Source§impl<'de> Deserialize<'de> for SoftwareUpdateConfigurationRunProperties
impl<'de> Deserialize<'de> for SoftwareUpdateConfigurationRunProperties
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for SoftwareUpdateConfigurationRunProperties
impl PartialEq for SoftwareUpdateConfigurationRunProperties
Source§fn eq(&self, other: &SoftwareUpdateConfigurationRunProperties) -> bool
fn eq(&self, other: &SoftwareUpdateConfigurationRunProperties) -> bool
self and other values to be equal, and is used by ==.