@maxim_mazurok/gapi.client.dlp-v2 0.0.20231022 → 0.0.20231029
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 -10
- 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: 20231029
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -426,7 +426,7 @@ declare namespace gapi.client {
|
|
|
426
426
|
/** The name of the profile. */
|
|
427
427
|
name?:
|
|
428
428
|
string;
|
|
429
|
-
/** Other types found within this column. List will be
|
|
429
|
+
/** Other types found within this column. List will be unordered. */
|
|
430
430
|
otherMatches?:
|
|
431
431
|
GooglePrivacyDlpV2OtherInfoTypeSummary[];
|
|
432
432
|
/** Indicates if a policy tag has been applied to the column. */
|
|
@@ -444,7 +444,7 @@ declare namespace gapi.client {
|
|
|
444
444
|
/** State of a profile. */
|
|
445
445
|
state?:
|
|
446
446
|
string;
|
|
447
|
-
/** The resource name
|
|
447
|
+
/** The resource name of the table data profile. */
|
|
448
448
|
tableDataProfile?:
|
|
449
449
|
string;
|
|
450
450
|
/** The resource name of the table this column is within. */
|
|
@@ -736,8 +736,8 @@ declare namespace gapi.client {
|
|
|
736
736
|
regex?:
|
|
737
737
|
GooglePrivacyDlpV2Regex;
|
|
738
738
|
/**
|
|
739
|
-
* Sensitivity for this CustomInfoType. If this CustomInfoType extends an existing InfoType, the sensitivity here will take
|
|
740
|
-
* CustomInfoType, it will default to HIGH. This only applies to data profiling.
|
|
739
|
+
* Sensitivity for this CustomInfoType. If this CustomInfoType extends an existing InfoType, the sensitivity here will take precedence over that of the original InfoType. If unset for
|
|
740
|
+
* a CustomInfoType, it will default to HIGH. This only applies to data profiling.
|
|
741
741
|
*/
|
|
742
742
|
sensitivityScore?:
|
|
743
743
|
GooglePrivacyDlpV2SensitivityScore;
|
|
@@ -1648,9 +1648,9 @@ declare namespace gapi.client {
|
|
|
1648
1648
|
boolean;
|
|
1649
1649
|
/**
|
|
1650
1650
|
* Restricts what info_types to look for. The values must correspond to InfoType values returned by ListInfoTypes or listed at https://cloud.google.com/dlp/docs/infotypes-reference.
|
|
1651
|
-
* When no InfoTypes or CustomInfoTypes are specified in a request, the system may automatically choose
|
|
1652
|
-
*
|
|
1653
|
-
*
|
|
1651
|
+
* When no InfoTypes or CustomInfoTypes are specified in a request, the system may automatically choose a default list of detectors to run, which may change over time. If you need
|
|
1652
|
+
* precise control and predictability as to what detectors are run you should specify specific InfoTypes listed in the reference, otherwise a default list will be used, which may
|
|
1653
|
+
* change over time.
|
|
1654
1654
|
*/
|
|
1655
1655
|
infoTypes?:
|
|
1656
1656
|
GooglePrivacyDlpV2InfoType[];
|
|
@@ -2025,7 +2025,7 @@ declare namespace gapi.client {
|
|
|
2025
2025
|
/** List of configs, up to page_size in ListDiscoveryConfigsRequest. */
|
|
2026
2026
|
discoveryConfigs?:
|
|
2027
2027
|
GooglePrivacyDlpV2DiscoveryConfig[];
|
|
2028
|
-
/** If the next page is available then the next page token to be used in the following ListDiscoveryConfigs request. */
|
|
2028
|
+
/** If the next page is available then this value is the next page token to be used in the following ListDiscoveryConfigs request. */
|
|
2029
2029
|
nextPageToken?:
|
|
2030
2030
|
string;
|
|
2031
2031
|
}
|
|
@@ -2054,7 +2054,7 @@ declare namespace gapi.client {
|
|
|
2054
2054
|
/** List of triggeredJobs, up to page_size in ListJobTriggersRequest. */
|
|
2055
2055
|
jobTriggers?:
|
|
2056
2056
|
GooglePrivacyDlpV2JobTrigger[];
|
|
2057
|
-
/** If the next page is available then the next page token to be used in the following ListJobTriggers request. */
|
|
2057
|
+
/** If the next page is available then this value is the next page token to be used in the following ListJobTriggers request. */
|
|
2058
2058
|
nextPageToken?:
|
|
2059
2059
|
string;
|
|
2060
2060
|
}
|
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: 20231029
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|