YumSettingsArgs

data class YumSettingsArgs(val excludes: Output<List<String>>? = null, val exclusivePackages: Output<List<String>>? = null, val minimal: Output<Boolean>? = null, val security: Output<Boolean>? = null) : ConvertibleToJava<YumSettingsArgs>

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.

Constructors

Link copied to clipboard
constructor(excludes: Output<List<String>>? = null, exclusivePackages: Output<List<String>>? = null, minimal: Output<Boolean>? = null, security: Output<Boolean>? = null)

Properties

Link copied to clipboard
val excludes: Output<List<String>>? = null

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

Link copied to clipboard
val exclusivePackages: Output<List<String>>? = null

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.

Link copied to clipboard
val minimal: Output<Boolean>? = null

Will cause patch to run yum update-minimal instead.

Link copied to clipboard
val security: Output<Boolean>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): YumSettingsArgs