UpgradeNoteArgs

data class UpgradeNoteArgs(val distributions: Output<List<UpgradeDistributionArgs>>? = null, val package: Output<String>? = null, val version: Output<VersionArgs>? = null, val windowsUpdate: Output<WindowsUpdateArgs>? = null) : ConvertibleToJava<UpgradeNoteArgs>

An Upgrade Note represents a potential upgrade of a package to a given version. For each package version combination (i.e. bash 4.0, bash 4.1, bash 4.1.2), there will be an Upgrade Note. For Windows, windows_update field represents the information related to the update.

Constructors

Link copied to clipboard
fun UpgradeNoteArgs(distributions: Output<List<UpgradeDistributionArgs>>? = null, package: Output<String>? = null, version: Output<VersionArgs>? = null, windowsUpdate: Output<WindowsUpdateArgs>? = null)

Functions

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

Properties

Link copied to clipboard

Metadata about the upgrade for each specific operating system.

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

Required for non-Windows OS. The package this Upgrade is for.

Link copied to clipboard
val version: Output<VersionArgs>? = null

Required for non-Windows OS. The version of the package in machine + human readable form.

Link copied to clipboard
val windowsUpdate: Output<WindowsUpdateArgs>? = null

Required for Windows OS. Represents the metadata about the Windows update.