pub struct WindowsUpdatePackage {
pub categories: Option<Vec<WindowsUpdateCategory>>,
pub description: Option<String>,
pub kb_article_ids: Option<Vec<String>>,
pub last_deployment_change_time: Option<DateTime<Utc>>,
pub more_info_urls: Option<Vec<String>>,
pub revision_number: Option<i32>,
pub support_url: Option<String>,
pub title: Option<String>,
pub update_id: Option<String>,
}Expand description
Details related to a Windows Update package. Field data and names are taken from Windows Update API IUpdate Interface: https://docs.microsoft.com/en-us/windows/win32/api/_wua/ Descriptive fields like title, and description are localized based on the locale of the VM being updated.
This type is not used in any activity, and only used as part of another schema.
Fields§
§categories: Option<Vec<WindowsUpdateCategory>>The categories that are associated with this update package.
description: Option<String>The localized description of the update package.
kb_article_ids: Option<Vec<String>>A collection of Microsoft Knowledge Base article IDs that are associated with the update package.
last_deployment_change_time: Option<DateTime<Utc>>The last published date of the update, in (UTC) date and time.
more_info_urls: Option<Vec<String>>A collection of URLs that provide more information about the update package.
revision_number: Option<i32>The revision number of this update package.
support_url: Option<String>A hyperlink to the language-specific support information for the update.
title: Option<String>The localized title of the update package.
update_id: Option<String>Gets the identifier of an update package. Stays the same across revisions.
Trait Implementations§
Source§impl Clone for WindowsUpdatePackage
impl Clone for WindowsUpdatePackage
Source§fn clone(&self) -> WindowsUpdatePackage
fn clone(&self) -> WindowsUpdatePackage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more