Class: Google::Cloud::Dlp::V2::SensitivityScore
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::SensitivityScore
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/storage.rb
Overview
Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive.
Defined Under Namespace
Modules: SensitivityScoreLevel
Instance Attribute Summary collapse
-
#score ⇒ ::Google::Cloud::Dlp::V2::SensitivityScore::SensitivityScoreLevel
The sensitivity score applied to the resource.
Instance Attribute Details
#score ⇒ ::Google::Cloud::Dlp::V2::SensitivityScore::SensitivityScoreLevel
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'proto_docs/google/privacy/dlp/v2/storage.rb', line 51 class SensitivityScore include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Various sensitivity score levels for resources. module SensitivityScoreLevel # Unused. SENSITIVITY_SCORE_UNSPECIFIED = 0 # No sensitive information detected. The resource isn't publicly # accessible. SENSITIVITY_LOW = 10 # Unable to determine sensitivity. SENSITIVITY_UNKNOWN = 12 # Medium risk. Contains personally identifiable information (PII), # potentially sensitive data, or fields with free-text data that are at a # higher risk of having intermittent sensitive data. Consider limiting # access. SENSITIVITY_MODERATE = 20 # High risk. Sensitive personally identifiable information (SPII) can be # present. Exfiltration of data can lead to user data loss. # Re-identification of users might be possible. Consider limiting usage and # or removing SPII. SENSITIVITY_HIGH = 30 end end |