[][src]Struct gcp_client::google::cloud::osconfig::v1beta::ZypperSettings

pub struct ZypperSettings {
    pub with_optional: bool,
    pub with_update: bool,
    pub categories: Vec<String>,
    pub severities: Vec<String>,
    pub excludes: Vec<String>,
    pub exclusive_patches: Vec<String>,
}

Zypper patching is performed by running zypper patch. See also https://en.opensuse.org/SDB:Zypper_manual.

Fields

with_optional: bool

Adds the --with-optional flag to zypper patch.

with_update: bool

Adds the --with-update flag, to zypper patch.

categories: Vec<String>

Install only patches with these categories. Common categories include security, recommended, and feature.

severities: Vec<String>

Install only patches with these severities. Common severities include critical, important, moderate, and low.

excludes: Vec<String>

List of patches to exclude from update.

exclusive_patches: Vec<String>

An exclusive list of patches to be updated. These are the only patches that will be installed using 'zypper patch patch:<patch_name>' command. This field must not be used with any other patch configuration fields.

Trait Implementations

impl Clone for ZypperSettings[src]

impl Debug for ZypperSettings[src]

impl Default for ZypperSettings[src]

impl Message for ZypperSettings[src]

impl PartialEq<ZypperSettings> for ZypperSettings[src]

impl StructuralPartialEq for ZypperSettings[src]

Auto Trait Implementations

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, 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>, 

impl<T> WithSubscriber for T[src]