[][src]Struct gcp_client::google::cloud::osconfig::v1::YumSettings

pub struct YumSettings {
    pub security: bool,
    pub minimal: bool,
    pub excludes: Vec<String>,
    pub exclusive_packages: Vec<String>,
}

Yum patching is performed by executing yum update. Additional options can be set to control how this is executed.

Note that not all settings are supported on all platforms.

Fields

security: bool

Adds the --security flag to yum update. Not supported on all platforms.

minimal: bool

Will cause patch to run yum update-minimal instead.

excludes: Vec<String>

List of packages to exclude from update. These packages are excluded by using the yum --exclude flag.

exclusive_packages: Vec<String>

An exclusive list of packages to be updated. These are the only packages that will be updated. If these packages are not installed, they will be ignored. This field must not be specified with any other patch configuration fields.

Trait Implementations

impl Clone for YumSettings[src]

impl Debug for YumSettings[src]

impl Default for YumSettings[src]

impl Message for YumSettings[src]

impl PartialEq<YumSettings> for YumSettings[src]

impl StructuralPartialEq for YumSettings[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]