Finding¶
-
class
oci.data_safe.models.
Finding
(**kwargs)¶ Bases:
object
The particular finding reported by the security assessment.
Attributes
SEVERITY_ADVISORY
A constant which can be used with the severity property of a Finding. SEVERITY_EVALUATE
A constant which can be used with the severity property of a Finding. SEVERITY_HIGH
A constant which can be used with the severity property of a Finding. SEVERITY_LOW
A constant which can be used with the severity property of a Finding. SEVERITY_MEDIUM
A constant which can be used with the severity property of a Finding. SEVERITY_PASS
A constant which can be used with the severity property of a Finding. details
Gets the details of this Finding. key
Gets the key of this Finding. references
Gets the references of this Finding. remarks
Gets the remarks of this Finding. severity
Gets the severity of this Finding. summary
Gets the summary of this Finding. title
Gets the title of this Finding. Methods
__init__
(**kwargs)Initializes a new Finding object with values from keyword arguments. -
SEVERITY_ADVISORY
= 'ADVISORY'¶ A constant which can be used with the severity property of a Finding. This constant has a value of “ADVISORY”
-
SEVERITY_EVALUATE
= 'EVALUATE'¶ A constant which can be used with the severity property of a Finding. This constant has a value of “EVALUATE”
-
SEVERITY_HIGH
= 'HIGH'¶ A constant which can be used with the severity property of a Finding. This constant has a value of “HIGH”
-
SEVERITY_LOW
= 'LOW'¶ A constant which can be used with the severity property of a Finding. This constant has a value of “LOW”
-
SEVERITY_MEDIUM
= 'MEDIUM'¶ A constant which can be used with the severity property of a Finding. This constant has a value of “MEDIUM”
-
SEVERITY_PASS
= 'PASS'¶ A constant which can be used with the severity property of a Finding. This constant has a value of “PASS”
-
__init__
(**kwargs)¶ Initializes a new Finding object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - key (str) – The value to assign to the key property of this Finding.
- severity (str) – The value to assign to the severity property of this Finding. Allowed values for this property are: “HIGH”, “MEDIUM”, “LOW”, “EVALUATE”, “ADVISORY”, “PASS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- title (str) – The value to assign to the title property of this Finding.
- remarks (str) – The value to assign to the remarks property of this Finding.
- details (object) – The value to assign to the details property of this Finding.
- summary (str) – The value to assign to the summary property of this Finding.
- references (oci.data_safe.models.References) – The value to assign to the references property of this Finding.
-
details
¶ Gets the details of this Finding. The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
Returns: The details of this Finding. Return type: object
-
key
¶ Gets the key of this Finding. A unique identifier for the finding. This is common for the finding across targets.
Returns: The key of this Finding. Return type: str
-
references
¶ Gets the references of this Finding. Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
Returns: The references of this Finding. Return type: oci.data_safe.models.References
-
remarks
¶ Gets the remarks of this Finding. The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
Returns: The remarks of this Finding. Return type: str
-
severity
¶ Gets the severity of this Finding. The severity of the finding.
Allowed values for this property are: “HIGH”, “MEDIUM”, “LOW”, “EVALUATE”, “ADVISORY”, “PASS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The severity of this Finding. Return type: str
-
summary
¶ Gets the summary of this Finding. The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
Returns: The summary of this Finding. Return type: str
-
title
¶ Gets the title of this Finding. The short title for the finding.
Returns: The title of this Finding. Return type: str
-