WindowsParameters Class
Input for InstallPatches on a Windows VM, as directly received by the API.
Constructor
WindowsParameters()
Variables
| Name | Description |
|---|---|
|
classificationsToInclude
|
The update classifications to select when installing patches for Windows. |
|
kbNumbersToInclude
|
Kbs to include in the patch operation. |
|
kbNumbersToExclude
|
Kbs to exclude in the patch operation. |
|
excludeKbsRequiringReboot
|
Filters out Kbs that don't have an InstallationRebootBehavior of 'NeverReboots' when this is set to true. |
|
maxPatchPublishDate
|
This is used to install patches that were published on or before this given max published date. |
|
patchNameMasksToInclude
|
This is used to include patches that match the given patch name masks. Alphanumeric strings and wildcard expressions consisting of * and ? are only supported as input values in the list. Null, empty and only whitespaces strings as inputs values are not supported. |
|
patchNameMasksToExclude
|
This is used to exclude patches that match the given patch name masks. Alphanumeric strings and wildcard expressions consisting of * and ? are only supported as input values in the list. Null, empty and only whitespaces strings as inputs values are not supported. |
Attributes
classificationsToInclude
The update classifications to select when installing patches for Windows.
classificationsToInclude: list[typing.Union[str, ForwardRef('VMGuestPatchClassificationWindows')]]
excludeKbsRequiringReboot
Filters out Kbs that don't have an InstallationRebootBehavior of 'NeverReboots' when this is set to true.
excludeKbsRequiringReboot: bool
kbNumbersToExclude
Kbs to exclude in the patch operation.
kbNumbersToExclude: list[str]
kbNumbersToInclude
Kbs to include in the patch operation.
kbNumbersToInclude: list[str]
maxPatchPublishDate
This is used to install patches that were published on or before this given max published date.
maxPatchPublishDate: str
patchNameMasksToExclude
This is used to exclude patches that match the given patch name masks. Alphanumeric strings and wildcard expressions consisting of * and ? are only supported as input values in the list. Null, empty and only whitespaces strings as inputs values are not supported.
patchNameMasksToExclude: list[str]
patchNameMasksToInclude
This is used to include patches that match the given patch name masks. Alphanumeric strings and wildcard expressions consisting of * and ? are only supported as input values in the list. Null, empty and only whitespaces strings as inputs values are not supported.
patchNameMasksToInclude: list[str]