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
fun AptSettingsArgs(excludes: Output<List<String>>? = null, exclusivePackages: Output<List<String>>? = null, type: Output<AptSettingsType>? = null)