@google-cloud/dlp 5.6.0 → 5.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +3 -0
- package/build/protos/google/privacy/dlp/v2/dlp.proto +760 -90
- package/build/protos/google/privacy/dlp/v2/storage.proto +14 -0
- package/build/protos/protos.d.ts +2717 -5
- package/build/protos/protos.js +14026 -6882
- package/build/protos/protos.json +782 -89
- package/build/src/v2/dlp_service_client.d.ts +459 -108
- package/build/src/v2/dlp_service_client.js +392 -54
- package/build/src/v2/dlp_service_client_config.json +12 -0
- package/package.json +2 -2
|
@@ -58,6 +58,9 @@ message SensitivityScore {
|
|
|
58
58
|
// accessible.
|
|
59
59
|
SENSITIVITY_LOW = 10;
|
|
60
60
|
|
|
61
|
+
// Unable to determine sensitivity.
|
|
62
|
+
SENSITIVITY_UNKNOWN = 12;
|
|
63
|
+
|
|
61
64
|
// Medium risk. Contains personally identifiable information (PII),
|
|
62
65
|
// potentially sensitive data, or fields with free-text data that are at a
|
|
63
66
|
// higher risk of having intermittent sensitive data. Consider limiting
|
|
@@ -750,6 +753,7 @@ message HybridOptions {
|
|
|
750
753
|
// No more than 10 labels can be associated with a given finding.
|
|
751
754
|
//
|
|
752
755
|
// Examples:
|
|
756
|
+
//
|
|
753
757
|
// * `"environment" : "production"`
|
|
754
758
|
// * `"pipeline" : "etl"`
|
|
755
759
|
map<string, string> labels = 3;
|
|
@@ -859,6 +863,16 @@ message BigQueryTable {
|
|
|
859
863
|
string table_id = 3;
|
|
860
864
|
}
|
|
861
865
|
|
|
866
|
+
// Message defining the location of a BigQuery table with the projectId inferred
|
|
867
|
+
// from the parent project.
|
|
868
|
+
message TableReference {
|
|
869
|
+
// Dataset ID of the table.
|
|
870
|
+
string dataset_id = 1;
|
|
871
|
+
|
|
872
|
+
// Name of the table.
|
|
873
|
+
string table_id = 2;
|
|
874
|
+
}
|
|
875
|
+
|
|
862
876
|
// Message defining a field of a BigQuery table.
|
|
863
877
|
message BigQueryField {
|
|
864
878
|
// Source table of the field.
|