@maxim_mazurok/gapi.client.dlp-v2 0.0.20230923 → 0.0.20231008
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 +14 -8
- package/package.json +1 -1
- package/tests.ts +1 -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: 20231008
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -124,7 +124,7 @@ declare namespace gapi.client {
|
|
|
124
124
|
interface GooglePrivacyDlpV2BigQueryOptions {
|
|
125
125
|
/**
|
|
126
126
|
* References to fields excluded from scanning. This allows you to skip inspection of entire columns which you know have no findings. When inspecting a table, we recommend that you
|
|
127
|
-
* inspect all columns. Otherwise, findings might be
|
|
127
|
+
* inspect all columns. Otherwise, findings might be affected because hints from excluded columns will not be used.
|
|
128
128
|
*/
|
|
129
129
|
excludedFields?:
|
|
130
130
|
GooglePrivacyDlpV2FieldId[];
|
|
@@ -135,7 +135,7 @@ declare namespace gapi.client {
|
|
|
135
135
|
identifyingFields?:
|
|
136
136
|
GooglePrivacyDlpV2FieldId[];
|
|
137
137
|
/**
|
|
138
|
-
* Limit scanning only to these fields. When inspecting a table, we recommend that you inspect all columns. Otherwise, findings might be
|
|
138
|
+
* Limit scanning only to these fields. When inspecting a table, we recommend that you inspect all columns. Otherwise, findings might be affected because hints from excluded columns
|
|
139
139
|
* will not be used.
|
|
140
140
|
*/
|
|
141
141
|
includedFields?:
|
|
@@ -1010,6 +1010,9 @@ declare namespace gapi.client {
|
|
|
1010
1010
|
/** If created by a job trigger, the resource name of the trigger that instantiated the job. */
|
|
1011
1011
|
jobTriggerName?:
|
|
1012
1012
|
string;
|
|
1013
|
+
/** Time when the job was last modified by the system. */
|
|
1014
|
+
lastModified?:
|
|
1015
|
+
string;
|
|
1013
1016
|
/** The server-assigned name. */
|
|
1014
1017
|
name?:
|
|
1015
1018
|
string;
|
|
@@ -1040,7 +1043,7 @@ declare namespace gapi.client {
|
|
|
1040
1043
|
/** Detailed error codes and messages. */
|
|
1041
1044
|
details?:
|
|
1042
1045
|
GoogleRpcStatus;
|
|
1043
|
-
/** The times the error occurred. List includes the oldest timestamp
|
|
1046
|
+
/** The times the error occurred. List includes the oldest timestamp and the last 9 timestamps. */
|
|
1044
1047
|
timestamps?:
|
|
1045
1048
|
string[];
|
|
1046
1049
|
}
|
|
@@ -1418,7 +1421,7 @@ declare namespace gapi.client {
|
|
|
1418
1421
|
*/
|
|
1419
1422
|
infoType?:
|
|
1420
1423
|
GooglePrivacyDlpV2InfoType;
|
|
1421
|
-
/** Only returns findings equal or above this threshold. This field is required or else the configuration fails. */
|
|
1424
|
+
/** Only returns findings equal to or above this threshold. This field is required or else the configuration fails. */
|
|
1422
1425
|
minLikelihood?:
|
|
1423
1426
|
string;
|
|
1424
1427
|
}
|
|
@@ -1491,12 +1494,15 @@ declare namespace gapi.client {
|
|
|
1491
1494
|
*/
|
|
1492
1495
|
limits?:
|
|
1493
1496
|
GooglePrivacyDlpV2FindingLimits;
|
|
1494
|
-
/**
|
|
1497
|
+
/**
|
|
1498
|
+
* Only returns findings equal to or above this threshold. The default is POSSIBLE. In general, the highest likelihood setting yields the fewest findings in results and the lowest
|
|
1499
|
+
* chance of a false positive. For more information, see [Match likelihood](https://cloud.google.com/dlp/docs/likelihood).
|
|
1500
|
+
*/
|
|
1495
1501
|
minLikelihood?:
|
|
1496
1502
|
string;
|
|
1497
1503
|
/**
|
|
1498
|
-
*
|
|
1499
|
-
* uses the InspectConfig min_likelihood.
|
|
1504
|
+
* Minimum likelihood per infotype. For each infotype, a user can specify a minimum likelihood. The system only returns a finding if its likelihood is above this threshold. If this
|
|
1505
|
+
* field is not set, the system uses the InspectConfig min_likelihood.
|
|
1500
1506
|
*/
|
|
1501
1507
|
minLikelihoodPerInfoType?:
|
|
1502
1508
|
GooglePrivacyDlpV2InfoTypeLikelihood[];
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20231008
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|