Show / Hide Table of Contents

Class InstallWindowsUpdatesOnManagedInstanceDetails

Provides the information used to install Windows updates on a managed instance.

Inheritance
object
InstallWindowsUpdatesOnManagedInstanceDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OsmanagementhubService.Models
Assembly: OCI.DotNetSDK.Osmanagementhub.dll
Syntax
public class InstallWindowsUpdatesOnManagedInstanceDetails

Properties

WindowsUpdateName

Declaration
[JsonProperty(PropertyName = "windowsUpdateName")]
public List<string> WindowsUpdateName { get; set; }
Property Value
Type Description
List<string>

The list of Windows update unique identifiers. Note that this is not an OCID, but is a unique identifier assigned by Microsoft. Example: '6981d463-cd91-4a26-b7c4-ea4ded9183ed'

WindowsUpdateTypes

Declaration
[JsonProperty(PropertyName = "windowsUpdateTypes", ItemConverterType = typeof(StringEnumConverter))]
public List<WindowsUpdateTypes> WindowsUpdateTypes { get; set; }
Property Value
Type Description
List<WindowsUpdateTypes>

The types of Windows updates to be installed.

WorkRequestDetails

Declaration
[JsonProperty(PropertyName = "workRequestDetails")]
public WorkRequestDetails WorkRequestDetails { get; set; }
Property Value
Type Description
WorkRequestDetails
In this article
Back to top