Class: Google::Cloud::Dlp::V2::DataRiskLevel
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::DataRiskLevel
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
Score is a summary of all elements in the data profile. A higher number means more risk.
Defined Under Namespace
Modules: DataRiskLevelScore
Instance Attribute Summary collapse
-
#score ⇒ ::Google::Cloud::Dlp::V2::DataRiskLevel::DataRiskLevelScore
The score applied to the resource.
Instance Attribute Details
#score ⇒ ::Google::Cloud::Dlp::V2::DataRiskLevel::DataRiskLevelScore
Returns The score applied to the resource.
6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 6875 class DataRiskLevel include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Various score levels for resources. module DataRiskLevelScore # Unused. RISK_SCORE_UNSPECIFIED = 0 # Low risk - Lower indication of sensitive data that appears to have # additional access restrictions in place or no indication of sensitive # data found. RISK_LOW = 10 # Unable to determine risk. RISK_UNKNOWN = 12 # Medium risk - Sensitive data may be present but additional access or fine # grain access restrictions appear to be present. Consider limiting # access even further or transform data to mask. RISK_MODERATE = 20 # High risk – SPII may be present. Access controls may include public # ACLs. Exfiltration of data may lead to user data loss. Re-identification # of users may be possible. Consider limiting usage and or removing SPII. RISK_HIGH = 30 end end |