Show / Hide Table of Contents

Class RecommendedPatchSummary

Summary information about an recommended patches.

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

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")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RecommendedPatchSummary.PatchLevelEnum? PatchLevel { get; set; }
Property Value
Type Description
RecommendedPatchSummary.PatchLevelEnum?

Patch Level.

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.

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