Show / Hide Table of Contents

Class InventoryRecordPatchDetails

Details about an installed patch on the target

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

Properties

PatchDescription

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

Description for the installed patch

Remarks

Required

PatchId

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

OCID of the installed patch

PatchName

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

Name of the installed patch

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 applied

Remarks

Required

TimeApplied

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

Date on which the patch was applied to the target

Remarks

Required

In this article
Back to top