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.
Implements
Inherited Members
Namespace: Google.Apis.OSConfig.v1beta.Data
Assembly: Google.Apis.OSConfig.v1beta.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? |