Show / Hide Table of Contents

Class InstalledWindowsUpdateSummary

An object that defines an installed update for a Windows instance.

Inheritance
object
InstalledWindowsUpdateSummary
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 InstalledWindowsUpdateSummary

Properties

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Name of the Windows update.

Remarks

Required

UpdateId

Declaration
[Required(ErrorMessage = "UpdateId is required.")]
[JsonProperty(PropertyName = "updateId")]
public string UpdateId { get; set; }
Property Value
Type Description
string

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

Remarks

Required

UpdateType

Declaration
[Required(ErrorMessage = "UpdateType is required.")]
[JsonProperty(PropertyName = "updateType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ClassificationTypes? UpdateType { get; set; }
Property Value
Type Description
ClassificationTypes?

The type of Windows update.

Remarks

Required

In this article
Back to top