pub struct SoftwareUpdateConfigurationCollectionItemProperties {
pub update_configuration: Option<UpdateConfiguration>,
pub tasks: Option<SoftwareUpdateConfigurationTasks>,
pub frequency: Option<ScheduleFrequency>,
pub start_time: Option<OffsetDateTime>,
pub creation_time: Option<OffsetDateTime>,
pub last_modified_time: Option<OffsetDateTime>,
pub provisioning_state: Option<String>,
pub next_run: Option<OffsetDateTime>,
}Expand description
Software update configuration collection item properties.
Fields§
§update_configuration: Option<UpdateConfiguration>Update specific properties of the software update configuration.
tasks: Option<SoftwareUpdateConfigurationTasks>Task properties of the software update configuration.
frequency: Option<ScheduleFrequency>Gets or sets the frequency of the schedule.
start_time: Option<OffsetDateTime>the start time of the update.
creation_time: Option<OffsetDateTime>Creation time of the software update configuration, which only appears in the response.
last_modified_time: Option<OffsetDateTime>Last time software update configuration was modified, which only appears in the response.
provisioning_state: Option<String>Provisioning state for the software update configuration, which only appears in the response.
next_run: Option<OffsetDateTime>ext run time of the update.
Implementations§
Trait Implementations§
Source§impl Clone for SoftwareUpdateConfigurationCollectionItemProperties
impl Clone for SoftwareUpdateConfigurationCollectionItemProperties
Source§fn clone(&self) -> SoftwareUpdateConfigurationCollectionItemProperties
fn clone(&self) -> SoftwareUpdateConfigurationCollectionItemProperties
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 moreSource§impl Default for SoftwareUpdateConfigurationCollectionItemProperties
impl Default for SoftwareUpdateConfigurationCollectionItemProperties
Source§fn default() -> SoftwareUpdateConfigurationCollectionItemProperties
fn default() -> SoftwareUpdateConfigurationCollectionItemProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SoftwareUpdateConfigurationCollectionItemProperties
impl<'de> Deserialize<'de> for SoftwareUpdateConfigurationCollectionItemProperties
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SoftwareUpdateConfigurationCollectionItemProperties
impl PartialEq for SoftwareUpdateConfigurationCollectionItemProperties
Source§fn eq(
&self,
other: &SoftwareUpdateConfigurationCollectionItemProperties,
) -> bool
fn eq( &self, other: &SoftwareUpdateConfigurationCollectionItemProperties, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SoftwareUpdateConfigurationCollectionItemProperties
Auto Trait Implementations§
impl Freeze for SoftwareUpdateConfigurationCollectionItemProperties
impl RefUnwindSafe for SoftwareUpdateConfigurationCollectionItemProperties
impl Send for SoftwareUpdateConfigurationCollectionItemProperties
impl Sync for SoftwareUpdateConfigurationCollectionItemProperties
impl Unpin for SoftwareUpdateConfigurationCollectionItemProperties
impl UnwindSafe for SoftwareUpdateConfigurationCollectionItemProperties
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