@maxim_mazurok/gapi.client.dlp-v2 0.0.20230423 → 0.0.20230428
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/index.d.ts +10 -1
- package/package.json +1 -1
- package/tests.ts +775 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://dlp.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230428
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -611,6 +611,12 @@ declare namespace gapi.client {
|
|
|
611
611
|
/** Regular expression based CustomInfoType. */
|
|
612
612
|
regex?:
|
|
613
613
|
GooglePrivacyDlpV2Regex;
|
|
614
|
+
/**
|
|
615
|
+
* Sensitivity for this CustomInfoType. If this CustomInfoType extends an existing InfoType, the sensitivity here will take precedent over that of the original InfoType. If unset for a
|
|
616
|
+
* CustomInfoType, it will default to HIGH. This only applies to data profiling.
|
|
617
|
+
*/
|
|
618
|
+
sensitivityScore?:
|
|
619
|
+
GooglePrivacyDlpV2SensitivityScore;
|
|
614
620
|
/** Load an existing `StoredInfoType` resource for use in `InspectDataSource`. Not currently supported in `InspectContent`. */
|
|
615
621
|
storedType?:
|
|
616
622
|
GooglePrivacyDlpV2StoredType;
|
|
@@ -1286,6 +1292,9 @@ declare namespace gapi.client {
|
|
|
1286
1292
|
*/
|
|
1287
1293
|
name?:
|
|
1288
1294
|
string;
|
|
1295
|
+
/** Optional custom sensitivity for this InfoType. This only applies to data profiling. */
|
|
1296
|
+
sensitivityScore?:
|
|
1297
|
+
GooglePrivacyDlpV2SensitivityScore;
|
|
1289
1298
|
/** Optional version name for this InfoType. */
|
|
1290
1299
|
version?:
|
|
1291
1300
|
string;
|