Show / Hide Table of Contents

Class ComplianceReportPatchDetail

Details of the Patch.

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

Properties

PatchDescription

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

Patch description.

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

TimeApplied

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

Time the patch was applied.

TimeReleased

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

The date on which patch was released.

In this article
Back to top