Show / Hide Table of Contents

Class InstalledPatchSummary

Summary information about an installed patches.

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

Properties

PatchDescription

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

Description of the patch

Remarks

Required

PatchId

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

The OCID of the patch.

Remarks

Required

PatchLevel

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

Patch Name.

PatchName

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

Name of the patch

Remarks

Required

PatchType

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

Description of the patch

Severity

Declaration
[JsonProperty(PropertyName = "severity")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchSeverity? Severity { get; set; }
Property Value
Type Description
PatchSeverity?

Patch Severity.

TimeApplied

Declaration
[JsonProperty(PropertyName = "timeApplied")]
public DateTime? TimeApplied { get; set; }
Property Value
Type Description
DateTime?

Date on which the patch was applied to the target

TimeReleased

Declaration
[JsonProperty(PropertyName = "timeReleased")]
public DateTime? TimeReleased { get; set; }
Property Value
Type Description
DateTime?

Date on which the patch was released

In this article
Back to top