Show / Hide Table of Contents

Class ComplianceReportTarget

Details of the target and patches.

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

Properties

ComplianceState

Declaration
[Required(ErrorMessage = "ComplianceState is required.")]
[JsonProperty(PropertyName = "complianceState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComplianceState? ComplianceState { get; set; }
Property Value
Type Description
ComplianceState?

The last known compliance state of the target.

Remarks

Required

InstalledPatches

Declaration
[JsonProperty(PropertyName = "installedPatches")]
public List<ComplianceReportPatchDetail> InstalledPatches { get; set; }
Property Value
Type Description
List<ComplianceReportPatchDetail>

Installed Patches for the Target.

RecommendedPatches

Declaration
[JsonProperty(PropertyName = "recommendedPatches")]
public List<ComplianceReportPatchDetail> RecommendedPatches { get; set; }
Property Value
Type Description
List<ComplianceReportPatchDetail>

Recommended Patches for the Target.

TargetId

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

Target Identifier.Can be the target name if a separate ID is not available.

Remarks

Required

TargetName

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

Target Name.

Remarks

Required

Version

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

Current version of the target.

In this article
Back to top