AptSettingsArgs

data class AptSettingsArgs(val excludes: Output<List<String>>? = null, val exclusivePackages: Output<List<String>>? = null, val type: Output<AptSettingsType>? = null) : ConvertibleToJava<AptSettingsArgs>

Apt patching is completed by executing apt-get update && apt-get upgrade. Additional options can be set to control how this is executed.

Constructors

Link copied to clipboard
fun AptSettingsArgs(excludes: Output<List<String>>? = null, exclusivePackages: Output<List<String>>? = null, type: Output<AptSettingsType>? = null)

Functions

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

Properties

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

List of packages to exclude from update. These packages will be excluded

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 cannot be specified with any other patch configuration fields.

Link copied to clipboard
val type: Output<AptSettingsType>? = null

By changing the type to DIST, the patching is performed using apt-get dist-upgrade instead.