Apt Settings Args
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
constructor(excludes: Output<List<String>>? = null, exclusivePackages: Output<List<String>>? = null, type: Output<AptSettingsType>? = null)
Properties
Link copied to clipboard
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
By changing the type to DIST, the patching is performed using apt-get dist-upgrade
instead.