Struct gapi_grpc::google::cloud::osconfig::v1alpha::inventory::WindowsUpdatePackage[][src]

pub struct WindowsUpdatePackage {
    pub title: String,
    pub description: String,
    pub categories: Vec<WindowsUpdateCategory>,
    pub kb_article_ids: Vec<String>,
    pub support_url: String,
    pub more_info_urls: Vec<String>,
    pub update_id: String,
    pub revision_number: i32,
    pub last_deployment_change_time: Option<Timestamp>,
}

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.

Fields

title: String

The localized title of the update package.

description: String

The localized description of the update package.

categories: Vec<WindowsUpdateCategory>

The categories that are associated with this update package.

kb_article_ids: Vec<String>

A collection of Microsoft Knowledge Base article IDs that are associated with the update package.

support_url: String

A hyperlink to the language-specific support information for the update.

more_info_urls: Vec<String>

A collection of URLs that provide more information about the update package.

update_id: String

Gets the identifier of an update package. Stays the same across revisions.

revision_number: i32

The revision number of this update package.

last_deployment_change_time: Option<Timestamp>

The last published date of the update, in (UTC) date and time.

Trait Implementations

impl Clone for WindowsUpdatePackage[src]

impl Debug for WindowsUpdatePackage[src]

impl Default for WindowsUpdatePackage[src]

impl Message for WindowsUpdatePackage[src]

impl PartialEq<WindowsUpdatePackage> for WindowsUpdatePackage[src]

impl StructuralPartialEq for WindowsUpdatePackage[src]

Auto Trait Implementations

impl RefUnwindSafe for WindowsUpdatePackage

impl Send for WindowsUpdatePackage

impl Sync for WindowsUpdatePackage

impl Unpin for WindowsUpdatePackage

impl UnwindSafe for WindowsUpdatePackage

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]