Show / Hide Table of Contents

Class WindowsUpdate

An object that provides information about an update for a Windows instance.

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

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Description of the update.

Installable

Declaration
[JsonProperty(PropertyName = "installable")]
[JsonConverter(typeof(ResponseEnumConverter))]
public WindowsUpdate.InstallableEnum? Installable { get; set; }
Property Value
Type Description
WindowsUpdate.InstallableEnum?

Indicates whether the update can be installed using the service.

InstallationRequirements

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

List of requirements for installing the update on the managed instance.

IsRebootRequiredForInstallation

Declaration
[JsonProperty(PropertyName = "isRebootRequiredForInstallation")]
public bool? IsRebootRequiredForInstallation { get; set; }
Property Value
Type Description
bool?

Indicates whether a reboot is required to complete the installation of this update.

KbArticleIds

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

List of the Microsoft Knowledge Base Article Ids related to this Windows Update.

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

SizeInBytes

Declaration
[JsonProperty(PropertyName = "sizeInBytes")]
public long? SizeInBytes { get; set; }
Property Value
Type Description
long?

size of the package in bytes

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