InputPatchConfigurationResponse

data class InputPatchConfigurationResponse(val linuxParameters: InputLinuxParametersResponse? = null, val postTasks: List<TaskPropertiesResponse>? = null, val preTasks: List<TaskPropertiesResponse>? = null, val rebootSetting: String? = null, val windowsParameters: InputWindowsParametersResponse? = null)

Input configuration for a patch run

Constructors

Link copied to clipboard
constructor(linuxParameters: InputLinuxParametersResponse? = null, postTasks: List<TaskPropertiesResponse>? = null, preTasks: List<TaskPropertiesResponse>? = null, rebootSetting: String? = null, windowsParameters: InputWindowsParametersResponse? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard
val rebootSetting: String? = 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.