Class CheckSummary
The summary of the security rule to be evaluated by security assessment to create finding.
Inherited Members
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class CheckSummary
Properties
Category
Declaration
[JsonProperty(PropertyName = "category")]
public string Category { get; set; }
Property Value
Type | Description |
---|---|
string | The category to which the check belongs to. |
Key
Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type | Description |
---|---|
string | A unique identifier for the check. |
Remarks
Required
Oneline
Declaration
[JsonProperty(PropertyName = "oneline")]
public string Oneline { get; set; }
Property Value
Type | Description |
---|---|
string | Provides a recommended approach to take to remediate the check reported. |
References
Declaration
[JsonProperty(PropertyName = "references")]
public References References { get; set; }
Property Value
Type | Description |
---|---|
References | Provides information on whether the check is related to a CIS Oracle Database Benchmark recommendation, STIG rule, GDPR Article/Recital or related to the Oracle Recommended Practice. |
Remarks
Declaration
[JsonProperty(PropertyName = "remarks")]
public string Remarks { get; set; }
Property Value
Type | Description |
---|---|
string | The explanation of the issue in this check. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation. |
SuggestedSeverity
Declaration
[JsonProperty(PropertyName = "suggestedSeverity")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CheckSummary.SuggestedSeverityEnum? SuggestedSeverity { get; set; }
Property Value
Type | Description |
---|---|
CheckSummary.SuggestedSeverityEnum? | The severity of the check as suggested by Data Safe security assessment. This will be the default severity in the template baseline security assessment. |
Title
Declaration
[Required(ErrorMessage = "Title is required.")]
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string | The short title for the check. |
Remarks
Required