Show / Hide Table of Contents

Class YumSettings

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.

Inheritance
object
YumSettings
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.OSConfig.v1.Data
Assembly: Google.Apis.OSConfig.v1.dll
Syntax
public class YumSettings : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Excludes

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

Declaration
[JsonProperty("excludes")]
public virtual IList<string> Excludes { get; set; }
Property Value
Type Description
IList<string>

ExclusivePackages

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.

Declaration
[JsonProperty("exclusivePackages")]
public virtual IList<string> ExclusivePackages { get; set; }
Property Value
Type Description
IList<string>

Minimal

Will cause patch to run yum update-minimal instead.

Declaration
[JsonProperty("minimal")]
public virtual bool? Minimal { get; set; }
Property Value
Type Description
bool?

Security

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

Declaration
[JsonProperty("security")]
public virtual bool? Security { get; set; }
Property Value
Type Description
bool?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX