InputPatchConfigurationArgs

data class InputPatchConfigurationArgs(val linuxParameters: Output<InputLinuxParametersArgs>? = null, val postTasks: Output<List<TaskPropertiesArgs>>? = null, val preTasks: Output<List<TaskPropertiesArgs>>? = null, val rebootSetting: Output<Either<String, RebootOptions>>? = null, val windowsParameters: Output<InputWindowsParametersArgs>? = null) : ConvertibleToJava<InputPatchConfigurationArgs>

Input configuration for a patch run

Constructors

Link copied to clipboard
constructor(linuxParameters: Output<InputLinuxParametersArgs>? = null, postTasks: Output<List<TaskPropertiesArgs>>? = null, preTasks: Output<List<TaskPropertiesArgs>>? = null, rebootSetting: Output<Either<String, RebootOptions>>? = null, windowsParameters: Output<InputWindowsParametersArgs>? = null)

Properties

Link copied to clipboard

Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.

Link copied to clipboard
val postTasks: Output<List<TaskPropertiesArgs>>? = null

List of post tasks. e.g. {'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}

Link copied to clipboard
val preTasks: Output<List<TaskPropertiesArgs>>? = null

List of pre tasks. e.g. {'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}

Link copied to clipboard
val rebootSetting: Output<Either<String, RebootOptions>>? = null

Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.

Link copied to clipboard

Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.

Functions

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