@maxim_mazurok/gapi.client.dlp-v2 0.0.20250810 → 0.1.20250817
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 +9 -1
- package/package.json +1 -1
- package/readme.md +2 -0
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: 20250817
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1349,6 +1349,8 @@ declare namespace gapi.client {
|
|
|
1349
1349
|
displayName?: string;
|
|
1350
1350
|
/** A sample that is a true positive for this infoType. */
|
|
1351
1351
|
example?: string;
|
|
1352
|
+
/** Locations at which this feature can be used. May change over time. */
|
|
1353
|
+
locationSupport?: GooglePrivacyDlpV2LocationSupport;
|
|
1352
1354
|
/** Internal name of the infoType. */
|
|
1353
1355
|
name?: string;
|
|
1354
1356
|
/** The default sensitivity of the infoType. */
|
|
@@ -1704,6 +1706,12 @@ declare namespace gapi.client {
|
|
|
1704
1706
|
/** List of nested objects pointing to the precise location of the finding within the file or record. */
|
|
1705
1707
|
contentLocations?: GooglePrivacyDlpV2ContentLocation[];
|
|
1706
1708
|
}
|
|
1709
|
+
interface GooglePrivacyDlpV2LocationSupport {
|
|
1710
|
+
/** Specific locations where the feature may be used. Examples: us-central1, us, asia, global If scope is ANY_LOCATION, no regions will be listed. */
|
|
1711
|
+
locations?: string[];
|
|
1712
|
+
/** The current scope for location on this feature. This may expand over time. */
|
|
1713
|
+
regionalizationScope?: string;
|
|
1714
|
+
}
|
|
1707
1715
|
interface GooglePrivacyDlpV2Manual {}
|
|
1708
1716
|
interface GooglePrivacyDlpV2MetadataLocation {
|
|
1709
1717
|
/** Storage metadata. */
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -74,3 +74,5 @@ Returns a list of the sensitive information types that the DLP API supports. See
|
|
|
74
74
|
*/
|
|
75
75
|
await gapi.client.dlp.infoTypes.list({});
|
|
76
76
|
```
|
|
77
|
+
|
|
78
|
+
For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.dlp-v2#Provenance:~:text=none-,Provenance,-Built%20and%20signed)
|