Show / Hide Table of Contents

Class SecurityAssessmentComparison

Provides a list of the differences in a comparison of the security assessment with the baseline value.

Inheritance
object
SecurityAssessmentComparison
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class SecurityAssessmentComparison

Properties

BaselineId

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

The OCID of the security assessment that is set as a baseline.

Id

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

The OCID of the security assessment that is being compared with a baseline security assessment.

LifecycleState

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

The current state of the security assessment comparison.

Remarks

Required

Targets

Declaration
[JsonProperty(PropertyName = "targets")]
public List<SecurityAssessmentComparisonPerTarget> Targets { get; set; }
Property Value
Type Description
List<SecurityAssessmentComparisonPerTarget>

A target-based comparison between two security assessments.

TimeCreated

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

The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.

Remarks

Required

In this article
Back to top