Show / Hide Table of Contents

Class CompliancePatchDetail

Details of the Patch.

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

Properties

PatchDescription

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

Patch Description.

PatchId

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

patch OCID.

PatchName

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

patch Name.

Remarks

Required

PatchType

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

Type of patch.

Remarks

Required

Product

Declaration
[JsonProperty(PropertyName = "product")]
public ComplianceDetailProduct Product { get; set; }
Property Value
Type Description
ComplianceDetailProduct

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 patch was released

In this article
Back to top