Show / Hide Table of Contents

Class Diffs

Results of the comparison of an item between two security assessments.

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

Properties

AddedItems

Declaration
[JsonProperty(PropertyName = "addedItems")]
public List<string> AddedItems { get; set; }
Property Value
Type Description
List<string>

This array identifies the items that are present in the current assessment, but are missing from the baseline.

Baseline

Declaration
[JsonProperty(PropertyName = "baseline")]
public Finding Baseline { get; set; }
Property Value
Type Description
Finding

Current

Declaration
[JsonProperty(PropertyName = "current")]
public Finding Current { get; set; }
Property Value
Type Description
Finding

ModifiedItems

Declaration
[JsonProperty(PropertyName = "modifiedItems")]
public List<string> ModifiedItems { get; set; }
Property Value
Type Description
List<string>

This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.

RemovedItems

Declaration
[JsonProperty(PropertyName = "removedItems")]
public List<string> RemovedItems { get; set; }
Property Value
Type Description
List<string>

This array identifies the items that are present in the baseline, but are missing from the current assessment.

Severity

Declaration
[JsonProperty(PropertyName = "severity")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Diffs.SeverityEnum? Severity { get; set; }
Property Value
Type Description
Diffs.SeverityEnum?

The severity of this diff.

In this article
Back to top