UpgradeOccurrenceArgs

data class UpgradeOccurrenceArgs(val distribution: Output<UpgradeDistributionArgs>? = null, val package: Output<String>? = null, val parsedVersion: Output<VersionArgs>? = null, val windowsUpdate: Output<WindowsUpdateArgs>? = null) : ConvertibleToJava<UpgradeOccurrenceArgs>

An Upgrade Occurrence represents that a specific resource_url could install a specific upgrade. This presence is supplied via local sources (i.e. it is present in the mirror and the running system has noticed its availability). For Windows, both distribution and windows_update contain information for the Windows update.

Constructors

Link copied to clipboard
fun UpgradeOccurrenceArgs(distribution: Output<UpgradeDistributionArgs>? = null, package: Output<String>? = null, parsedVersion: Output<VersionArgs>? = null, windowsUpdate: Output<WindowsUpdateArgs>? = null)

Functions

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

Properties

Link copied to clipboard

Metadata about the upgrade for available for the specific operating system for the resource_url. This allows efficient filtering, as well as making it easier to use the occurrence.

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 parsedVersion: Output<VersionArgs>? = null

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

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

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