Show / Hide Table of Contents

Class CryptoAssessmentFindingCollection

List of crypto deviation findings for the specified crypto assessment.

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

Properties

AssessmentType

Declaration
[JsonProperty(PropertyName = "assessmentType")]
[JsonConverter(typeof(StringEnumConverter))]
public CryptoAssessment.TypeEnum? AssessmentType { get; set; }
Property Value
Type Description
CryptoAssessment.TypeEnum?

Assessment type recorded in the findings table.

DatabaseVersion

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

Database version for the target database associated with the specified crypto assessment.

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<CryptoAssessmentFindingSummary> Items { get; set; }
Property Value
Type Description
List<CryptoAssessmentFindingSummary>

Array of crypto deviation findings.

Remarks

Required

Summary

Declaration
[Required(ErrorMessage = "Summary is required.")]
[JsonProperty(PropertyName = "summary")]
public CryptoAssessmentFindingSummaryMetrics Summary { get; set; }
Property Value
Type Description
CryptoAssessmentFindingSummaryMetrics
Remarks

Required

TargetId

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

The OCID of the target database for the specified crypto assessment.

In this article
Back to top