@maxim_mazurok/gapi.client.dlp-v2 0.0.20240218 → 0.0.20240303
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 +616 -190
- package/package.json +1 -1
- package/readme.md +2 -2
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* Type definitions for non-npm package Sensitive Data Protection (DLP) v2 0.0 */
|
|
2
|
-
// Project: https://cloud.google.com/
|
|
2
|
+
// Project: https://cloud.google.com/sensitive-data-protection/docs/
|
|
3
3
|
// Definitions by: Maxim Mazurok <https://github.com/Maxim-Mazurok>
|
|
4
4
|
// Nick Amoscato <https://github.com/namoscato>
|
|
5
5
|
// Declan Vong <https://github.com/declanvong>
|
|
@@ -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: 20240303
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -107,7 +107,7 @@ declare namespace gapi.client {
|
|
|
107
107
|
includedFields?: GooglePrivacyDlpV2FieldId[];
|
|
108
108
|
/** Max number of rows to scan. If the table has more rows than this value, the rest of the rows are omitted. If not set, or if set to 0, all rows will be scanned. Only one of rows_limit and rows_limit_percent can be specified. Cannot be used in conjunction with TimespanConfig. */
|
|
109
109
|
rowsLimit?: string;
|
|
110
|
-
/** Max percentage of rows to scan. The rest are omitted. The number of rows scanned is rounded down. Must be between 0 and 100, inclusively. Both 0 and 100 means no limit. Defaults to 0. Only one of rows_limit and rows_limit_percent can be specified. Cannot be used in conjunction with TimespanConfig. Caution: A [known issue](https://cloud.google.com/
|
|
110
|
+
/** Max percentage of rows to scan. The rest are omitted. The number of rows scanned is rounded down. Must be between 0 and 100, inclusively. Both 0 and 100 means no limit. Defaults to 0. Only one of rows_limit and rows_limit_percent can be specified. Cannot be used in conjunction with TimespanConfig. Caution: A [known issue](https://cloud.google.com/sensitive-data-protection/docs/known-issues#bq-sampling) is causing the `rowsLimitPercent` field to behave unexpectedly. We recommend using `rowsLimit` instead. */
|
|
111
111
|
rowsLimitPercent?: number;
|
|
112
112
|
/** How to sample the data. */
|
|
113
113
|
sampleMethod?: string;
|
|
@@ -212,9 +212,9 @@ declare namespace gapi.client {
|
|
|
212
212
|
url?: string;
|
|
213
213
|
}
|
|
214
214
|
interface GooglePrivacyDlpV2CloudStorageOptions {
|
|
215
|
-
/** Max number of bytes to scan from a file. If a scanned file's size is bigger than this value then the rest of the bytes are omitted. Only one of `bytes_limit_per_file` and `bytes_limit_per_file_percent` can be specified. This field can't be set if de-identification is requested. For certain file types, setting this field has no effect. For more information, see [Limits on bytes scanned per file](https://cloud.google.com/
|
|
215
|
+
/** Max number of bytes to scan from a file. If a scanned file's size is bigger than this value then the rest of the bytes are omitted. Only one of `bytes_limit_per_file` and `bytes_limit_per_file_percent` can be specified. This field can't be set if de-identification is requested. For certain file types, setting this field has no effect. For more information, see [Limits on bytes scanned per file](https://cloud.google.com/sensitive-data-protection/docs/supported-file-types#max-byte-size-per-file). */
|
|
216
216
|
bytesLimitPerFile?: string;
|
|
217
|
-
/** Max percentage of bytes to scan from a file. The rest are omitted. The number of bytes scanned is rounded down. Must be between 0 and 100, inclusively. Both 0 and 100 means no limit. Defaults to 0. Only one of bytes_limit_per_file and bytes_limit_per_file_percent can be specified. This field can't be set if de-identification is requested. For certain file types, setting this field has no effect. For more information, see [Limits on bytes scanned per file](https://cloud.google.com/
|
|
217
|
+
/** Max percentage of bytes to scan from a file. The rest are omitted. The number of bytes scanned is rounded down. Must be between 0 and 100, inclusively. Both 0 and 100 means no limit. Defaults to 0. Only one of bytes_limit_per_file and bytes_limit_per_file_percent can be specified. This field can't be set if de-identification is requested. For certain file types, setting this field has no effect. For more information, see [Limits on bytes scanned per file](https://cloud.google.com/sensitive-data-protection/docs/supported-file-types#max-byte-size-per-file). */
|
|
218
218
|
bytesLimitPerFilePercent?: number;
|
|
219
219
|
/** The set of one or more files to scan. */
|
|
220
220
|
fileSet?: GooglePrivacyDlpV2FileSet;
|
|
@@ -226,7 +226,7 @@ declare namespace gapi.client {
|
|
|
226
226
|
sampleMethod?: string;
|
|
227
227
|
}
|
|
228
228
|
interface GooglePrivacyDlpV2CloudStoragePath {
|
|
229
|
-
/** A
|
|
229
|
+
/** A URL representing a file or path (no wildcards) in Cloud Storage. Example: `gs://[BUCKET_NAME]/dictionary.txt` */
|
|
230
230
|
path?: string;
|
|
231
231
|
}
|
|
232
232
|
interface GooglePrivacyDlpV2CloudStorageRegexFileSet {
|
|
@@ -258,7 +258,7 @@ declare namespace gapi.client {
|
|
|
258
258
|
datasetId?: string;
|
|
259
259
|
/** The BigQuery location where the dataset's data is stored. See https://cloud.google.com/bigquery/docs/locations for supported locations. */
|
|
260
260
|
datasetLocation?: string;
|
|
261
|
-
/** The Google Cloud project ID that owns the
|
|
261
|
+
/** The Google Cloud project ID that owns the profiled resource. */
|
|
262
262
|
datasetProjectId?: string;
|
|
263
263
|
/** Approximate percentage of entries being null in the column. */
|
|
264
264
|
estimatedNullPercentage?: string;
|
|
@@ -282,7 +282,7 @@ declare namespace gapi.client {
|
|
|
282
282
|
state?: string;
|
|
283
283
|
/** The resource name of the table data profile. */
|
|
284
284
|
tableDataProfile?: string;
|
|
285
|
-
/** The resource name of the
|
|
285
|
+
/** The resource name of the resource this column is within. */
|
|
286
286
|
tableFullResource?: string;
|
|
287
287
|
/** The BigQuery table ID. */
|
|
288
288
|
tableId?: string;
|
|
@@ -318,7 +318,7 @@ declare namespace gapi.client {
|
|
|
318
318
|
interface GooglePrivacyDlpV2ContentItem {
|
|
319
319
|
/** Content data to inspect or redact. Replaces `type` and `data`. */
|
|
320
320
|
byteItem?: GooglePrivacyDlpV2ByteContentItem;
|
|
321
|
-
/** Structured content for inspection. See https://cloud.google.com/
|
|
321
|
+
/** Structured content for inspection. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-text#inspecting_a_table to learn more. */
|
|
322
322
|
table?: GooglePrivacyDlpV2Table;
|
|
323
323
|
/** String data to inspect or redact. */
|
|
324
324
|
value?: string;
|
|
@@ -418,7 +418,7 @@ declare namespace gapi.client {
|
|
|
418
418
|
customAlphabet?: string;
|
|
419
419
|
/** The native way to select the alphabet. Must be in the range [2, 95]. */
|
|
420
420
|
radix?: number;
|
|
421
|
-
/** The custom infoType to annotate the surrogate with. This annotation will be applied to the surrogate by prefixing it with the name of the custom infoType followed by the number of characters comprising the surrogate. The following scheme defines the format: info_type_name(surrogate_character_count):surrogate For example, if the name of custom infoType is 'MY_TOKEN_INFO_TYPE' and the surrogate is 'abc', the full replacement value will be: 'MY_TOKEN_INFO_TYPE(3):abc' This annotation identifies the surrogate when inspecting content using the custom infoType [`SurrogateType`](https://cloud.google.com/
|
|
421
|
+
/** The custom infoType to annotate the surrogate with. This annotation will be applied to the surrogate by prefixing it with the name of the custom infoType followed by the number of characters comprising the surrogate. The following scheme defines the format: info_type_name(surrogate_character_count):surrogate For example, if the name of custom infoType is 'MY_TOKEN_INFO_TYPE' and the surrogate is 'abc', the full replacement value will be: 'MY_TOKEN_INFO_TYPE(3):abc' This annotation identifies the surrogate when inspecting content using the custom infoType [`SurrogateType`](https://cloud.google.com/sensitive-data-protection/docs/reference/rest/v2/InspectConfig#surrogatetype). This facilitates reversal of the surrogate when it occurs in free text. In order for inspection to work properly, the name of this infoType must not occur naturally anywhere in your data; otherwise, inspection may find a surrogate that does not correspond to an actual identifier. Therefore, choose your custom infoType name carefully after considering what your data looks like. One way to select a name that has a high chance of yielding reliable detection is to include one or more unicode characters that are highly improbable to exist in your data. For example, assuming your data is entered from a regular ASCII keyboard, the symbol with the hex code point 29DD might be used like so: ⧝MY_TOKEN_TYPE */
|
|
422
422
|
surrogateInfoType?: GooglePrivacyDlpV2InfoType;
|
|
423
423
|
}
|
|
424
424
|
interface GooglePrivacyDlpV2CustomInfoType {
|
|
@@ -460,11 +460,15 @@ declare namespace gapi.client {
|
|
|
460
460
|
discoveryConfig?: GooglePrivacyDlpV2DiscoveryConfig;
|
|
461
461
|
/** A copy of the inspection config used to generate this profile. This is a copy of the inspect_template specified in `DataProfileJobConfig`. */
|
|
462
462
|
inspectConfig?: GooglePrivacyDlpV2InspectConfig;
|
|
463
|
+
/** Timestamp when the template was modified */
|
|
464
|
+
inspectTemplateModifiedTime?: string;
|
|
465
|
+
/** Name of the inspection template used to generate this profile */
|
|
466
|
+
inspectTemplateName?: string;
|
|
463
467
|
}
|
|
464
468
|
interface GooglePrivacyDlpV2DataProfileJobConfig {
|
|
465
469
|
/** Actions to execute at the completion of the job. */
|
|
466
470
|
dataProfileActions?: GooglePrivacyDlpV2DataProfileAction[];
|
|
467
|
-
/** Detection logic for profile generation. Not all template features are used by profiles. FindingLimits, include_quote and exclude_info_types have no impact on data profiling. Multiple templates may be provided if there is data in multiple regions. At most one template must be specified per-region (including "global"). Each region is scanned using the applicable template. If no region-specific template is specified, but a "global" template is specified, it will be copied to that region and used instead. If no global or region-specific template is provided for a region with data, that region's data will not be scanned. For more information, see https://cloud.google.com/
|
|
471
|
+
/** Detection logic for profile generation. Not all template features are used by profiles. FindingLimits, include_quote and exclude_info_types have no impact on data profiling. Multiple templates may be provided if there is data in multiple regions. At most one template must be specified per-region (including "global"). Each region is scanned using the applicable template. If no region-specific template is specified, but a "global" template is specified, it will be copied to that region and used instead. If no global or region-specific template is provided for a region with data, that region's data will not be scanned. For more information, see https://cloud.google.com/sensitive-data-protection/docs/data-profiles#data-residency. */
|
|
468
472
|
inspectTemplates?: string[];
|
|
469
473
|
/** The data to scan. */
|
|
470
474
|
location?: GooglePrivacyDlpV2DataProfileLocation;
|
|
@@ -659,7 +663,7 @@ declare namespace gapi.client {
|
|
|
659
663
|
displayName?: string;
|
|
660
664
|
/** Output only. A stream of errors encountered when the config was activated. Repeated errors may result in the config automatically being paused. Output only field. Will return the last 100 errors. Whenever the config is modified this list will be cleared. */
|
|
661
665
|
errors?: GooglePrivacyDlpV2Error[];
|
|
662
|
-
/** Detection logic for profile generation. Not all template features are used by Discovery. FindingLimits, include_quote and exclude_info_types have no impact on Discovery. Multiple templates may be provided if there is data in multiple regions. At most one template must be specified per-region (including "global"). Each region is scanned using the applicable template. If no region-specific template is specified, but a "global" template is specified, it will be copied to that region and used instead. If no global or region-specific template is provided for a region with data, that region's data will not be scanned. For more information, see https://cloud.google.com/
|
|
666
|
+
/** Detection logic for profile generation. Not all template features are used by Discovery. FindingLimits, include_quote and exclude_info_types have no impact on Discovery. Multiple templates may be provided if there is data in multiple regions. At most one template must be specified per-region (including "global"). Each region is scanned using the applicable template. If no region-specific template is specified, but a "global" template is specified, it will be copied to that region and used instead. If no global or region-specific template is provided for a region with data, that region's data will not be scanned. For more information, see https://cloud.google.com/sensitive-data-protection/docs/data-profiles#data-residency. */
|
|
663
667
|
inspectTemplates?: string[];
|
|
664
668
|
/** Output only. The timestamp of the last time this config was executed. */
|
|
665
669
|
lastRunTime?: string;
|
|
@@ -844,7 +848,7 @@ declare namespace gapi.client {
|
|
|
844
848
|
hotwordRegex?: GooglePrivacyDlpV2Regex;
|
|
845
849
|
/** Likelihood adjustment to apply to all matching findings. */
|
|
846
850
|
likelihoodAdjustment?: GooglePrivacyDlpV2LikelihoodAdjustment;
|
|
847
|
-
/** Range of characters within which the entire hotword must reside. The total length of the window cannot exceed 1000 characters. The finding itself will be included in the window, so that hotwords can be used to match substrings of the finding itself. Suppose you want Cloud DLP to promote the likelihood of the phone number regex "\(\d{3}\) \d{3}-\d{4}" if the area code is known to be the area code of a company's office. In this case, use the hotword regex "\(xxx\)", where "xxx" is the area code in question. For tabular data, if you want to modify the likelihood of an entire column of findngs, see [Hotword example: Set the match likelihood of a table column] (https://cloud.google.com/
|
|
851
|
+
/** Range of characters within which the entire hotword must reside. The total length of the window cannot exceed 1000 characters. The finding itself will be included in the window, so that hotwords can be used to match substrings of the finding itself. Suppose you want Cloud DLP to promote the likelihood of the phone number regex "\(\d{3}\) \d{3}-\d{4}" if the area code is known to be the area code of a company's office. In this case, use the hotword regex "\(xxx\)", where "xxx" is the area code in question. For tabular data, if you want to modify the likelihood of an entire column of findngs, see [Hotword example: Set the match likelihood of a table column] (https://cloud.google.com/sensitive-data-protection/docs/creating-custom-infotypes-likelihood#match-column-values). */
|
|
848
852
|
proximity?: GooglePrivacyDlpV2Proximity;
|
|
849
853
|
}
|
|
850
854
|
interface GooglePrivacyDlpV2HybridContentItem {
|
|
@@ -919,7 +923,7 @@ declare namespace gapi.client {
|
|
|
919
923
|
transforms?: GooglePrivacyDlpV2ImageTransformation[];
|
|
920
924
|
}
|
|
921
925
|
interface GooglePrivacyDlpV2InfoType {
|
|
922
|
-
/** Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/
|
|
926
|
+
/** Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference when specifying a built-in type. When sending Cloud DLP results to Data Catalog, infoType names should conform to the pattern `[A-Za-z0-9$_-]{1,64}`. */
|
|
923
927
|
name?: string;
|
|
924
928
|
/** Optional custom sensitivity for this InfoType. This only applies to data profiling. */
|
|
925
929
|
sensitivityScore?: GooglePrivacyDlpV2SensitivityScore;
|
|
@@ -987,17 +991,17 @@ declare namespace gapi.client {
|
|
|
987
991
|
interface GooglePrivacyDlpV2InspectConfig {
|
|
988
992
|
/** Deprecated and unused. */
|
|
989
993
|
contentOptions?: string[];
|
|
990
|
-
/** CustomInfoTypes provided by the user. See https://cloud.google.com/
|
|
994
|
+
/** CustomInfoTypes provided by the user. See https://cloud.google.com/sensitive-data-protection/docs/creating-custom-infotypes to learn more. */
|
|
991
995
|
customInfoTypes?: GooglePrivacyDlpV2CustomInfoType[];
|
|
992
996
|
/** When true, excludes type information of the findings. This is not used for data profiling. */
|
|
993
997
|
excludeInfoTypes?: boolean;
|
|
994
998
|
/** When true, a contextual quote from the data that triggered a finding is included in the response; see Finding.quote. This is not used for data profiling. */
|
|
995
999
|
includeQuote?: boolean;
|
|
996
|
-
/** Restricts what info_types to look for. The values must correspond to InfoType values returned by ListInfoTypes or listed at https://cloud.google.com/
|
|
1000
|
+
/** Restricts what info_types to look for. The values must correspond to InfoType values returned by ListInfoTypes or listed at https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference. 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 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 change over time. */
|
|
997
1001
|
infoTypes?: GooglePrivacyDlpV2InfoType[];
|
|
998
1002
|
/** Configuration to control the number of findings returned. This is not used for data profiling. When redacting sensitive data from images, finding limits don't apply. They can cause unexpected or inconsistent results, where only some data is redacted. Don't include finding limits in RedactImage requests. Otherwise, Cloud DLP returns an error. When set within an InspectJobConfig, the specified maximum values aren't hard limits. If an inspection job reaches these limits, the job ends gradually, not abruptly. Therefore, the actual number of findings that Cloud DLP returns can be multiple times higher than these maximum values. */
|
|
999
1003
|
limits?: GooglePrivacyDlpV2FindingLimits;
|
|
1000
|
-
/** 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 chance of a false positive. For more information, see [Match likelihood](https://cloud.google.com/
|
|
1004
|
+
/** 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 chance of a false positive. For more information, see [Match likelihood](https://cloud.google.com/sensitive-data-protection/docs/likelihood). */
|
|
1001
1005
|
minLikelihood?: string;
|
|
1002
1006
|
/** 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 field is not set, the system uses the InspectConfig min_likelihood. */
|
|
1003
1007
|
minLikelihoodPerInfoType?: GooglePrivacyDlpV2InfoTypeLikelihood[];
|
|
@@ -1214,6 +1218,12 @@ declare namespace gapi.client {
|
|
|
1214
1218
|
/** Increase or decrease the likelihood by the specified number of levels. For example, if a finding would be `POSSIBLE` without the detection rule and `relative_likelihood` is 1, then it is upgraded to `LIKELY`, while a value of -1 would downgrade it to `UNLIKELY`. Likelihood may never drop below `VERY_UNLIKELY` or exceed `VERY_LIKELY`, so applying an adjustment of 1 followed by an adjustment of -1 when base likelihood is `VERY_LIKELY` will result in a final likelihood of `LIKELY`. */
|
|
1215
1219
|
relativeLikelihood?: number;
|
|
1216
1220
|
}
|
|
1221
|
+
interface GooglePrivacyDlpV2ListColumnDataProfilesResponse {
|
|
1222
|
+
/** List of data profiles. */
|
|
1223
|
+
columnDataProfiles?: GooglePrivacyDlpV2ColumnDataProfile[];
|
|
1224
|
+
/** The next page token. */
|
|
1225
|
+
nextPageToken?: string;
|
|
1226
|
+
}
|
|
1217
1227
|
interface GooglePrivacyDlpV2ListDeidentifyTemplatesResponse {
|
|
1218
1228
|
/** List of deidentify templates, up to page_size in ListDeidentifyTemplatesRequest. */
|
|
1219
1229
|
deidentifyTemplates?: GooglePrivacyDlpV2DeidentifyTemplate[];
|
|
@@ -1248,12 +1258,24 @@ declare namespace gapi.client {
|
|
|
1248
1258
|
/** If the next page is available then this value is the next page token to be used in the following ListJobTriggers request. */
|
|
1249
1259
|
nextPageToken?: string;
|
|
1250
1260
|
}
|
|
1261
|
+
interface GooglePrivacyDlpV2ListProjectDataProfilesResponse {
|
|
1262
|
+
/** The next page token. */
|
|
1263
|
+
nextPageToken?: string;
|
|
1264
|
+
/** List of data profiles. */
|
|
1265
|
+
projectDataProfiles?: GooglePrivacyDlpV2ProjectDataProfile[];
|
|
1266
|
+
}
|
|
1251
1267
|
interface GooglePrivacyDlpV2ListStoredInfoTypesResponse {
|
|
1252
1268
|
/** If the next page is available then the next page token to be used in the following ListStoredInfoTypes request. */
|
|
1253
1269
|
nextPageToken?: string;
|
|
1254
1270
|
/** List of storedInfoTypes, up to page_size in ListStoredInfoTypesRequest. */
|
|
1255
1271
|
storedInfoTypes?: GooglePrivacyDlpV2StoredInfoType[];
|
|
1256
1272
|
}
|
|
1273
|
+
interface GooglePrivacyDlpV2ListTableDataProfilesResponse {
|
|
1274
|
+
/** The next page token. */
|
|
1275
|
+
nextPageToken?: string;
|
|
1276
|
+
/** List of data profiles. */
|
|
1277
|
+
tableDataProfiles?: GooglePrivacyDlpV2TableDataProfile[];
|
|
1278
|
+
}
|
|
1257
1279
|
interface GooglePrivacyDlpV2Location {
|
|
1258
1280
|
/** Zero-based byte offsets delimiting the finding. These are relative to the finding's containing element. Note that when the content is not textual, this references the UTF-8 encoded textual representation of the content. Omitted if content is an image. */
|
|
1259
1281
|
byteRange?: GooglePrivacyDlpV2Range;
|
|
@@ -1369,10 +1391,24 @@ declare namespace gapi.client {
|
|
|
1369
1391
|
/** Time when the profile generation status was updated */
|
|
1370
1392
|
timestamp?: string;
|
|
1371
1393
|
}
|
|
1394
|
+
interface GooglePrivacyDlpV2ProjectDataProfile {
|
|
1395
|
+
/** The data risk level of this project. */
|
|
1396
|
+
dataRiskLevel?: GooglePrivacyDlpV2DataRiskLevel;
|
|
1397
|
+
/** The resource name of the profile. */
|
|
1398
|
+
name?: string;
|
|
1399
|
+
/** The last time the profile was generated. */
|
|
1400
|
+
profileLastGenerated?: string;
|
|
1401
|
+
/** Success or error status of the last attempt to profile the project. */
|
|
1402
|
+
profileStatus?: GooglePrivacyDlpV2ProfileStatus;
|
|
1403
|
+
/** Project ID that was profiled. */
|
|
1404
|
+
projectId?: string;
|
|
1405
|
+
/** The sensitivity score of this project. */
|
|
1406
|
+
sensitivityScore?: GooglePrivacyDlpV2SensitivityScore;
|
|
1407
|
+
}
|
|
1372
1408
|
interface GooglePrivacyDlpV2Proximity {
|
|
1373
1409
|
/** Number of characters after the finding to consider. */
|
|
1374
1410
|
windowAfter?: number;
|
|
1375
|
-
/** Number of characters before the finding to consider. For tabular data, if you want to modify the likelihood of an entire column of findngs, set this to 1. For more information, see [Hotword example: Set the match likelihood of a table column] (https://cloud.google.com/
|
|
1411
|
+
/** Number of characters before the finding to consider. For tabular data, if you want to modify the likelihood of an entire column of findngs, set this to 1. For more information, see [Hotword example: Set the match likelihood of a table column] (https://cloud.google.com/sensitive-data-protection/docs/creating-custom-infotypes-likelihood#match-column-values). */
|
|
1376
1412
|
windowBefore?: number;
|
|
1377
1413
|
}
|
|
1378
1414
|
interface GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog {}
|
|
@@ -1443,7 +1479,7 @@ declare namespace gapi.client {
|
|
|
1443
1479
|
interface GooglePrivacyDlpV2RecordKey {
|
|
1444
1480
|
/** Datastore key */
|
|
1445
1481
|
bigQueryKey?: GooglePrivacyDlpV2BigQueryKey;
|
|
1446
|
-
/**
|
|
1482
|
+
/** BigQuery key */
|
|
1447
1483
|
datastoreKey?: GooglePrivacyDlpV2DatastoreKey;
|
|
1448
1484
|
/** Values of identifying columns in the given row. Order of values matches the order of `identifying_fields` specified in the scanning request. */
|
|
1449
1485
|
idValues?: string[];
|
|
@@ -1522,7 +1558,7 @@ declare namespace gapi.client {
|
|
|
1522
1558
|
overview?: GooglePrivacyDlpV2TransformationOverview;
|
|
1523
1559
|
}
|
|
1524
1560
|
interface GooglePrivacyDlpV2ReplaceDictionaryConfig {
|
|
1525
|
-
/** A list of words to select from for random replacement. The [limits](https://cloud.google.com/
|
|
1561
|
+
/** A list of words to select from for random replacement. The [limits](https://cloud.google.com/sensitive-data-protection/limits) page contains details about the size limits of dictionaries. */
|
|
1526
1562
|
wordList?: GooglePrivacyDlpV2WordList;
|
|
1527
1563
|
}
|
|
1528
1564
|
interface GooglePrivacyDlpV2ReplaceValueConfig {
|
|
@@ -1674,11 +1710,11 @@ declare namespace gapi.client {
|
|
|
1674
1710
|
createTime?: string;
|
|
1675
1711
|
/** The data risk level of this table. */
|
|
1676
1712
|
dataRiskLevel?: GooglePrivacyDlpV2DataRiskLevel;
|
|
1677
|
-
/**
|
|
1713
|
+
/** If the resource is BigQuery, the dataset ID. */
|
|
1678
1714
|
datasetId?: string;
|
|
1679
|
-
/**
|
|
1715
|
+
/** If supported, the location where the dataset's data is stored. See https://cloud.google.com/bigquery/docs/locations for supported locations. */
|
|
1680
1716
|
datasetLocation?: string;
|
|
1681
|
-
/** The Google Cloud project ID that owns the
|
|
1717
|
+
/** The Google Cloud project ID that owns the resource. */
|
|
1682
1718
|
datasetProjectId?: string;
|
|
1683
1719
|
/** The resource type that was profiled. */
|
|
1684
1720
|
dataSourceType?: GooglePrivacyDlpV2DataSourceType;
|
|
@@ -1688,7 +1724,7 @@ declare namespace gapi.client {
|
|
|
1688
1724
|
expirationTime?: string;
|
|
1689
1725
|
/** The number of columns skipped in the table because of an error. */
|
|
1690
1726
|
failedColumnCount?: string;
|
|
1691
|
-
/** The resource name of the
|
|
1727
|
+
/** The resource name of the resource profiled. https://cloud.google.com/apis/design/resource_names#full_resource_name */
|
|
1692
1728
|
fullResource?: string;
|
|
1693
1729
|
/** The time when this table was last modified */
|
|
1694
1730
|
lastModifiedTime?: string;
|
|
@@ -1716,7 +1752,7 @@ declare namespace gapi.client {
|
|
|
1716
1752
|
sensitivityScore?: GooglePrivacyDlpV2SensitivityScore;
|
|
1717
1753
|
/** State of a profile. */
|
|
1718
1754
|
state?: string;
|
|
1719
|
-
/**
|
|
1755
|
+
/** If the resource is BigQuery, the BigQuery table ID. */
|
|
1720
1756
|
tableId?: string;
|
|
1721
1757
|
/** The size of the table when the profile was generated. */
|
|
1722
1758
|
tableSizeBytes?: string;
|
|
@@ -1751,7 +1787,7 @@ declare namespace gapi.client {
|
|
|
1751
1787
|
endTime?: string;
|
|
1752
1788
|
/** Exclude files, tables, or rows older than this value. If not set, no lower time limit is applied. */
|
|
1753
1789
|
startTime?: string;
|
|
1754
|
-
/** Specification of the field containing the timestamp of scanned items. Used for data sources like Datastore and BigQuery. *For BigQuery* If this value is not specified and the table was modified between the given start and end times, the entire table will be scanned. If this value is specified, then rows are filtered based on the given start and end times. Rows with a `NULL` value in the provided BigQuery column are skipped. Valid data types of the provided BigQuery column are: `INTEGER`, `DATE`, `TIMESTAMP`, and `DATETIME`. If your BigQuery table is [partitioned at ingestion time](https://cloud.google.com/bigquery/docs/partitioned-tables#ingestion_time), you can use any of the following pseudo-columns as your timestamp field. When used with Cloud DLP, these pseudo-column names are case sensitive. - _PARTITIONTIME - _PARTITIONDATE - _PARTITION_LOAD_TIME *For Datastore* If this value is specified, then entities are filtered based on the given start and end times. If an entity does not contain the provided timestamp property or contains empty or invalid values, then it is included. Valid data types of the provided timestamp property are: `TIMESTAMP`. See the [known issue](https://cloud.google.com/
|
|
1790
|
+
/** Specification of the field containing the timestamp of scanned items. Used for data sources like Datastore and BigQuery. *For BigQuery* If this value is not specified and the table was modified between the given start and end times, the entire table will be scanned. If this value is specified, then rows are filtered based on the given start and end times. Rows with a `NULL` value in the provided BigQuery column are skipped. Valid data types of the provided BigQuery column are: `INTEGER`, `DATE`, `TIMESTAMP`, and `DATETIME`. If your BigQuery table is [partitioned at ingestion time](https://cloud.google.com/bigquery/docs/partitioned-tables#ingestion_time), you can use any of the following pseudo-columns as your timestamp field. When used with Cloud DLP, these pseudo-column names are case sensitive. - _PARTITIONTIME - _PARTITIONDATE - _PARTITION_LOAD_TIME *For Datastore* If this value is specified, then entities are filtered based on the given start and end times. If an entity does not contain the provided timestamp property or contains empty or invalid values, then it is included. Valid data types of the provided timestamp property are: `TIMESTAMP`. See the [known issue](https://cloud.google.com/sensitive-data-protection/docs/known-issues#bq-timespan) related to this operation. */
|
|
1755
1791
|
timestampField?: GooglePrivacyDlpV2FieldId;
|
|
1756
1792
|
}
|
|
1757
1793
|
interface GooglePrivacyDlpV2TimeZone {
|
|
@@ -1942,7 +1978,7 @@ declare namespace gapi.client {
|
|
|
1942
1978
|
seconds?: number;
|
|
1943
1979
|
}
|
|
1944
1980
|
interface InfoTypesResource {
|
|
1945
|
-
/** Returns a list of the sensitive information types that DLP API supports. See https://cloud.google.com/
|
|
1981
|
+
/** Returns a list of the sensitive information types that DLP API supports. See https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference to learn more. */
|
|
1946
1982
|
list(request?: {
|
|
1947
1983
|
/** V1 error format. */
|
|
1948
1984
|
'$.xgafv'?: string;
|
|
@@ -1977,7 +2013,7 @@ declare namespace gapi.client {
|
|
|
1977
2013
|
}): Request<GooglePrivacyDlpV2ListInfoTypesResponse>;
|
|
1978
2014
|
}
|
|
1979
2015
|
interface InfoTypesResource {
|
|
1980
|
-
/** Returns a list of the sensitive information types that DLP API supports. See https://cloud.google.com/
|
|
2016
|
+
/** Returns a list of the sensitive information types that DLP API supports. See https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference to learn more. */
|
|
1981
2017
|
list(request?: {
|
|
1982
2018
|
/** V1 error format. */
|
|
1983
2019
|
'$.xgafv'?: string;
|
|
@@ -2015,7 +2051,7 @@ declare namespace gapi.client {
|
|
|
2015
2051
|
infoTypes: InfoTypesResource;
|
|
2016
2052
|
}
|
|
2017
2053
|
interface DeidentifyTemplatesResource {
|
|
2018
|
-
/** Creates a DeidentifyTemplate for reusing frequently used configuration for de-identifying content, images, and storage. See https://cloud.google.com/
|
|
2054
|
+
/** Creates a DeidentifyTemplate for reusing frequently used configuration for de-identifying content, images, and storage. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2019
2055
|
create(request: {
|
|
2020
2056
|
/** V1 error format. */
|
|
2021
2057
|
'$.xgafv'?: string;
|
|
@@ -2031,7 +2067,7 @@ declare namespace gapi.client {
|
|
|
2031
2067
|
key?: string;
|
|
2032
2068
|
/** OAuth 2.0 token for the current user. */
|
|
2033
2069
|
oauth_token?: string;
|
|
2034
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
2070
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2035
2071
|
parent: string;
|
|
2036
2072
|
/** Returns response with indentations and line breaks. */
|
|
2037
2073
|
prettyPrint?: boolean;
|
|
@@ -2060,7 +2096,7 @@ declare namespace gapi.client {
|
|
|
2060
2096
|
key?: string;
|
|
2061
2097
|
/** OAuth 2.0 token for the current user. */
|
|
2062
2098
|
oauth_token?: string;
|
|
2063
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
2099
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2064
2100
|
parent: string;
|
|
2065
2101
|
/** Returns response with indentations and line breaks. */
|
|
2066
2102
|
prettyPrint?: boolean;
|
|
@@ -2073,7 +2109,7 @@ declare namespace gapi.client {
|
|
|
2073
2109
|
},
|
|
2074
2110
|
body: GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
|
|
2075
2111
|
): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
2076
|
-
/** Deletes a DeidentifyTemplate. See https://cloud.google.com/
|
|
2112
|
+
/** Deletes a DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2077
2113
|
delete(request?: {
|
|
2078
2114
|
/** V1 error format. */
|
|
2079
2115
|
'$.xgafv'?: string;
|
|
@@ -2100,7 +2136,7 @@ declare namespace gapi.client {
|
|
|
2100
2136
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2101
2137
|
uploadType?: string;
|
|
2102
2138
|
}): Request<{}>;
|
|
2103
|
-
/** Gets a DeidentifyTemplate. See https://cloud.google.com/
|
|
2139
|
+
/** Gets a DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2104
2140
|
get(request?: {
|
|
2105
2141
|
/** V1 error format. */
|
|
2106
2142
|
'$.xgafv'?: string;
|
|
@@ -2127,7 +2163,7 @@ declare namespace gapi.client {
|
|
|
2127
2163
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2128
2164
|
uploadType?: string;
|
|
2129
2165
|
}): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
2130
|
-
/** Lists DeidentifyTemplates. See https://cloud.google.com/
|
|
2166
|
+
/** Lists DeidentifyTemplates. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2131
2167
|
list(request?: {
|
|
2132
2168
|
/** V1 error format. */
|
|
2133
2169
|
'$.xgafv'?: string;
|
|
@@ -2151,7 +2187,7 @@ declare namespace gapi.client {
|
|
|
2151
2187
|
pageSize?: number;
|
|
2152
2188
|
/** Page token to continue retrieval. Comes from the previous call to `ListDeidentifyTemplates`. */
|
|
2153
2189
|
pageToken?: string;
|
|
2154
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
2190
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2155
2191
|
parent: string;
|
|
2156
2192
|
/** Returns response with indentations and line breaks. */
|
|
2157
2193
|
prettyPrint?: boolean;
|
|
@@ -2162,7 +2198,7 @@ declare namespace gapi.client {
|
|
|
2162
2198
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2163
2199
|
uploadType?: string;
|
|
2164
2200
|
}): Request<GooglePrivacyDlpV2ListDeidentifyTemplatesResponse>;
|
|
2165
|
-
/** Updates the DeidentifyTemplate. See https://cloud.google.com/
|
|
2201
|
+
/** Updates the DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2166
2202
|
patch(request: {
|
|
2167
2203
|
/** V1 error format. */
|
|
2168
2204
|
'$.xgafv'?: string;
|
|
@@ -2222,7 +2258,7 @@ declare namespace gapi.client {
|
|
|
2222
2258
|
): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
2223
2259
|
}
|
|
2224
2260
|
interface InspectTemplatesResource {
|
|
2225
|
-
/** Creates an InspectTemplate for reusing frequently used configuration for inspecting content, images, and storage. See https://cloud.google.com/
|
|
2261
|
+
/** Creates an InspectTemplate for reusing frequently used configuration for inspecting content, images, and storage. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
2226
2262
|
create(request: {
|
|
2227
2263
|
/** V1 error format. */
|
|
2228
2264
|
'$.xgafv'?: string;
|
|
@@ -2238,7 +2274,7 @@ declare namespace gapi.client {
|
|
|
2238
2274
|
key?: string;
|
|
2239
2275
|
/** OAuth 2.0 token for the current user. */
|
|
2240
2276
|
oauth_token?: string;
|
|
2241
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
2277
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2242
2278
|
parent: string;
|
|
2243
2279
|
/** Returns response with indentations and line breaks. */
|
|
2244
2280
|
prettyPrint?: boolean;
|
|
@@ -2267,7 +2303,7 @@ declare namespace gapi.client {
|
|
|
2267
2303
|
key?: string;
|
|
2268
2304
|
/** OAuth 2.0 token for the current user. */
|
|
2269
2305
|
oauth_token?: string;
|
|
2270
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
2306
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2271
2307
|
parent: string;
|
|
2272
2308
|
/** Returns response with indentations and line breaks. */
|
|
2273
2309
|
prettyPrint?: boolean;
|
|
@@ -2280,7 +2316,7 @@ declare namespace gapi.client {
|
|
|
2280
2316
|
},
|
|
2281
2317
|
body: GooglePrivacyDlpV2CreateInspectTemplateRequest
|
|
2282
2318
|
): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
2283
|
-
/** Deletes an InspectTemplate. See https://cloud.google.com/
|
|
2319
|
+
/** Deletes an InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
2284
2320
|
delete(request?: {
|
|
2285
2321
|
/** V1 error format. */
|
|
2286
2322
|
'$.xgafv'?: string;
|
|
@@ -2307,7 +2343,7 @@ declare namespace gapi.client {
|
|
|
2307
2343
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2308
2344
|
uploadType?: string;
|
|
2309
2345
|
}): Request<{}>;
|
|
2310
|
-
/** Gets an InspectTemplate. See https://cloud.google.com/
|
|
2346
|
+
/** Gets an InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
2311
2347
|
get(request?: {
|
|
2312
2348
|
/** V1 error format. */
|
|
2313
2349
|
'$.xgafv'?: string;
|
|
@@ -2334,7 +2370,7 @@ declare namespace gapi.client {
|
|
|
2334
2370
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2335
2371
|
uploadType?: string;
|
|
2336
2372
|
}): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
2337
|
-
/** Lists InspectTemplates. See https://cloud.google.com/
|
|
2373
|
+
/** Lists InspectTemplates. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
2338
2374
|
list(request?: {
|
|
2339
2375
|
/** V1 error format. */
|
|
2340
2376
|
'$.xgafv'?: string;
|
|
@@ -2358,7 +2394,7 @@ declare namespace gapi.client {
|
|
|
2358
2394
|
pageSize?: number;
|
|
2359
2395
|
/** Page token to continue retrieval. Comes from the previous call to `ListInspectTemplates`. */
|
|
2360
2396
|
pageToken?: string;
|
|
2361
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
2397
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2362
2398
|
parent: string;
|
|
2363
2399
|
/** Returns response with indentations and line breaks. */
|
|
2364
2400
|
prettyPrint?: boolean;
|
|
@@ -2369,7 +2405,7 @@ declare namespace gapi.client {
|
|
|
2369
2405
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2370
2406
|
uploadType?: string;
|
|
2371
2407
|
}): Request<GooglePrivacyDlpV2ListInspectTemplatesResponse>;
|
|
2372
|
-
/** Updates the InspectTemplate. See https://cloud.google.com/
|
|
2408
|
+
/** Updates the InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
2373
2409
|
patch(request: {
|
|
2374
2410
|
/** V1 error format. */
|
|
2375
2411
|
'$.xgafv'?: string;
|
|
@@ -2428,8 +2464,72 @@ declare namespace gapi.client {
|
|
|
2428
2464
|
body: GooglePrivacyDlpV2UpdateInspectTemplateRequest
|
|
2429
2465
|
): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
2430
2466
|
}
|
|
2467
|
+
interface ColumnDataProfilesResource {
|
|
2468
|
+
/** Gets a column data profile. */
|
|
2469
|
+
get(request?: {
|
|
2470
|
+
/** V1 error format. */
|
|
2471
|
+
'$.xgafv'?: string;
|
|
2472
|
+
/** OAuth access token. */
|
|
2473
|
+
access_token?: string;
|
|
2474
|
+
/** Data format for response. */
|
|
2475
|
+
alt?: string;
|
|
2476
|
+
/** JSONP */
|
|
2477
|
+
callback?: string;
|
|
2478
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2479
|
+
fields?: string;
|
|
2480
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2481
|
+
key?: string;
|
|
2482
|
+
/** Required. Resource name, for example `organizations/12345/locations/us/columnDataProfiles/53234423`. */
|
|
2483
|
+
name: string;
|
|
2484
|
+
/** OAuth 2.0 token for the current user. */
|
|
2485
|
+
oauth_token?: string;
|
|
2486
|
+
/** Returns response with indentations and line breaks. */
|
|
2487
|
+
prettyPrint?: boolean;
|
|
2488
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2489
|
+
quotaUser?: string;
|
|
2490
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2491
|
+
upload_protocol?: string;
|
|
2492
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2493
|
+
uploadType?: string;
|
|
2494
|
+
}): Request<GooglePrivacyDlpV2ColumnDataProfile>;
|
|
2495
|
+
/** Lists data profiles for an organization. */
|
|
2496
|
+
list(request?: {
|
|
2497
|
+
/** V1 error format. */
|
|
2498
|
+
'$.xgafv'?: string;
|
|
2499
|
+
/** OAuth access token. */
|
|
2500
|
+
access_token?: string;
|
|
2501
|
+
/** Data format for response. */
|
|
2502
|
+
alt?: string;
|
|
2503
|
+
/** JSONP */
|
|
2504
|
+
callback?: string;
|
|
2505
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2506
|
+
fields?: string;
|
|
2507
|
+
/** Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `table_data_profile_name` - The name of the related table data profile. - `project_id` - The Google Cloud project ID. (REQUIRED) - `dataset_id` - The BigQuery dataset ID. (REQUIRED) - `table_id` - The BigQuery table ID. (REQUIRED) - `field_id` - The ID of the BigQuery field. - `info_type` - The infotype detected in the resource. - `sensitivity_level` - HIGH|MEDIUM|LOW - `data_risk_level`: How much risk is associated with this data. - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` for project_id, dataset_id, and table_id. Other filters also support `!=`. Examples: * project_id = 12345 AND status_code = 1 * project_id = 12345 AND sensitivity_level = HIGH * project_id = 12345 AND info_type = STREET_ADDRESS The length of this field should be no more than 500 characters. */
|
|
2508
|
+
filter?: string;
|
|
2509
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2510
|
+
key?: string;
|
|
2511
|
+
/** OAuth 2.0 token for the current user. */
|
|
2512
|
+
oauth_token?: string;
|
|
2513
|
+
/** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a column is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
|
|
2514
|
+
orderBy?: string;
|
|
2515
|
+
/** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
|
|
2516
|
+
pageSize?: number;
|
|
2517
|
+
/** Page token to continue retrieval. */
|
|
2518
|
+
pageToken?: string;
|
|
2519
|
+
/** Required. Resource name of the organization or project, for example `organizations/433245324/locations/europe` or projects/project-id/locations/asia. */
|
|
2520
|
+
parent: string;
|
|
2521
|
+
/** Returns response with indentations and line breaks. */
|
|
2522
|
+
prettyPrint?: boolean;
|
|
2523
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2524
|
+
quotaUser?: string;
|
|
2525
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2526
|
+
upload_protocol?: string;
|
|
2527
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2528
|
+
uploadType?: string;
|
|
2529
|
+
}): Request<GooglePrivacyDlpV2ListColumnDataProfilesResponse>;
|
|
2530
|
+
}
|
|
2431
2531
|
interface DeidentifyTemplatesResource {
|
|
2432
|
-
/** Creates a DeidentifyTemplate for reusing frequently used configuration for de-identifying content, images, and storage. See https://cloud.google.com/
|
|
2532
|
+
/** Creates a DeidentifyTemplate for reusing frequently used configuration for de-identifying content, images, and storage. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2433
2533
|
create(request: {
|
|
2434
2534
|
/** V1 error format. */
|
|
2435
2535
|
'$.xgafv'?: string;
|
|
@@ -2445,7 +2545,7 @@ declare namespace gapi.client {
|
|
|
2445
2545
|
key?: string;
|
|
2446
2546
|
/** OAuth 2.0 token for the current user. */
|
|
2447
2547
|
oauth_token?: string;
|
|
2448
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
2548
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2449
2549
|
parent: string;
|
|
2450
2550
|
/** Returns response with indentations and line breaks. */
|
|
2451
2551
|
prettyPrint?: boolean;
|
|
@@ -2474,7 +2574,7 @@ declare namespace gapi.client {
|
|
|
2474
2574
|
key?: string;
|
|
2475
2575
|
/** OAuth 2.0 token for the current user. */
|
|
2476
2576
|
oauth_token?: string;
|
|
2477
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
2577
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2478
2578
|
parent: string;
|
|
2479
2579
|
/** Returns response with indentations and line breaks. */
|
|
2480
2580
|
prettyPrint?: boolean;
|
|
@@ -2487,7 +2587,7 @@ declare namespace gapi.client {
|
|
|
2487
2587
|
},
|
|
2488
2588
|
body: GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
|
|
2489
2589
|
): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
2490
|
-
/** Deletes a DeidentifyTemplate. See https://cloud.google.com/
|
|
2590
|
+
/** Deletes a DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2491
2591
|
delete(request?: {
|
|
2492
2592
|
/** V1 error format. */
|
|
2493
2593
|
'$.xgafv'?: string;
|
|
@@ -2514,7 +2614,7 @@ declare namespace gapi.client {
|
|
|
2514
2614
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2515
2615
|
uploadType?: string;
|
|
2516
2616
|
}): Request<{}>;
|
|
2517
|
-
/** Gets a DeidentifyTemplate. See https://cloud.google.com/
|
|
2617
|
+
/** Gets a DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2518
2618
|
get(request?: {
|
|
2519
2619
|
/** V1 error format. */
|
|
2520
2620
|
'$.xgafv'?: string;
|
|
@@ -2541,7 +2641,7 @@ declare namespace gapi.client {
|
|
|
2541
2641
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2542
2642
|
uploadType?: string;
|
|
2543
2643
|
}): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
2544
|
-
/** Lists DeidentifyTemplates. See https://cloud.google.com/
|
|
2644
|
+
/** Lists DeidentifyTemplates. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2545
2645
|
list(request?: {
|
|
2546
2646
|
/** V1 error format. */
|
|
2547
2647
|
'$.xgafv'?: string;
|
|
@@ -2565,7 +2665,7 @@ declare namespace gapi.client {
|
|
|
2565
2665
|
pageSize?: number;
|
|
2566
2666
|
/** Page token to continue retrieval. Comes from the previous call to `ListDeidentifyTemplates`. */
|
|
2567
2667
|
pageToken?: string;
|
|
2568
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
2668
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2569
2669
|
parent: string;
|
|
2570
2670
|
/** Returns response with indentations and line breaks. */
|
|
2571
2671
|
prettyPrint?: boolean;
|
|
@@ -2576,7 +2676,7 @@ declare namespace gapi.client {
|
|
|
2576
2676
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2577
2677
|
uploadType?: string;
|
|
2578
2678
|
}): Request<GooglePrivacyDlpV2ListDeidentifyTemplatesResponse>;
|
|
2579
|
-
/** Updates the DeidentifyTemplate. See https://cloud.google.com/
|
|
2679
|
+
/** Updates the DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
2580
2680
|
patch(request: {
|
|
2581
2681
|
/** V1 error format. */
|
|
2582
2682
|
'$.xgafv'?: string;
|
|
@@ -2841,7 +2941,7 @@ declare namespace gapi.client {
|
|
|
2841
2941
|
): Request<GooglePrivacyDlpV2DiscoveryConfig>;
|
|
2842
2942
|
}
|
|
2843
2943
|
interface DlpJobsResource {
|
|
2844
|
-
/** Lists DlpJobs that match the specified filter in the request. See https://cloud.google.com/
|
|
2944
|
+
/** Lists DlpJobs that match the specified filter in the request. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. */
|
|
2845
2945
|
list(request?: {
|
|
2846
2946
|
/** V1 error format. */
|
|
2847
2947
|
'$.xgafv'?: string;
|
|
@@ -2867,7 +2967,7 @@ declare namespace gapi.client {
|
|
|
2867
2967
|
pageSize?: number;
|
|
2868
2968
|
/** The standard list page token. */
|
|
2869
2969
|
pageToken?: string;
|
|
2870
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
2970
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2871
2971
|
parent: string;
|
|
2872
2972
|
/** Returns response with indentations and line breaks. */
|
|
2873
2973
|
prettyPrint?: boolean;
|
|
@@ -2882,7 +2982,7 @@ declare namespace gapi.client {
|
|
|
2882
2982
|
}): Request<GooglePrivacyDlpV2ListDlpJobsResponse>;
|
|
2883
2983
|
}
|
|
2884
2984
|
interface InspectTemplatesResource {
|
|
2885
|
-
/** Creates an InspectTemplate for reusing frequently used configuration for inspecting content, images, and storage. See https://cloud.google.com/
|
|
2985
|
+
/** Creates an InspectTemplate for reusing frequently used configuration for inspecting content, images, and storage. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
2886
2986
|
create(request: {
|
|
2887
2987
|
/** V1 error format. */
|
|
2888
2988
|
'$.xgafv'?: string;
|
|
@@ -2898,7 +2998,7 @@ declare namespace gapi.client {
|
|
|
2898
2998
|
key?: string;
|
|
2899
2999
|
/** OAuth 2.0 token for the current user. */
|
|
2900
3000
|
oauth_token?: string;
|
|
2901
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
3001
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2902
3002
|
parent: string;
|
|
2903
3003
|
/** Returns response with indentations and line breaks. */
|
|
2904
3004
|
prettyPrint?: boolean;
|
|
@@ -2927,7 +3027,7 @@ declare namespace gapi.client {
|
|
|
2927
3027
|
key?: string;
|
|
2928
3028
|
/** OAuth 2.0 token for the current user. */
|
|
2929
3029
|
oauth_token?: string;
|
|
2930
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
3030
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
2931
3031
|
parent: string;
|
|
2932
3032
|
/** Returns response with indentations and line breaks. */
|
|
2933
3033
|
prettyPrint?: boolean;
|
|
@@ -2940,7 +3040,7 @@ declare namespace gapi.client {
|
|
|
2940
3040
|
},
|
|
2941
3041
|
body: GooglePrivacyDlpV2CreateInspectTemplateRequest
|
|
2942
3042
|
): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
2943
|
-
/** Deletes an InspectTemplate. See https://cloud.google.com/
|
|
3043
|
+
/** Deletes an InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
2944
3044
|
delete(request?: {
|
|
2945
3045
|
/** V1 error format. */
|
|
2946
3046
|
'$.xgafv'?: string;
|
|
@@ -2967,7 +3067,7 @@ declare namespace gapi.client {
|
|
|
2967
3067
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2968
3068
|
uploadType?: string;
|
|
2969
3069
|
}): Request<{}>;
|
|
2970
|
-
/** Gets an InspectTemplate. See https://cloud.google.com/
|
|
3070
|
+
/** Gets an InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
2971
3071
|
get(request?: {
|
|
2972
3072
|
/** V1 error format. */
|
|
2973
3073
|
'$.xgafv'?: string;
|
|
@@ -2994,7 +3094,7 @@ declare namespace gapi.client {
|
|
|
2994
3094
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2995
3095
|
uploadType?: string;
|
|
2996
3096
|
}): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
2997
|
-
/** Lists InspectTemplates. See https://cloud.google.com/
|
|
3097
|
+
/** Lists InspectTemplates. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
2998
3098
|
list(request?: {
|
|
2999
3099
|
/** V1 error format. */
|
|
3000
3100
|
'$.xgafv'?: string;
|
|
@@ -3018,7 +3118,7 @@ declare namespace gapi.client {
|
|
|
3018
3118
|
pageSize?: number;
|
|
3019
3119
|
/** Page token to continue retrieval. Comes from the previous call to `ListInspectTemplates`. */
|
|
3020
3120
|
pageToken?: string;
|
|
3021
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
3121
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3022
3122
|
parent: string;
|
|
3023
3123
|
/** Returns response with indentations and line breaks. */
|
|
3024
3124
|
prettyPrint?: boolean;
|
|
@@ -3029,7 +3129,7 @@ declare namespace gapi.client {
|
|
|
3029
3129
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3030
3130
|
uploadType?: string;
|
|
3031
3131
|
}): Request<GooglePrivacyDlpV2ListInspectTemplatesResponse>;
|
|
3032
|
-
/** Updates the InspectTemplate. See https://cloud.google.com/
|
|
3132
|
+
/** Updates the InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
3033
3133
|
patch(request: {
|
|
3034
3134
|
/** V1 error format. */
|
|
3035
3135
|
'$.xgafv'?: string;
|
|
@@ -3089,7 +3189,7 @@ declare namespace gapi.client {
|
|
|
3089
3189
|
): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
3090
3190
|
}
|
|
3091
3191
|
interface JobTriggersResource {
|
|
3092
|
-
/** Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See https://cloud.google.com/
|
|
3192
|
+
/** Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
3093
3193
|
create(request: {
|
|
3094
3194
|
/** V1 error format. */
|
|
3095
3195
|
'$.xgafv'?: string;
|
|
@@ -3105,7 +3205,7 @@ declare namespace gapi.client {
|
|
|
3105
3205
|
key?: string;
|
|
3106
3206
|
/** OAuth 2.0 token for the current user. */
|
|
3107
3207
|
oauth_token?: string;
|
|
3108
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
3208
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3109
3209
|
parent: string;
|
|
3110
3210
|
/** Returns response with indentations and line breaks. */
|
|
3111
3211
|
prettyPrint?: boolean;
|
|
@@ -3134,7 +3234,7 @@ declare namespace gapi.client {
|
|
|
3134
3234
|
key?: string;
|
|
3135
3235
|
/** OAuth 2.0 token for the current user. */
|
|
3136
3236
|
oauth_token?: string;
|
|
3137
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
3237
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3138
3238
|
parent: string;
|
|
3139
3239
|
/** Returns response with indentations and line breaks. */
|
|
3140
3240
|
prettyPrint?: boolean;
|
|
@@ -3147,7 +3247,7 @@ declare namespace gapi.client {
|
|
|
3147
3247
|
},
|
|
3148
3248
|
body: GooglePrivacyDlpV2CreateJobTriggerRequest
|
|
3149
3249
|
): Request<GooglePrivacyDlpV2JobTrigger>;
|
|
3150
|
-
/** Deletes a job trigger. See https://cloud.google.com/
|
|
3250
|
+
/** Deletes a job trigger. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
3151
3251
|
delete(request?: {
|
|
3152
3252
|
/** V1 error format. */
|
|
3153
3253
|
'$.xgafv'?: string;
|
|
@@ -3174,7 +3274,7 @@ declare namespace gapi.client {
|
|
|
3174
3274
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3175
3275
|
uploadType?: string;
|
|
3176
3276
|
}): Request<{}>;
|
|
3177
|
-
/** Gets a job trigger. See https://cloud.google.com/
|
|
3277
|
+
/** Gets a job trigger. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
3178
3278
|
get(request?: {
|
|
3179
3279
|
/** V1 error format. */
|
|
3180
3280
|
'$.xgafv'?: string;
|
|
@@ -3201,7 +3301,7 @@ declare namespace gapi.client {
|
|
|
3201
3301
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3202
3302
|
uploadType?: string;
|
|
3203
3303
|
}): Request<GooglePrivacyDlpV2JobTrigger>;
|
|
3204
|
-
/** Lists job triggers. See https://cloud.google.com/
|
|
3304
|
+
/** Lists job triggers. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
3205
3305
|
list(request?: {
|
|
3206
3306
|
/** V1 error format. */
|
|
3207
3307
|
'$.xgafv'?: string;
|
|
@@ -3227,7 +3327,7 @@ declare namespace gapi.client {
|
|
|
3227
3327
|
pageSize?: number;
|
|
3228
3328
|
/** Page token to continue retrieval. Comes from the previous call to ListJobTriggers. `order_by` field must not change for subsequent calls. */
|
|
3229
3329
|
pageToken?: string;
|
|
3230
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
3330
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3231
3331
|
parent: string;
|
|
3232
3332
|
/** Returns response with indentations and line breaks. */
|
|
3233
3333
|
prettyPrint?: boolean;
|
|
@@ -3240,7 +3340,7 @@ declare namespace gapi.client {
|
|
|
3240
3340
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3241
3341
|
uploadType?: string;
|
|
3242
3342
|
}): Request<GooglePrivacyDlpV2ListJobTriggersResponse>;
|
|
3243
|
-
/** Updates a job trigger. See https://cloud.google.com/
|
|
3343
|
+
/** Updates a job trigger. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
3244
3344
|
patch(request: {
|
|
3245
3345
|
/** V1 error format. */
|
|
3246
3346
|
'$.xgafv'?: string;
|
|
@@ -3299,8 +3399,72 @@ declare namespace gapi.client {
|
|
|
3299
3399
|
body: GooglePrivacyDlpV2UpdateJobTriggerRequest
|
|
3300
3400
|
): Request<GooglePrivacyDlpV2JobTrigger>;
|
|
3301
3401
|
}
|
|
3402
|
+
interface ProjectDataProfilesResource {
|
|
3403
|
+
/** Gets a project data profile. */
|
|
3404
|
+
get(request?: {
|
|
3405
|
+
/** V1 error format. */
|
|
3406
|
+
'$.xgafv'?: string;
|
|
3407
|
+
/** OAuth access token. */
|
|
3408
|
+
access_token?: string;
|
|
3409
|
+
/** Data format for response. */
|
|
3410
|
+
alt?: string;
|
|
3411
|
+
/** JSONP */
|
|
3412
|
+
callback?: string;
|
|
3413
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3414
|
+
fields?: string;
|
|
3415
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3416
|
+
key?: string;
|
|
3417
|
+
/** Required. Resource name, for example `organizations/12345/locations/us/projectDataProfiles/53234423`. */
|
|
3418
|
+
name: string;
|
|
3419
|
+
/** OAuth 2.0 token for the current user. */
|
|
3420
|
+
oauth_token?: string;
|
|
3421
|
+
/** Returns response with indentations and line breaks. */
|
|
3422
|
+
prettyPrint?: boolean;
|
|
3423
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3424
|
+
quotaUser?: string;
|
|
3425
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3426
|
+
upload_protocol?: string;
|
|
3427
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3428
|
+
uploadType?: string;
|
|
3429
|
+
}): Request<GooglePrivacyDlpV2ProjectDataProfile>;
|
|
3430
|
+
/** Lists data profiles for an organization. */
|
|
3431
|
+
list(request?: {
|
|
3432
|
+
/** V1 error format. */
|
|
3433
|
+
'$.xgafv'?: string;
|
|
3434
|
+
/** OAuth access token. */
|
|
3435
|
+
access_token?: string;
|
|
3436
|
+
/** Data format for response. */
|
|
3437
|
+
alt?: string;
|
|
3438
|
+
/** JSONP */
|
|
3439
|
+
callback?: string;
|
|
3440
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3441
|
+
fields?: string;
|
|
3442
|
+
/** Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` or `!=`. Examples: * project_id = 12345 AND status_code = 1 * project_id = 12345 AND sensitivity_level = HIGH The length of this field should be no more than 500 characters. */
|
|
3443
|
+
filter?: string;
|
|
3444
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3445
|
+
key?: string;
|
|
3446
|
+
/** OAuth 2.0 token for the current user. */
|
|
3447
|
+
oauth_token?: string;
|
|
3448
|
+
/** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id` * `sensitivity_level desc` Supported fields are: - `project_id`: GCP project ID - `sensitivity_level`: How sensitive the data in a project is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
|
|
3449
|
+
orderBy?: string;
|
|
3450
|
+
/** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
|
|
3451
|
+
pageSize?: number;
|
|
3452
|
+
/** Page token to continue retrieval. */
|
|
3453
|
+
pageToken?: string;
|
|
3454
|
+
/** Required. organizations/{org_id}/locations/{loc_id} */
|
|
3455
|
+
parent: string;
|
|
3456
|
+
/** Returns response with indentations and line breaks. */
|
|
3457
|
+
prettyPrint?: boolean;
|
|
3458
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3459
|
+
quotaUser?: string;
|
|
3460
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3461
|
+
upload_protocol?: string;
|
|
3462
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3463
|
+
uploadType?: string;
|
|
3464
|
+
}): Request<GooglePrivacyDlpV2ListProjectDataProfilesResponse>;
|
|
3465
|
+
}
|
|
3302
3466
|
interface StoredInfoTypesResource {
|
|
3303
|
-
/** Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/
|
|
3467
|
+
/** Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3304
3468
|
create(request: {
|
|
3305
3469
|
/** V1 error format. */
|
|
3306
3470
|
'$.xgafv'?: string;
|
|
@@ -3316,7 +3480,7 @@ declare namespace gapi.client {
|
|
|
3316
3480
|
key?: string;
|
|
3317
3481
|
/** OAuth 2.0 token for the current user. */
|
|
3318
3482
|
oauth_token?: string;
|
|
3319
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
3483
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3320
3484
|
parent: string;
|
|
3321
3485
|
/** Returns response with indentations and line breaks. */
|
|
3322
3486
|
prettyPrint?: boolean;
|
|
@@ -3345,7 +3509,7 @@ declare namespace gapi.client {
|
|
|
3345
3509
|
key?: string;
|
|
3346
3510
|
/** OAuth 2.0 token for the current user. */
|
|
3347
3511
|
oauth_token?: string;
|
|
3348
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
3512
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3349
3513
|
parent: string;
|
|
3350
3514
|
/** Returns response with indentations and line breaks. */
|
|
3351
3515
|
prettyPrint?: boolean;
|
|
@@ -3358,7 +3522,7 @@ declare namespace gapi.client {
|
|
|
3358
3522
|
},
|
|
3359
3523
|
body: GooglePrivacyDlpV2CreateStoredInfoTypeRequest
|
|
3360
3524
|
): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
3361
|
-
/** Deletes a stored infoType. See https://cloud.google.com/
|
|
3525
|
+
/** Deletes a stored infoType. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3362
3526
|
delete(request?: {
|
|
3363
3527
|
/** V1 error format. */
|
|
3364
3528
|
'$.xgafv'?: string;
|
|
@@ -3385,7 +3549,7 @@ declare namespace gapi.client {
|
|
|
3385
3549
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3386
3550
|
uploadType?: string;
|
|
3387
3551
|
}): Request<{}>;
|
|
3388
|
-
/** Gets a stored infoType. See https://cloud.google.com/
|
|
3552
|
+
/** Gets a stored infoType. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3389
3553
|
get(request?: {
|
|
3390
3554
|
/** V1 error format. */
|
|
3391
3555
|
'$.xgafv'?: string;
|
|
@@ -3412,7 +3576,7 @@ declare namespace gapi.client {
|
|
|
3412
3576
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3413
3577
|
uploadType?: string;
|
|
3414
3578
|
}): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
3415
|
-
/** Lists stored infoTypes. See https://cloud.google.com/
|
|
3579
|
+
/** Lists stored infoTypes. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3416
3580
|
list(request?: {
|
|
3417
3581
|
/** V1 error format. */
|
|
3418
3582
|
'$.xgafv'?: string;
|
|
@@ -3436,7 +3600,7 @@ declare namespace gapi.client {
|
|
|
3436
3600
|
pageSize?: number;
|
|
3437
3601
|
/** Page token to continue retrieval. Comes from the previous call to `ListStoredInfoTypes`. */
|
|
3438
3602
|
pageToken?: string;
|
|
3439
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
3603
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3440
3604
|
parent: string;
|
|
3441
3605
|
/** Returns response with indentations and line breaks. */
|
|
3442
3606
|
prettyPrint?: boolean;
|
|
@@ -3447,7 +3611,7 @@ declare namespace gapi.client {
|
|
|
3447
3611
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3448
3612
|
uploadType?: string;
|
|
3449
3613
|
}): Request<GooglePrivacyDlpV2ListStoredInfoTypesResponse>;
|
|
3450
|
-
/** Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See https://cloud.google.com/
|
|
3614
|
+
/** Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3451
3615
|
patch(request: {
|
|
3452
3616
|
/** V1 error format. */
|
|
3453
3617
|
'$.xgafv'?: string;
|
|
@@ -3506,16 +3670,83 @@ declare namespace gapi.client {
|
|
|
3506
3670
|
body: GooglePrivacyDlpV2UpdateStoredInfoTypeRequest
|
|
3507
3671
|
): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
3508
3672
|
}
|
|
3673
|
+
interface TableDataProfilesResource {
|
|
3674
|
+
/** Gets a table data profile. */
|
|
3675
|
+
get(request?: {
|
|
3676
|
+
/** V1 error format. */
|
|
3677
|
+
'$.xgafv'?: string;
|
|
3678
|
+
/** OAuth access token. */
|
|
3679
|
+
access_token?: string;
|
|
3680
|
+
/** Data format for response. */
|
|
3681
|
+
alt?: string;
|
|
3682
|
+
/** JSONP */
|
|
3683
|
+
callback?: string;
|
|
3684
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3685
|
+
fields?: string;
|
|
3686
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3687
|
+
key?: string;
|
|
3688
|
+
/** Required. Resource name, for example `organizations/12345/locations/us/tableDataProfiles/53234423`. */
|
|
3689
|
+
name: string;
|
|
3690
|
+
/** OAuth 2.0 token for the current user. */
|
|
3691
|
+
oauth_token?: string;
|
|
3692
|
+
/** Returns response with indentations and line breaks. */
|
|
3693
|
+
prettyPrint?: boolean;
|
|
3694
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3695
|
+
quotaUser?: string;
|
|
3696
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3697
|
+
upload_protocol?: string;
|
|
3698
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3699
|
+
uploadType?: string;
|
|
3700
|
+
}): Request<GooglePrivacyDlpV2TableDataProfile>;
|
|
3701
|
+
/** Lists data profiles for an organization. */
|
|
3702
|
+
list(request?: {
|
|
3703
|
+
/** V1 error format. */
|
|
3704
|
+
'$.xgafv'?: string;
|
|
3705
|
+
/** OAuth access token. */
|
|
3706
|
+
access_token?: string;
|
|
3707
|
+
/** Data format for response. */
|
|
3708
|
+
alt?: string;
|
|
3709
|
+
/** JSONP */
|
|
3710
|
+
callback?: string;
|
|
3711
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3712
|
+
fields?: string;
|
|
3713
|
+
/** Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `project_id` - The GCP project ID. - `dataset_id` - The BigQuery dataset ID. - `table_id` - The ID of the BigQuery table. - `sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW - `resource_visibility`: PUBLIC|RESTRICTED - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` or `!=`. Examples: * project_id = 12345 AND status_code = 1 * project_id = 12345 AND sensitivity_level = HIGH * project_id = 12345 AND resource_visibility = PUBLIC The length of this field should be no more than 500 characters. */
|
|
3714
|
+
filter?: string;
|
|
3715
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3716
|
+
key?: string;
|
|
3717
|
+
/** OAuth 2.0 token for the current user. */
|
|
3718
|
+
oauth_token?: string;
|
|
3719
|
+
/** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The GCP project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `row_count`: Number of rows in this resource. */
|
|
3720
|
+
orderBy?: string;
|
|
3721
|
+
/** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
|
|
3722
|
+
pageSize?: number;
|
|
3723
|
+
/** Page token to continue retrieval. */
|
|
3724
|
+
pageToken?: string;
|
|
3725
|
+
/** Required. Resource name of the organization or project, for example `organizations/433245324/locations/europe` or `projects/project-id/locations/asia`. */
|
|
3726
|
+
parent: string;
|
|
3727
|
+
/** Returns response with indentations and line breaks. */
|
|
3728
|
+
prettyPrint?: boolean;
|
|
3729
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3730
|
+
quotaUser?: string;
|
|
3731
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3732
|
+
upload_protocol?: string;
|
|
3733
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3734
|
+
uploadType?: string;
|
|
3735
|
+
}): Request<GooglePrivacyDlpV2ListTableDataProfilesResponse>;
|
|
3736
|
+
}
|
|
3509
3737
|
interface LocationsResource {
|
|
3738
|
+
columnDataProfiles: ColumnDataProfilesResource;
|
|
3510
3739
|
deidentifyTemplates: DeidentifyTemplatesResource;
|
|
3511
3740
|
discoveryConfigs: DiscoveryConfigsResource;
|
|
3512
3741
|
dlpJobs: DlpJobsResource;
|
|
3513
3742
|
inspectTemplates: InspectTemplatesResource;
|
|
3514
3743
|
jobTriggers: JobTriggersResource;
|
|
3744
|
+
projectDataProfiles: ProjectDataProfilesResource;
|
|
3515
3745
|
storedInfoTypes: StoredInfoTypesResource;
|
|
3746
|
+
tableDataProfiles: TableDataProfilesResource;
|
|
3516
3747
|
}
|
|
3517
3748
|
interface StoredInfoTypesResource {
|
|
3518
|
-
/** Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/
|
|
3749
|
+
/** Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3519
3750
|
create(request: {
|
|
3520
3751
|
/** V1 error format. */
|
|
3521
3752
|
'$.xgafv'?: string;
|
|
@@ -3531,7 +3762,7 @@ declare namespace gapi.client {
|
|
|
3531
3762
|
key?: string;
|
|
3532
3763
|
/** OAuth 2.0 token for the current user. */
|
|
3533
3764
|
oauth_token?: string;
|
|
3534
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
3765
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3535
3766
|
parent: string;
|
|
3536
3767
|
/** Returns response with indentations and line breaks. */
|
|
3537
3768
|
prettyPrint?: boolean;
|
|
@@ -3560,7 +3791,7 @@ declare namespace gapi.client {
|
|
|
3560
3791
|
key?: string;
|
|
3561
3792
|
/** OAuth 2.0 token for the current user. */
|
|
3562
3793
|
oauth_token?: string;
|
|
3563
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
3794
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3564
3795
|
parent: string;
|
|
3565
3796
|
/** Returns response with indentations and line breaks. */
|
|
3566
3797
|
prettyPrint?: boolean;
|
|
@@ -3573,7 +3804,7 @@ declare namespace gapi.client {
|
|
|
3573
3804
|
},
|
|
3574
3805
|
body: GooglePrivacyDlpV2CreateStoredInfoTypeRequest
|
|
3575
3806
|
): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
3576
|
-
/** Deletes a stored infoType. See https://cloud.google.com/
|
|
3807
|
+
/** Deletes a stored infoType. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3577
3808
|
delete(request?: {
|
|
3578
3809
|
/** V1 error format. */
|
|
3579
3810
|
'$.xgafv'?: string;
|
|
@@ -3600,7 +3831,7 @@ declare namespace gapi.client {
|
|
|
3600
3831
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3601
3832
|
uploadType?: string;
|
|
3602
3833
|
}): Request<{}>;
|
|
3603
|
-
/** Gets a stored infoType. See https://cloud.google.com/
|
|
3834
|
+
/** Gets a stored infoType. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3604
3835
|
get(request?: {
|
|
3605
3836
|
/** V1 error format. */
|
|
3606
3837
|
'$.xgafv'?: string;
|
|
@@ -3627,7 +3858,7 @@ declare namespace gapi.client {
|
|
|
3627
3858
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3628
3859
|
uploadType?: string;
|
|
3629
3860
|
}): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
3630
|
-
/** Lists stored infoTypes. See https://cloud.google.com/
|
|
3861
|
+
/** Lists stored infoTypes. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3631
3862
|
list(request?: {
|
|
3632
3863
|
/** V1 error format. */
|
|
3633
3864
|
'$.xgafv'?: string;
|
|
@@ -3651,7 +3882,7 @@ declare namespace gapi.client {
|
|
|
3651
3882
|
pageSize?: number;
|
|
3652
3883
|
/** Page token to continue retrieval. Comes from the previous call to `ListStoredInfoTypes`. */
|
|
3653
3884
|
pageToken?: string;
|
|
3654
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
3885
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3655
3886
|
parent: string;
|
|
3656
3887
|
/** Returns response with indentations and line breaks. */
|
|
3657
3888
|
prettyPrint?: boolean;
|
|
@@ -3662,7 +3893,7 @@ declare namespace gapi.client {
|
|
|
3662
3893
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3663
3894
|
uploadType?: string;
|
|
3664
3895
|
}): Request<GooglePrivacyDlpV2ListStoredInfoTypesResponse>;
|
|
3665
|
-
/** Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See https://cloud.google.com/
|
|
3896
|
+
/** Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
3666
3897
|
patch(request: {
|
|
3667
3898
|
/** V1 error format. */
|
|
3668
3899
|
'$.xgafv'?: string;
|
|
@@ -3728,7 +3959,7 @@ declare namespace gapi.client {
|
|
|
3728
3959
|
storedInfoTypes: StoredInfoTypesResource;
|
|
3729
3960
|
}
|
|
3730
3961
|
interface ContentResource {
|
|
3731
|
-
/** De-identifies potentially sensitive info from a ContentItem. This method has limits on input size and output size. See https://cloud.google.com/
|
|
3962
|
+
/** De-identifies potentially sensitive info from a ContentItem. This method has limits on input size and output size. See https://cloud.google.com/sensitive-data-protection/docs/deidentify-sensitive-data to learn more. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. */
|
|
3732
3963
|
deidentify(request: {
|
|
3733
3964
|
/** V1 error format. */
|
|
3734
3965
|
'$.xgafv'?: string;
|
|
@@ -3744,7 +3975,7 @@ declare namespace gapi.client {
|
|
|
3744
3975
|
key?: string;
|
|
3745
3976
|
/** OAuth 2.0 token for the current user. */
|
|
3746
3977
|
oauth_token?: string;
|
|
3747
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
3978
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3748
3979
|
parent: string;
|
|
3749
3980
|
/** Returns response with indentations and line breaks. */
|
|
3750
3981
|
prettyPrint?: boolean;
|
|
@@ -3773,7 +4004,7 @@ declare namespace gapi.client {
|
|
|
3773
4004
|
key?: string;
|
|
3774
4005
|
/** OAuth 2.0 token for the current user. */
|
|
3775
4006
|
oauth_token?: string;
|
|
3776
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4007
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3777
4008
|
parent: string;
|
|
3778
4009
|
/** Returns response with indentations and line breaks. */
|
|
3779
4010
|
prettyPrint?: boolean;
|
|
@@ -3786,7 +4017,7 @@ declare namespace gapi.client {
|
|
|
3786
4017
|
},
|
|
3787
4018
|
body: GooglePrivacyDlpV2DeidentifyContentRequest
|
|
3788
4019
|
): Request<GooglePrivacyDlpV2DeidentifyContentResponse>;
|
|
3789
|
-
/** Finds potentially sensitive info in content. This method has limits on input size, processing time, and output size. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. For how to guides, see https://cloud.google.com/
|
|
4020
|
+
/** Finds potentially sensitive info in content. This method has limits on input size, processing time, and output size. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. For how to guides, see https://cloud.google.com/sensitive-data-protection/docs/inspecting-images and https://cloud.google.com/sensitive-data-protection/docs/inspecting-text, */
|
|
3790
4021
|
inspect(request: {
|
|
3791
4022
|
/** V1 error format. */
|
|
3792
4023
|
'$.xgafv'?: string;
|
|
@@ -3802,7 +4033,7 @@ declare namespace gapi.client {
|
|
|
3802
4033
|
key?: string;
|
|
3803
4034
|
/** OAuth 2.0 token for the current user. */
|
|
3804
4035
|
oauth_token?: string;
|
|
3805
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4036
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3806
4037
|
parent: string;
|
|
3807
4038
|
/** Returns response with indentations and line breaks. */
|
|
3808
4039
|
prettyPrint?: boolean;
|
|
@@ -3831,7 +4062,7 @@ declare namespace gapi.client {
|
|
|
3831
4062
|
key?: string;
|
|
3832
4063
|
/** OAuth 2.0 token for the current user. */
|
|
3833
4064
|
oauth_token?: string;
|
|
3834
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4065
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3835
4066
|
parent: string;
|
|
3836
4067
|
/** Returns response with indentations and line breaks. */
|
|
3837
4068
|
prettyPrint?: boolean;
|
|
@@ -3844,7 +4075,7 @@ declare namespace gapi.client {
|
|
|
3844
4075
|
},
|
|
3845
4076
|
body: GooglePrivacyDlpV2InspectContentRequest
|
|
3846
4077
|
): Request<GooglePrivacyDlpV2InspectContentResponse>;
|
|
3847
|
-
/** Re-identifies content that has been de-identified. See https://cloud.google.com/
|
|
4078
|
+
/** Re-identifies content that has been de-identified. See https://cloud.google.com/sensitive-data-protection/docs/pseudonymization#re-identification_in_free_text_code_example to learn more. */
|
|
3848
4079
|
reidentify(request: {
|
|
3849
4080
|
/** V1 error format. */
|
|
3850
4081
|
'$.xgafv'?: string;
|
|
@@ -3860,7 +4091,7 @@ declare namespace gapi.client {
|
|
|
3860
4091
|
key?: string;
|
|
3861
4092
|
/** OAuth 2.0 token for the current user. */
|
|
3862
4093
|
oauth_token?: string;
|
|
3863
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4094
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3864
4095
|
parent: string;
|
|
3865
4096
|
/** Returns response with indentations and line breaks. */
|
|
3866
4097
|
prettyPrint?: boolean;
|
|
@@ -3889,7 +4120,7 @@ declare namespace gapi.client {
|
|
|
3889
4120
|
key?: string;
|
|
3890
4121
|
/** OAuth 2.0 token for the current user. */
|
|
3891
4122
|
oauth_token?: string;
|
|
3892
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4123
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3893
4124
|
parent: string;
|
|
3894
4125
|
/** Returns response with indentations and line breaks. */
|
|
3895
4126
|
prettyPrint?: boolean;
|
|
@@ -3904,7 +4135,7 @@ declare namespace gapi.client {
|
|
|
3904
4135
|
): Request<GooglePrivacyDlpV2ReidentifyContentResponse>;
|
|
3905
4136
|
}
|
|
3906
4137
|
interface DeidentifyTemplatesResource {
|
|
3907
|
-
/** Creates a DeidentifyTemplate for reusing frequently used configuration for de-identifying content, images, and storage. See https://cloud.google.com/
|
|
4138
|
+
/** Creates a DeidentifyTemplate for reusing frequently used configuration for de-identifying content, images, and storage. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
3908
4139
|
create(request: {
|
|
3909
4140
|
/** V1 error format. */
|
|
3910
4141
|
'$.xgafv'?: string;
|
|
@@ -3920,7 +4151,7 @@ declare namespace gapi.client {
|
|
|
3920
4151
|
key?: string;
|
|
3921
4152
|
/** OAuth 2.0 token for the current user. */
|
|
3922
4153
|
oauth_token?: string;
|
|
3923
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
4154
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3924
4155
|
parent: string;
|
|
3925
4156
|
/** Returns response with indentations and line breaks. */
|
|
3926
4157
|
prettyPrint?: boolean;
|
|
@@ -3949,7 +4180,7 @@ declare namespace gapi.client {
|
|
|
3949
4180
|
key?: string;
|
|
3950
4181
|
/** OAuth 2.0 token for the current user. */
|
|
3951
4182
|
oauth_token?: string;
|
|
3952
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
4183
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
3953
4184
|
parent: string;
|
|
3954
4185
|
/** Returns response with indentations and line breaks. */
|
|
3955
4186
|
prettyPrint?: boolean;
|
|
@@ -3962,7 +4193,7 @@ declare namespace gapi.client {
|
|
|
3962
4193
|
},
|
|
3963
4194
|
body: GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
|
|
3964
4195
|
): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
3965
|
-
/** Deletes a DeidentifyTemplate. See https://cloud.google.com/
|
|
4196
|
+
/** Deletes a DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
3966
4197
|
delete(request?: {
|
|
3967
4198
|
/** V1 error format. */
|
|
3968
4199
|
'$.xgafv'?: string;
|
|
@@ -3989,7 +4220,7 @@ declare namespace gapi.client {
|
|
|
3989
4220
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3990
4221
|
uploadType?: string;
|
|
3991
4222
|
}): Request<{}>;
|
|
3992
|
-
/** Gets a DeidentifyTemplate. See https://cloud.google.com/
|
|
4223
|
+
/** Gets a DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
3993
4224
|
get(request?: {
|
|
3994
4225
|
/** V1 error format. */
|
|
3995
4226
|
'$.xgafv'?: string;
|
|
@@ -4016,7 +4247,7 @@ declare namespace gapi.client {
|
|
|
4016
4247
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4017
4248
|
uploadType?: string;
|
|
4018
4249
|
}): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
4019
|
-
/** Lists DeidentifyTemplates. See https://cloud.google.com/
|
|
4250
|
+
/** Lists DeidentifyTemplates. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
4020
4251
|
list(request?: {
|
|
4021
4252
|
/** V1 error format. */
|
|
4022
4253
|
'$.xgafv'?: string;
|
|
@@ -4040,7 +4271,7 @@ declare namespace gapi.client {
|
|
|
4040
4271
|
pageSize?: number;
|
|
4041
4272
|
/** Page token to continue retrieval. Comes from the previous call to `ListDeidentifyTemplates`. */
|
|
4042
4273
|
pageToken?: string;
|
|
4043
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
4274
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4044
4275
|
parent: string;
|
|
4045
4276
|
/** Returns response with indentations and line breaks. */
|
|
4046
4277
|
prettyPrint?: boolean;
|
|
@@ -4051,7 +4282,7 @@ declare namespace gapi.client {
|
|
|
4051
4282
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4052
4283
|
uploadType?: string;
|
|
4053
4284
|
}): Request<GooglePrivacyDlpV2ListDeidentifyTemplatesResponse>;
|
|
4054
|
-
/** Updates the DeidentifyTemplate. See https://cloud.google.com/
|
|
4285
|
+
/** Updates the DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
4055
4286
|
patch(request: {
|
|
4056
4287
|
/** V1 error format. */
|
|
4057
4288
|
'$.xgafv'?: string;
|
|
@@ -4111,7 +4342,7 @@ declare namespace gapi.client {
|
|
|
4111
4342
|
): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
4112
4343
|
}
|
|
4113
4344
|
interface DlpJobsResource {
|
|
4114
|
-
/** Starts asynchronous cancellation on a long-running DlpJob. The server makes a best effort to cancel the DlpJob, but success is not guaranteed. See https://cloud.google.com/
|
|
4345
|
+
/** Starts asynchronous cancellation on a long-running DlpJob. The server makes a best effort to cancel the DlpJob, but success is not guaranteed. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. */
|
|
4115
4346
|
cancel(request: {
|
|
4116
4347
|
/** V1 error format. */
|
|
4117
4348
|
'$.xgafv'?: string;
|
|
@@ -4169,7 +4400,7 @@ declare namespace gapi.client {
|
|
|
4169
4400
|
},
|
|
4170
4401
|
body: GooglePrivacyDlpV2CancelDlpJobRequest
|
|
4171
4402
|
): Request<{}>;
|
|
4172
|
-
/** Creates a new job to inspect storage or calculate risk metrics. See https://cloud.google.com/
|
|
4403
|
+
/** Creates a new job to inspect storage or calculate risk metrics. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. When no InfoTypes or CustomInfoTypes are specified in inspect jobs, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. */
|
|
4173
4404
|
create(request: {
|
|
4174
4405
|
/** V1 error format. */
|
|
4175
4406
|
'$.xgafv'?: string;
|
|
@@ -4185,7 +4416,7 @@ declare namespace gapi.client {
|
|
|
4185
4416
|
key?: string;
|
|
4186
4417
|
/** OAuth 2.0 token for the current user. */
|
|
4187
4418
|
oauth_token?: string;
|
|
4188
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4419
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4189
4420
|
parent: string;
|
|
4190
4421
|
/** Returns response with indentations and line breaks. */
|
|
4191
4422
|
prettyPrint?: boolean;
|
|
@@ -4214,7 +4445,7 @@ declare namespace gapi.client {
|
|
|
4214
4445
|
key?: string;
|
|
4215
4446
|
/** OAuth 2.0 token for the current user. */
|
|
4216
4447
|
oauth_token?: string;
|
|
4217
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4448
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4218
4449
|
parent: string;
|
|
4219
4450
|
/** Returns response with indentations and line breaks. */
|
|
4220
4451
|
prettyPrint?: boolean;
|
|
@@ -4227,7 +4458,7 @@ declare namespace gapi.client {
|
|
|
4227
4458
|
},
|
|
4228
4459
|
body: GooglePrivacyDlpV2CreateDlpJobRequest
|
|
4229
4460
|
): Request<GooglePrivacyDlpV2DlpJob>;
|
|
4230
|
-
/** Deletes a long-running DlpJob. This method indicates that the client is no longer interested in the DlpJob result. The job will be canceled if possible. See https://cloud.google.com/
|
|
4461
|
+
/** Deletes a long-running DlpJob. This method indicates that the client is no longer interested in the DlpJob result. The job will be canceled if possible. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. */
|
|
4231
4462
|
delete(request?: {
|
|
4232
4463
|
/** V1 error format. */
|
|
4233
4464
|
'$.xgafv'?: string;
|
|
@@ -4254,7 +4485,7 @@ declare namespace gapi.client {
|
|
|
4254
4485
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4255
4486
|
uploadType?: string;
|
|
4256
4487
|
}): Request<{}>;
|
|
4257
|
-
/** Gets the latest state of a long-running DlpJob. See https://cloud.google.com/
|
|
4488
|
+
/** Gets the latest state of a long-running DlpJob. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. */
|
|
4258
4489
|
get(request?: {
|
|
4259
4490
|
/** V1 error format. */
|
|
4260
4491
|
'$.xgafv'?: string;
|
|
@@ -4281,7 +4512,7 @@ declare namespace gapi.client {
|
|
|
4281
4512
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4282
4513
|
uploadType?: string;
|
|
4283
4514
|
}): Request<GooglePrivacyDlpV2DlpJob>;
|
|
4284
|
-
/** Lists DlpJobs that match the specified filter in the request. See https://cloud.google.com/
|
|
4515
|
+
/** Lists DlpJobs that match the specified filter in the request. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. */
|
|
4285
4516
|
list(request?: {
|
|
4286
4517
|
/** V1 error format. */
|
|
4287
4518
|
'$.xgafv'?: string;
|
|
@@ -4307,7 +4538,7 @@ declare namespace gapi.client {
|
|
|
4307
4538
|
pageSize?: number;
|
|
4308
4539
|
/** The standard list page token. */
|
|
4309
4540
|
pageToken?: string;
|
|
4310
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4541
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4311
4542
|
parent: string;
|
|
4312
4543
|
/** Returns response with indentations and line breaks. */
|
|
4313
4544
|
prettyPrint?: boolean;
|
|
@@ -4322,7 +4553,7 @@ declare namespace gapi.client {
|
|
|
4322
4553
|
}): Request<GooglePrivacyDlpV2ListDlpJobsResponse>;
|
|
4323
4554
|
}
|
|
4324
4555
|
interface ImageResource {
|
|
4325
|
-
/** Redacts potentially sensitive info from an image. This method has limits on input size, processing time, and output size. See https://cloud.google.com/
|
|
4556
|
+
/** Redacts potentially sensitive info from an image. This method has limits on input size, processing time, and output size. See https://cloud.google.com/sensitive-data-protection/docs/redacting-sensitive-data-images to learn more. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. */
|
|
4326
4557
|
redact(request: {
|
|
4327
4558
|
/** V1 error format. */
|
|
4328
4559
|
'$.xgafv'?: string;
|
|
@@ -4338,7 +4569,7 @@ declare namespace gapi.client {
|
|
|
4338
4569
|
key?: string;
|
|
4339
4570
|
/** OAuth 2.0 token for the current user. */
|
|
4340
4571
|
oauth_token?: string;
|
|
4341
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4572
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4342
4573
|
parent: string;
|
|
4343
4574
|
/** Returns response with indentations and line breaks. */
|
|
4344
4575
|
prettyPrint?: boolean;
|
|
@@ -4367,7 +4598,7 @@ declare namespace gapi.client {
|
|
|
4367
4598
|
key?: string;
|
|
4368
4599
|
/** OAuth 2.0 token for the current user. */
|
|
4369
4600
|
oauth_token?: string;
|
|
4370
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4601
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4371
4602
|
parent: string;
|
|
4372
4603
|
/** Returns response with indentations and line breaks. */
|
|
4373
4604
|
prettyPrint?: boolean;
|
|
@@ -4382,7 +4613,7 @@ declare namespace gapi.client {
|
|
|
4382
4613
|
): Request<GooglePrivacyDlpV2RedactImageResponse>;
|
|
4383
4614
|
}
|
|
4384
4615
|
interface InspectTemplatesResource {
|
|
4385
|
-
/** Creates an InspectTemplate for reusing frequently used configuration for inspecting content, images, and storage. See https://cloud.google.com/
|
|
4616
|
+
/** Creates an InspectTemplate for reusing frequently used configuration for inspecting content, images, and storage. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
4386
4617
|
create(request: {
|
|
4387
4618
|
/** V1 error format. */
|
|
4388
4619
|
'$.xgafv'?: string;
|
|
@@ -4398,7 +4629,7 @@ declare namespace gapi.client {
|
|
|
4398
4629
|
key?: string;
|
|
4399
4630
|
/** OAuth 2.0 token for the current user. */
|
|
4400
4631
|
oauth_token?: string;
|
|
4401
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
4632
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4402
4633
|
parent: string;
|
|
4403
4634
|
/** Returns response with indentations and line breaks. */
|
|
4404
4635
|
prettyPrint?: boolean;
|
|
@@ -4427,7 +4658,7 @@ declare namespace gapi.client {
|
|
|
4427
4658
|
key?: string;
|
|
4428
4659
|
/** OAuth 2.0 token for the current user. */
|
|
4429
4660
|
oauth_token?: string;
|
|
4430
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
4661
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4431
4662
|
parent: string;
|
|
4432
4663
|
/** Returns response with indentations and line breaks. */
|
|
4433
4664
|
prettyPrint?: boolean;
|
|
@@ -4440,7 +4671,7 @@ declare namespace gapi.client {
|
|
|
4440
4671
|
},
|
|
4441
4672
|
body: GooglePrivacyDlpV2CreateInspectTemplateRequest
|
|
4442
4673
|
): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
4443
|
-
/** Deletes an InspectTemplate. See https://cloud.google.com/
|
|
4674
|
+
/** Deletes an InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
4444
4675
|
delete(request?: {
|
|
4445
4676
|
/** V1 error format. */
|
|
4446
4677
|
'$.xgafv'?: string;
|
|
@@ -4467,7 +4698,7 @@ declare namespace gapi.client {
|
|
|
4467
4698
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4468
4699
|
uploadType?: string;
|
|
4469
4700
|
}): Request<{}>;
|
|
4470
|
-
/** Gets an InspectTemplate. See https://cloud.google.com/
|
|
4701
|
+
/** Gets an InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
4471
4702
|
get(request?: {
|
|
4472
4703
|
/** V1 error format. */
|
|
4473
4704
|
'$.xgafv'?: string;
|
|
@@ -4494,7 +4725,7 @@ declare namespace gapi.client {
|
|
|
4494
4725
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4495
4726
|
uploadType?: string;
|
|
4496
4727
|
}): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
4497
|
-
/** Lists InspectTemplates. See https://cloud.google.com/
|
|
4728
|
+
/** Lists InspectTemplates. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
4498
4729
|
list(request?: {
|
|
4499
4730
|
/** V1 error format. */
|
|
4500
4731
|
'$.xgafv'?: string;
|
|
@@ -4518,7 +4749,7 @@ declare namespace gapi.client {
|
|
|
4518
4749
|
pageSize?: number;
|
|
4519
4750
|
/** Page token to continue retrieval. Comes from the previous call to `ListInspectTemplates`. */
|
|
4520
4751
|
pageToken?: string;
|
|
4521
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
4752
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4522
4753
|
parent: string;
|
|
4523
4754
|
/** Returns response with indentations and line breaks. */
|
|
4524
4755
|
prettyPrint?: boolean;
|
|
@@ -4529,7 +4760,7 @@ declare namespace gapi.client {
|
|
|
4529
4760
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4530
4761
|
uploadType?: string;
|
|
4531
4762
|
}): Request<GooglePrivacyDlpV2ListInspectTemplatesResponse>;
|
|
4532
|
-
/** Updates the InspectTemplate. See https://cloud.google.com/
|
|
4763
|
+
/** Updates the InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
4533
4764
|
patch(request: {
|
|
4534
4765
|
/** V1 error format. */
|
|
4535
4766
|
'$.xgafv'?: string;
|
|
@@ -4647,7 +4878,7 @@ declare namespace gapi.client {
|
|
|
4647
4878
|
},
|
|
4648
4879
|
body: GooglePrivacyDlpV2ActivateJobTriggerRequest
|
|
4649
4880
|
): Request<GooglePrivacyDlpV2DlpJob>;
|
|
4650
|
-
/** Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See https://cloud.google.com/
|
|
4881
|
+
/** Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
4651
4882
|
create(request: {
|
|
4652
4883
|
/** V1 error format. */
|
|
4653
4884
|
'$.xgafv'?: string;
|
|
@@ -4663,7 +4894,7 @@ declare namespace gapi.client {
|
|
|
4663
4894
|
key?: string;
|
|
4664
4895
|
/** OAuth 2.0 token for the current user. */
|
|
4665
4896
|
oauth_token?: string;
|
|
4666
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4897
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4667
4898
|
parent: string;
|
|
4668
4899
|
/** Returns response with indentations and line breaks. */
|
|
4669
4900
|
prettyPrint?: boolean;
|
|
@@ -4692,7 +4923,7 @@ declare namespace gapi.client {
|
|
|
4692
4923
|
key?: string;
|
|
4693
4924
|
/** OAuth 2.0 token for the current user. */
|
|
4694
4925
|
oauth_token?: string;
|
|
4695
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
4926
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4696
4927
|
parent: string;
|
|
4697
4928
|
/** Returns response with indentations and line breaks. */
|
|
4698
4929
|
prettyPrint?: boolean;
|
|
@@ -4705,7 +4936,7 @@ declare namespace gapi.client {
|
|
|
4705
4936
|
},
|
|
4706
4937
|
body: GooglePrivacyDlpV2CreateJobTriggerRequest
|
|
4707
4938
|
): Request<GooglePrivacyDlpV2JobTrigger>;
|
|
4708
|
-
/** Deletes a job trigger. See https://cloud.google.com/
|
|
4939
|
+
/** Deletes a job trigger. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
4709
4940
|
delete(request?: {
|
|
4710
4941
|
/** V1 error format. */
|
|
4711
4942
|
'$.xgafv'?: string;
|
|
@@ -4732,7 +4963,7 @@ declare namespace gapi.client {
|
|
|
4732
4963
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4733
4964
|
uploadType?: string;
|
|
4734
4965
|
}): Request<{}>;
|
|
4735
|
-
/** Gets a job trigger. See https://cloud.google.com/
|
|
4966
|
+
/** Gets a job trigger. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
4736
4967
|
get(request?: {
|
|
4737
4968
|
/** V1 error format. */
|
|
4738
4969
|
'$.xgafv'?: string;
|
|
@@ -4759,7 +4990,7 @@ declare namespace gapi.client {
|
|
|
4759
4990
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4760
4991
|
uploadType?: string;
|
|
4761
4992
|
}): Request<GooglePrivacyDlpV2JobTrigger>;
|
|
4762
|
-
/** Lists job triggers. See https://cloud.google.com/
|
|
4993
|
+
/** Lists job triggers. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
4763
4994
|
list(request?: {
|
|
4764
4995
|
/** V1 error format. */
|
|
4765
4996
|
'$.xgafv'?: string;
|
|
@@ -4785,7 +5016,7 @@ declare namespace gapi.client {
|
|
|
4785
5016
|
pageSize?: number;
|
|
4786
5017
|
/** Page token to continue retrieval. Comes from the previous call to ListJobTriggers. `order_by` field must not change for subsequent calls. */
|
|
4787
5018
|
pageToken?: string;
|
|
4788
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
5019
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4789
5020
|
parent: string;
|
|
4790
5021
|
/** Returns response with indentations and line breaks. */
|
|
4791
5022
|
prettyPrint?: boolean;
|
|
@@ -4798,7 +5029,7 @@ declare namespace gapi.client {
|
|
|
4798
5029
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4799
5030
|
uploadType?: string;
|
|
4800
5031
|
}): Request<GooglePrivacyDlpV2ListJobTriggersResponse>;
|
|
4801
|
-
/** Updates a job trigger. See https://cloud.google.com/
|
|
5032
|
+
/** Updates a job trigger. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
4802
5033
|
patch(request: {
|
|
4803
5034
|
/** V1 error format. */
|
|
4804
5035
|
'$.xgafv'?: string;
|
|
@@ -4857,8 +5088,72 @@ declare namespace gapi.client {
|
|
|
4857
5088
|
body: GooglePrivacyDlpV2UpdateJobTriggerRequest
|
|
4858
5089
|
): Request<GooglePrivacyDlpV2JobTrigger>;
|
|
4859
5090
|
}
|
|
5091
|
+
interface ColumnDataProfilesResource {
|
|
5092
|
+
/** Gets a column data profile. */
|
|
5093
|
+
get(request?: {
|
|
5094
|
+
/** V1 error format. */
|
|
5095
|
+
'$.xgafv'?: string;
|
|
5096
|
+
/** OAuth access token. */
|
|
5097
|
+
access_token?: string;
|
|
5098
|
+
/** Data format for response. */
|
|
5099
|
+
alt?: string;
|
|
5100
|
+
/** JSONP */
|
|
5101
|
+
callback?: string;
|
|
5102
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5103
|
+
fields?: string;
|
|
5104
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5105
|
+
key?: string;
|
|
5106
|
+
/** Required. Resource name, for example `organizations/12345/locations/us/columnDataProfiles/53234423`. */
|
|
5107
|
+
name: string;
|
|
5108
|
+
/** OAuth 2.0 token for the current user. */
|
|
5109
|
+
oauth_token?: string;
|
|
5110
|
+
/** Returns response with indentations and line breaks. */
|
|
5111
|
+
prettyPrint?: boolean;
|
|
5112
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5113
|
+
quotaUser?: string;
|
|
5114
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5115
|
+
upload_protocol?: string;
|
|
5116
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5117
|
+
uploadType?: string;
|
|
5118
|
+
}): Request<GooglePrivacyDlpV2ColumnDataProfile>;
|
|
5119
|
+
/** Lists data profiles for an organization. */
|
|
5120
|
+
list(request?: {
|
|
5121
|
+
/** V1 error format. */
|
|
5122
|
+
'$.xgafv'?: string;
|
|
5123
|
+
/** OAuth access token. */
|
|
5124
|
+
access_token?: string;
|
|
5125
|
+
/** Data format for response. */
|
|
5126
|
+
alt?: string;
|
|
5127
|
+
/** JSONP */
|
|
5128
|
+
callback?: string;
|
|
5129
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5130
|
+
fields?: string;
|
|
5131
|
+
/** Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `table_data_profile_name` - The name of the related table data profile. - `project_id` - The Google Cloud project ID. (REQUIRED) - `dataset_id` - The BigQuery dataset ID. (REQUIRED) - `table_id` - The BigQuery table ID. (REQUIRED) - `field_id` - The ID of the BigQuery field. - `info_type` - The infotype detected in the resource. - `sensitivity_level` - HIGH|MEDIUM|LOW - `data_risk_level`: How much risk is associated with this data. - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` for project_id, dataset_id, and table_id. Other filters also support `!=`. Examples: * project_id = 12345 AND status_code = 1 * project_id = 12345 AND sensitivity_level = HIGH * project_id = 12345 AND info_type = STREET_ADDRESS The length of this field should be no more than 500 characters. */
|
|
5132
|
+
filter?: string;
|
|
5133
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5134
|
+
key?: string;
|
|
5135
|
+
/** OAuth 2.0 token for the current user. */
|
|
5136
|
+
oauth_token?: string;
|
|
5137
|
+
/** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a column is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
|
|
5138
|
+
orderBy?: string;
|
|
5139
|
+
/** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
|
|
5140
|
+
pageSize?: number;
|
|
5141
|
+
/** Page token to continue retrieval. */
|
|
5142
|
+
pageToken?: string;
|
|
5143
|
+
/** Required. Resource name of the organization or project, for example `organizations/433245324/locations/europe` or projects/project-id/locations/asia. */
|
|
5144
|
+
parent: string;
|
|
5145
|
+
/** Returns response with indentations and line breaks. */
|
|
5146
|
+
prettyPrint?: boolean;
|
|
5147
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5148
|
+
quotaUser?: string;
|
|
5149
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5150
|
+
upload_protocol?: string;
|
|
5151
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5152
|
+
uploadType?: string;
|
|
5153
|
+
}): Request<GooglePrivacyDlpV2ListColumnDataProfilesResponse>;
|
|
5154
|
+
}
|
|
4860
5155
|
interface ContentResource {
|
|
4861
|
-
/** De-identifies potentially sensitive info from a ContentItem. This method has limits on input size and output size. See https://cloud.google.com/
|
|
5156
|
+
/** De-identifies potentially sensitive info from a ContentItem. This method has limits on input size and output size. See https://cloud.google.com/sensitive-data-protection/docs/deidentify-sensitive-data to learn more. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. */
|
|
4862
5157
|
deidentify(request: {
|
|
4863
5158
|
/** V1 error format. */
|
|
4864
5159
|
'$.xgafv'?: string;
|
|
@@ -4874,7 +5169,7 @@ declare namespace gapi.client {
|
|
|
4874
5169
|
key?: string;
|
|
4875
5170
|
/** OAuth 2.0 token for the current user. */
|
|
4876
5171
|
oauth_token?: string;
|
|
4877
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
5172
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4878
5173
|
parent: string;
|
|
4879
5174
|
/** Returns response with indentations and line breaks. */
|
|
4880
5175
|
prettyPrint?: boolean;
|
|
@@ -4903,7 +5198,7 @@ declare namespace gapi.client {
|
|
|
4903
5198
|
key?: string;
|
|
4904
5199
|
/** OAuth 2.0 token for the current user. */
|
|
4905
5200
|
oauth_token?: string;
|
|
4906
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
5201
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4907
5202
|
parent: string;
|
|
4908
5203
|
/** Returns response with indentations and line breaks. */
|
|
4909
5204
|
prettyPrint?: boolean;
|
|
@@ -4916,7 +5211,7 @@ declare namespace gapi.client {
|
|
|
4916
5211
|
},
|
|
4917
5212
|
body: GooglePrivacyDlpV2DeidentifyContentRequest
|
|
4918
5213
|
): Request<GooglePrivacyDlpV2DeidentifyContentResponse>;
|
|
4919
|
-
/** Finds potentially sensitive info in content. This method has limits on input size, processing time, and output size. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. For how to guides, see https://cloud.google.com/
|
|
5214
|
+
/** Finds potentially sensitive info in content. This method has limits on input size, processing time, and output size. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. For how to guides, see https://cloud.google.com/sensitive-data-protection/docs/inspecting-images and https://cloud.google.com/sensitive-data-protection/docs/inspecting-text, */
|
|
4920
5215
|
inspect(request: {
|
|
4921
5216
|
/** V1 error format. */
|
|
4922
5217
|
'$.xgafv'?: string;
|
|
@@ -4932,7 +5227,7 @@ declare namespace gapi.client {
|
|
|
4932
5227
|
key?: string;
|
|
4933
5228
|
/** OAuth 2.0 token for the current user. */
|
|
4934
5229
|
oauth_token?: string;
|
|
4935
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
5230
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4936
5231
|
parent: string;
|
|
4937
5232
|
/** Returns response with indentations and line breaks. */
|
|
4938
5233
|
prettyPrint?: boolean;
|
|
@@ -4961,7 +5256,7 @@ declare namespace gapi.client {
|
|
|
4961
5256
|
key?: string;
|
|
4962
5257
|
/** OAuth 2.0 token for the current user. */
|
|
4963
5258
|
oauth_token?: string;
|
|
4964
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
5259
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4965
5260
|
parent: string;
|
|
4966
5261
|
/** Returns response with indentations and line breaks. */
|
|
4967
5262
|
prettyPrint?: boolean;
|
|
@@ -4974,7 +5269,7 @@ declare namespace gapi.client {
|
|
|
4974
5269
|
},
|
|
4975
5270
|
body: GooglePrivacyDlpV2InspectContentRequest
|
|
4976
5271
|
): Request<GooglePrivacyDlpV2InspectContentResponse>;
|
|
4977
|
-
/** Re-identifies content that has been de-identified. See https://cloud.google.com/
|
|
5272
|
+
/** Re-identifies content that has been de-identified. See https://cloud.google.com/sensitive-data-protection/docs/pseudonymization#re-identification_in_free_text_code_example to learn more. */
|
|
4978
5273
|
reidentify(request: {
|
|
4979
5274
|
/** V1 error format. */
|
|
4980
5275
|
'$.xgafv'?: string;
|
|
@@ -4990,7 +5285,7 @@ declare namespace gapi.client {
|
|
|
4990
5285
|
key?: string;
|
|
4991
5286
|
/** OAuth 2.0 token for the current user. */
|
|
4992
5287
|
oauth_token?: string;
|
|
4993
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
5288
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
4994
5289
|
parent: string;
|
|
4995
5290
|
/** Returns response with indentations and line breaks. */
|
|
4996
5291
|
prettyPrint?: boolean;
|
|
@@ -5019,7 +5314,7 @@ declare namespace gapi.client {
|
|
|
5019
5314
|
key?: string;
|
|
5020
5315
|
/** OAuth 2.0 token for the current user. */
|
|
5021
5316
|
oauth_token?: string;
|
|
5022
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
5317
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5023
5318
|
parent: string;
|
|
5024
5319
|
/** Returns response with indentations and line breaks. */
|
|
5025
5320
|
prettyPrint?: boolean;
|
|
@@ -5034,7 +5329,7 @@ declare namespace gapi.client {
|
|
|
5034
5329
|
): Request<GooglePrivacyDlpV2ReidentifyContentResponse>;
|
|
5035
5330
|
}
|
|
5036
5331
|
interface DeidentifyTemplatesResource {
|
|
5037
|
-
/** Creates a DeidentifyTemplate for reusing frequently used configuration for de-identifying content, images, and storage. See https://cloud.google.com/
|
|
5332
|
+
/** Creates a DeidentifyTemplate for reusing frequently used configuration for de-identifying content, images, and storage. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
5038
5333
|
create(request: {
|
|
5039
5334
|
/** V1 error format. */
|
|
5040
5335
|
'$.xgafv'?: string;
|
|
@@ -5050,7 +5345,7 @@ declare namespace gapi.client {
|
|
|
5050
5345
|
key?: string;
|
|
5051
5346
|
/** OAuth 2.0 token for the current user. */
|
|
5052
5347
|
oauth_token?: string;
|
|
5053
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
5348
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5054
5349
|
parent: string;
|
|
5055
5350
|
/** Returns response with indentations and line breaks. */
|
|
5056
5351
|
prettyPrint?: boolean;
|
|
@@ -5079,7 +5374,7 @@ declare namespace gapi.client {
|
|
|
5079
5374
|
key?: string;
|
|
5080
5375
|
/** OAuth 2.0 token for the current user. */
|
|
5081
5376
|
oauth_token?: string;
|
|
5082
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
5377
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5083
5378
|
parent: string;
|
|
5084
5379
|
/** Returns response with indentations and line breaks. */
|
|
5085
5380
|
prettyPrint?: boolean;
|
|
@@ -5092,7 +5387,7 @@ declare namespace gapi.client {
|
|
|
5092
5387
|
},
|
|
5093
5388
|
body: GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
|
|
5094
5389
|
): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
5095
|
-
/** Deletes a DeidentifyTemplate. See https://cloud.google.com/
|
|
5390
|
+
/** Deletes a DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
5096
5391
|
delete(request?: {
|
|
5097
5392
|
/** V1 error format. */
|
|
5098
5393
|
'$.xgafv'?: string;
|
|
@@ -5119,7 +5414,7 @@ declare namespace gapi.client {
|
|
|
5119
5414
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5120
5415
|
uploadType?: string;
|
|
5121
5416
|
}): Request<{}>;
|
|
5122
|
-
/** Gets a DeidentifyTemplate. See https://cloud.google.com/
|
|
5417
|
+
/** Gets a DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
5123
5418
|
get(request?: {
|
|
5124
5419
|
/** V1 error format. */
|
|
5125
5420
|
'$.xgafv'?: string;
|
|
@@ -5146,7 +5441,7 @@ declare namespace gapi.client {
|
|
|
5146
5441
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5147
5442
|
uploadType?: string;
|
|
5148
5443
|
}): Request<GooglePrivacyDlpV2DeidentifyTemplate>;
|
|
5149
|
-
/** Lists DeidentifyTemplates. See https://cloud.google.com/
|
|
5444
|
+
/** Lists DeidentifyTemplates. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
5150
5445
|
list(request?: {
|
|
5151
5446
|
/** V1 error format. */
|
|
5152
5447
|
'$.xgafv'?: string;
|
|
@@ -5170,7 +5465,7 @@ declare namespace gapi.client {
|
|
|
5170
5465
|
pageSize?: number;
|
|
5171
5466
|
/** Page token to continue retrieval. Comes from the previous call to `ListDeidentifyTemplates`. */
|
|
5172
5467
|
pageToken?: string;
|
|
5173
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
5468
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5174
5469
|
parent: string;
|
|
5175
5470
|
/** Returns response with indentations and line breaks. */
|
|
5176
5471
|
prettyPrint?: boolean;
|
|
@@ -5181,7 +5476,7 @@ declare namespace gapi.client {
|
|
|
5181
5476
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5182
5477
|
uploadType?: string;
|
|
5183
5478
|
}): Request<GooglePrivacyDlpV2ListDeidentifyTemplatesResponse>;
|
|
5184
|
-
/** Updates the DeidentifyTemplate. See https://cloud.google.com/
|
|
5479
|
+
/** Updates the DeidentifyTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates-deid to learn more. */
|
|
5185
5480
|
patch(request: {
|
|
5186
5481
|
/** V1 error format. */
|
|
5187
5482
|
'$.xgafv'?: string;
|
|
@@ -5446,7 +5741,7 @@ declare namespace gapi.client {
|
|
|
5446
5741
|
): Request<GooglePrivacyDlpV2DiscoveryConfig>;
|
|
5447
5742
|
}
|
|
5448
5743
|
interface DlpJobsResource {
|
|
5449
|
-
/** Starts asynchronous cancellation on a long-running DlpJob. The server makes a best effort to cancel the DlpJob, but success is not guaranteed. See https://cloud.google.com/
|
|
5744
|
+
/** Starts asynchronous cancellation on a long-running DlpJob. The server makes a best effort to cancel the DlpJob, but success is not guaranteed. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. */
|
|
5450
5745
|
cancel(request: {
|
|
5451
5746
|
/** V1 error format. */
|
|
5452
5747
|
'$.xgafv'?: string;
|
|
@@ -5504,7 +5799,7 @@ declare namespace gapi.client {
|
|
|
5504
5799
|
},
|
|
5505
5800
|
body: GooglePrivacyDlpV2CancelDlpJobRequest
|
|
5506
5801
|
): Request<{}>;
|
|
5507
|
-
/** Creates a new job to inspect storage or calculate risk metrics. See https://cloud.google.com/
|
|
5802
|
+
/** Creates a new job to inspect storage or calculate risk metrics. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. When no InfoTypes or CustomInfoTypes are specified in inspect jobs, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. */
|
|
5508
5803
|
create(request: {
|
|
5509
5804
|
/** V1 error format. */
|
|
5510
5805
|
'$.xgafv'?: string;
|
|
@@ -5520,7 +5815,7 @@ declare namespace gapi.client {
|
|
|
5520
5815
|
key?: string;
|
|
5521
5816
|
/** OAuth 2.0 token for the current user. */
|
|
5522
5817
|
oauth_token?: string;
|
|
5523
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
5818
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5524
5819
|
parent: string;
|
|
5525
5820
|
/** Returns response with indentations and line breaks. */
|
|
5526
5821
|
prettyPrint?: boolean;
|
|
@@ -5549,7 +5844,7 @@ declare namespace gapi.client {
|
|
|
5549
5844
|
key?: string;
|
|
5550
5845
|
/** OAuth 2.0 token for the current user. */
|
|
5551
5846
|
oauth_token?: string;
|
|
5552
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
5847
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5553
5848
|
parent: string;
|
|
5554
5849
|
/** Returns response with indentations and line breaks. */
|
|
5555
5850
|
prettyPrint?: boolean;
|
|
@@ -5562,7 +5857,7 @@ declare namespace gapi.client {
|
|
|
5562
5857
|
},
|
|
5563
5858
|
body: GooglePrivacyDlpV2CreateDlpJobRequest
|
|
5564
5859
|
): Request<GooglePrivacyDlpV2DlpJob>;
|
|
5565
|
-
/** Deletes a long-running DlpJob. This method indicates that the client is no longer interested in the DlpJob result. The job will be canceled if possible. See https://cloud.google.com/
|
|
5860
|
+
/** Deletes a long-running DlpJob. This method indicates that the client is no longer interested in the DlpJob result. The job will be canceled if possible. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. */
|
|
5566
5861
|
delete(request?: {
|
|
5567
5862
|
/** V1 error format. */
|
|
5568
5863
|
'$.xgafv'?: string;
|
|
@@ -5647,7 +5942,7 @@ declare namespace gapi.client {
|
|
|
5647
5942
|
},
|
|
5648
5943
|
body: GooglePrivacyDlpV2FinishDlpJobRequest
|
|
5649
5944
|
): Request<{}>;
|
|
5650
|
-
/** Gets the latest state of a long-running DlpJob. See https://cloud.google.com/
|
|
5945
|
+
/** Gets the latest state of a long-running DlpJob. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. */
|
|
5651
5946
|
get(request?: {
|
|
5652
5947
|
/** V1 error format. */
|
|
5653
5948
|
'$.xgafv'?: string;
|
|
@@ -5732,7 +6027,7 @@ declare namespace gapi.client {
|
|
|
5732
6027
|
},
|
|
5733
6028
|
body: GooglePrivacyDlpV2HybridInspectDlpJobRequest
|
|
5734
6029
|
): Request<{}>;
|
|
5735
|
-
/** Lists DlpJobs that match the specified filter in the request. See https://cloud.google.com/
|
|
6030
|
+
/** Lists DlpJobs that match the specified filter in the request. See https://cloud.google.com/sensitive-data-protection/docs/inspecting-storage and https://cloud.google.com/sensitive-data-protection/docs/compute-risk-analysis to learn more. */
|
|
5736
6031
|
list(request?: {
|
|
5737
6032
|
/** V1 error format. */
|
|
5738
6033
|
'$.xgafv'?: string;
|
|
@@ -5758,7 +6053,7 @@ declare namespace gapi.client {
|
|
|
5758
6053
|
pageSize?: number;
|
|
5759
6054
|
/** The standard list page token. */
|
|
5760
6055
|
pageToken?: string;
|
|
5761
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
6056
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5762
6057
|
parent: string;
|
|
5763
6058
|
/** Returns response with indentations and line breaks. */
|
|
5764
6059
|
prettyPrint?: boolean;
|
|
@@ -5773,7 +6068,7 @@ declare namespace gapi.client {
|
|
|
5773
6068
|
}): Request<GooglePrivacyDlpV2ListDlpJobsResponse>;
|
|
5774
6069
|
}
|
|
5775
6070
|
interface ImageResource {
|
|
5776
|
-
/** Redacts potentially sensitive info from an image. This method has limits on input size, processing time, and output size. See https://cloud.google.com/
|
|
6071
|
+
/** Redacts potentially sensitive info from an image. This method has limits on input size, processing time, and output size. See https://cloud.google.com/sensitive-data-protection/docs/redacting-sensitive-data-images to learn more. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. */
|
|
5777
6072
|
redact(request: {
|
|
5778
6073
|
/** V1 error format. */
|
|
5779
6074
|
'$.xgafv'?: string;
|
|
@@ -5789,7 +6084,7 @@ declare namespace gapi.client {
|
|
|
5789
6084
|
key?: string;
|
|
5790
6085
|
/** OAuth 2.0 token for the current user. */
|
|
5791
6086
|
oauth_token?: string;
|
|
5792
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
6087
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5793
6088
|
parent: string;
|
|
5794
6089
|
/** Returns response with indentations and line breaks. */
|
|
5795
6090
|
prettyPrint?: boolean;
|
|
@@ -5818,7 +6113,7 @@ declare namespace gapi.client {
|
|
|
5818
6113
|
key?: string;
|
|
5819
6114
|
/** OAuth 2.0 token for the current user. */
|
|
5820
6115
|
oauth_token?: string;
|
|
5821
|
-
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
6116
|
+
/** Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5822
6117
|
parent: string;
|
|
5823
6118
|
/** Returns response with indentations and line breaks. */
|
|
5824
6119
|
prettyPrint?: boolean;
|
|
@@ -5833,7 +6128,7 @@ declare namespace gapi.client {
|
|
|
5833
6128
|
): Request<GooglePrivacyDlpV2RedactImageResponse>;
|
|
5834
6129
|
}
|
|
5835
6130
|
interface InspectTemplatesResource {
|
|
5836
|
-
/** Creates an InspectTemplate for reusing frequently used configuration for inspecting content, images, and storage. See https://cloud.google.com/
|
|
6131
|
+
/** Creates an InspectTemplate for reusing frequently used configuration for inspecting content, images, and storage. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
5837
6132
|
create(request: {
|
|
5838
6133
|
/** V1 error format. */
|
|
5839
6134
|
'$.xgafv'?: string;
|
|
@@ -5849,7 +6144,7 @@ declare namespace gapi.client {
|
|
|
5849
6144
|
key?: string;
|
|
5850
6145
|
/** OAuth 2.0 token for the current user. */
|
|
5851
6146
|
oauth_token?: string;
|
|
5852
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
6147
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5853
6148
|
parent: string;
|
|
5854
6149
|
/** Returns response with indentations and line breaks. */
|
|
5855
6150
|
prettyPrint?: boolean;
|
|
@@ -5878,7 +6173,7 @@ declare namespace gapi.client {
|
|
|
5878
6173
|
key?: string;
|
|
5879
6174
|
/** OAuth 2.0 token for the current user. */
|
|
5880
6175
|
oauth_token?: string;
|
|
5881
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
6176
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5882
6177
|
parent: string;
|
|
5883
6178
|
/** Returns response with indentations and line breaks. */
|
|
5884
6179
|
prettyPrint?: boolean;
|
|
@@ -5891,7 +6186,7 @@ declare namespace gapi.client {
|
|
|
5891
6186
|
},
|
|
5892
6187
|
body: GooglePrivacyDlpV2CreateInspectTemplateRequest
|
|
5893
6188
|
): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
5894
|
-
/** Deletes an InspectTemplate. See https://cloud.google.com/
|
|
6189
|
+
/** Deletes an InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
5895
6190
|
delete(request?: {
|
|
5896
6191
|
/** V1 error format. */
|
|
5897
6192
|
'$.xgafv'?: string;
|
|
@@ -5918,7 +6213,7 @@ declare namespace gapi.client {
|
|
|
5918
6213
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5919
6214
|
uploadType?: string;
|
|
5920
6215
|
}): Request<{}>;
|
|
5921
|
-
/** Gets an InspectTemplate. See https://cloud.google.com/
|
|
6216
|
+
/** Gets an InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
5922
6217
|
get(request?: {
|
|
5923
6218
|
/** V1 error format. */
|
|
5924
6219
|
'$.xgafv'?: string;
|
|
@@ -5945,7 +6240,7 @@ declare namespace gapi.client {
|
|
|
5945
6240
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5946
6241
|
uploadType?: string;
|
|
5947
6242
|
}): Request<GooglePrivacyDlpV2InspectTemplate>;
|
|
5948
|
-
/** Lists InspectTemplates. See https://cloud.google.com/
|
|
6243
|
+
/** Lists InspectTemplates. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
5949
6244
|
list(request?: {
|
|
5950
6245
|
/** V1 error format. */
|
|
5951
6246
|
'$.xgafv'?: string;
|
|
@@ -5969,7 +6264,7 @@ declare namespace gapi.client {
|
|
|
5969
6264
|
pageSize?: number;
|
|
5970
6265
|
/** Page token to continue retrieval. Comes from the previous call to `ListInspectTemplates`. */
|
|
5971
6266
|
pageToken?: string;
|
|
5972
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
6267
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
5973
6268
|
parent: string;
|
|
5974
6269
|
/** Returns response with indentations and line breaks. */
|
|
5975
6270
|
prettyPrint?: boolean;
|
|
@@ -5980,7 +6275,7 @@ declare namespace gapi.client {
|
|
|
5980
6275
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5981
6276
|
uploadType?: string;
|
|
5982
6277
|
}): Request<GooglePrivacyDlpV2ListInspectTemplatesResponse>;
|
|
5983
|
-
/** Updates the InspectTemplate. See https://cloud.google.com/
|
|
6278
|
+
/** Updates the InspectTemplate. See https://cloud.google.com/sensitive-data-protection/docs/creating-templates to learn more. */
|
|
5984
6279
|
patch(request: {
|
|
5985
6280
|
/** V1 error format. */
|
|
5986
6281
|
'$.xgafv'?: string;
|
|
@@ -6098,7 +6393,7 @@ declare namespace gapi.client {
|
|
|
6098
6393
|
},
|
|
6099
6394
|
body: GooglePrivacyDlpV2ActivateJobTriggerRequest
|
|
6100
6395
|
): Request<GooglePrivacyDlpV2DlpJob>;
|
|
6101
|
-
/** Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See https://cloud.google.com/
|
|
6396
|
+
/** Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
6102
6397
|
create(request: {
|
|
6103
6398
|
/** V1 error format. */
|
|
6104
6399
|
'$.xgafv'?: string;
|
|
@@ -6114,7 +6409,7 @@ declare namespace gapi.client {
|
|
|
6114
6409
|
key?: string;
|
|
6115
6410
|
/** OAuth 2.0 token for the current user. */
|
|
6116
6411
|
oauth_token?: string;
|
|
6117
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
6412
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
6118
6413
|
parent: string;
|
|
6119
6414
|
/** Returns response with indentations and line breaks. */
|
|
6120
6415
|
prettyPrint?: boolean;
|
|
@@ -6143,7 +6438,7 @@ declare namespace gapi.client {
|
|
|
6143
6438
|
key?: string;
|
|
6144
6439
|
/** OAuth 2.0 token for the current user. */
|
|
6145
6440
|
oauth_token?: string;
|
|
6146
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
6441
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
6147
6442
|
parent: string;
|
|
6148
6443
|
/** Returns response with indentations and line breaks. */
|
|
6149
6444
|
prettyPrint?: boolean;
|
|
@@ -6156,7 +6451,7 @@ declare namespace gapi.client {
|
|
|
6156
6451
|
},
|
|
6157
6452
|
body: GooglePrivacyDlpV2CreateJobTriggerRequest
|
|
6158
6453
|
): Request<GooglePrivacyDlpV2JobTrigger>;
|
|
6159
|
-
/** Deletes a job trigger. See https://cloud.google.com/
|
|
6454
|
+
/** Deletes a job trigger. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
6160
6455
|
delete(request?: {
|
|
6161
6456
|
/** V1 error format. */
|
|
6162
6457
|
'$.xgafv'?: string;
|
|
@@ -6183,7 +6478,7 @@ declare namespace gapi.client {
|
|
|
6183
6478
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6184
6479
|
uploadType?: string;
|
|
6185
6480
|
}): Request<{}>;
|
|
6186
|
-
/** Gets a job trigger. See https://cloud.google.com/
|
|
6481
|
+
/** Gets a job trigger. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
6187
6482
|
get(request?: {
|
|
6188
6483
|
/** V1 error format. */
|
|
6189
6484
|
'$.xgafv'?: string;
|
|
@@ -6268,7 +6563,7 @@ declare namespace gapi.client {
|
|
|
6268
6563
|
},
|
|
6269
6564
|
body: GooglePrivacyDlpV2HybridInspectJobTriggerRequest
|
|
6270
6565
|
): Request<{}>;
|
|
6271
|
-
/** Lists job triggers. See https://cloud.google.com/
|
|
6566
|
+
/** Lists job triggers. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
6272
6567
|
list(request?: {
|
|
6273
6568
|
/** V1 error format. */
|
|
6274
6569
|
'$.xgafv'?: string;
|
|
@@ -6294,7 +6589,7 @@ declare namespace gapi.client {
|
|
|
6294
6589
|
pageSize?: number;
|
|
6295
6590
|
/** Page token to continue retrieval. Comes from the previous call to ListJobTriggers. `order_by` field must not change for subsequent calls. */
|
|
6296
6591
|
pageToken?: string;
|
|
6297
|
-
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/
|
|
6592
|
+
/** Required. Parent resource name. The format of this value varies depending on whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
6298
6593
|
parent: string;
|
|
6299
6594
|
/** Returns response with indentations and line breaks. */
|
|
6300
6595
|
prettyPrint?: boolean;
|
|
@@ -6307,7 +6602,7 @@ declare namespace gapi.client {
|
|
|
6307
6602
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6308
6603
|
uploadType?: string;
|
|
6309
6604
|
}): Request<GooglePrivacyDlpV2ListJobTriggersResponse>;
|
|
6310
|
-
/** Updates a job trigger. See https://cloud.google.com/
|
|
6605
|
+
/** Updates a job trigger. See https://cloud.google.com/sensitive-data-protection/docs/creating-job-triggers to learn more. */
|
|
6311
6606
|
patch(request: {
|
|
6312
6607
|
/** V1 error format. */
|
|
6313
6608
|
'$.xgafv'?: string;
|
|
@@ -6366,8 +6661,72 @@ declare namespace gapi.client {
|
|
|
6366
6661
|
body: GooglePrivacyDlpV2UpdateJobTriggerRequest
|
|
6367
6662
|
): Request<GooglePrivacyDlpV2JobTrigger>;
|
|
6368
6663
|
}
|
|
6664
|
+
interface ProjectDataProfilesResource {
|
|
6665
|
+
/** Gets a project data profile. */
|
|
6666
|
+
get(request?: {
|
|
6667
|
+
/** V1 error format. */
|
|
6668
|
+
'$.xgafv'?: string;
|
|
6669
|
+
/** OAuth access token. */
|
|
6670
|
+
access_token?: string;
|
|
6671
|
+
/** Data format for response. */
|
|
6672
|
+
alt?: string;
|
|
6673
|
+
/** JSONP */
|
|
6674
|
+
callback?: string;
|
|
6675
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6676
|
+
fields?: string;
|
|
6677
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6678
|
+
key?: string;
|
|
6679
|
+
/** Required. Resource name, for example `organizations/12345/locations/us/projectDataProfiles/53234423`. */
|
|
6680
|
+
name: string;
|
|
6681
|
+
/** OAuth 2.0 token for the current user. */
|
|
6682
|
+
oauth_token?: string;
|
|
6683
|
+
/** Returns response with indentations and line breaks. */
|
|
6684
|
+
prettyPrint?: boolean;
|
|
6685
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6686
|
+
quotaUser?: string;
|
|
6687
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6688
|
+
upload_protocol?: string;
|
|
6689
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6690
|
+
uploadType?: string;
|
|
6691
|
+
}): Request<GooglePrivacyDlpV2ProjectDataProfile>;
|
|
6692
|
+
/** Lists data profiles for an organization. */
|
|
6693
|
+
list(request?: {
|
|
6694
|
+
/** V1 error format. */
|
|
6695
|
+
'$.xgafv'?: string;
|
|
6696
|
+
/** OAuth access token. */
|
|
6697
|
+
access_token?: string;
|
|
6698
|
+
/** Data format for response. */
|
|
6699
|
+
alt?: string;
|
|
6700
|
+
/** JSONP */
|
|
6701
|
+
callback?: string;
|
|
6702
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6703
|
+
fields?: string;
|
|
6704
|
+
/** Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` or `!=`. Examples: * project_id = 12345 AND status_code = 1 * project_id = 12345 AND sensitivity_level = HIGH The length of this field should be no more than 500 characters. */
|
|
6705
|
+
filter?: string;
|
|
6706
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6707
|
+
key?: string;
|
|
6708
|
+
/** OAuth 2.0 token for the current user. */
|
|
6709
|
+
oauth_token?: string;
|
|
6710
|
+
/** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id` * `sensitivity_level desc` Supported fields are: - `project_id`: GCP project ID - `sensitivity_level`: How sensitive the data in a project is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
|
|
6711
|
+
orderBy?: string;
|
|
6712
|
+
/** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
|
|
6713
|
+
pageSize?: number;
|
|
6714
|
+
/** Page token to continue retrieval. */
|
|
6715
|
+
pageToken?: string;
|
|
6716
|
+
/** Required. organizations/{org_id}/locations/{loc_id} */
|
|
6717
|
+
parent: string;
|
|
6718
|
+
/** Returns response with indentations and line breaks. */
|
|
6719
|
+
prettyPrint?: boolean;
|
|
6720
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6721
|
+
quotaUser?: string;
|
|
6722
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6723
|
+
upload_protocol?: string;
|
|
6724
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6725
|
+
uploadType?: string;
|
|
6726
|
+
}): Request<GooglePrivacyDlpV2ListProjectDataProfilesResponse>;
|
|
6727
|
+
}
|
|
6369
6728
|
interface StoredInfoTypesResource {
|
|
6370
|
-
/** Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/
|
|
6729
|
+
/** Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6371
6730
|
create(request: {
|
|
6372
6731
|
/** V1 error format. */
|
|
6373
6732
|
'$.xgafv'?: string;
|
|
@@ -6383,7 +6742,7 @@ declare namespace gapi.client {
|
|
|
6383
6742
|
key?: string;
|
|
6384
6743
|
/** OAuth 2.0 token for the current user. */
|
|
6385
6744
|
oauth_token?: string;
|
|
6386
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
6745
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
6387
6746
|
parent: string;
|
|
6388
6747
|
/** Returns response with indentations and line breaks. */
|
|
6389
6748
|
prettyPrint?: boolean;
|
|
@@ -6412,7 +6771,7 @@ declare namespace gapi.client {
|
|
|
6412
6771
|
key?: string;
|
|
6413
6772
|
/** OAuth 2.0 token for the current user. */
|
|
6414
6773
|
oauth_token?: string;
|
|
6415
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
6774
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
6416
6775
|
parent: string;
|
|
6417
6776
|
/** Returns response with indentations and line breaks. */
|
|
6418
6777
|
prettyPrint?: boolean;
|
|
@@ -6425,7 +6784,7 @@ declare namespace gapi.client {
|
|
|
6425
6784
|
},
|
|
6426
6785
|
body: GooglePrivacyDlpV2CreateStoredInfoTypeRequest
|
|
6427
6786
|
): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
6428
|
-
/** Deletes a stored infoType. See https://cloud.google.com/
|
|
6787
|
+
/** Deletes a stored infoType. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6429
6788
|
delete(request?: {
|
|
6430
6789
|
/** V1 error format. */
|
|
6431
6790
|
'$.xgafv'?: string;
|
|
@@ -6452,7 +6811,7 @@ declare namespace gapi.client {
|
|
|
6452
6811
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6453
6812
|
uploadType?: string;
|
|
6454
6813
|
}): Request<{}>;
|
|
6455
|
-
/** Gets a stored infoType. See https://cloud.google.com/
|
|
6814
|
+
/** Gets a stored infoType. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6456
6815
|
get(request?: {
|
|
6457
6816
|
/** V1 error format. */
|
|
6458
6817
|
'$.xgafv'?: string;
|
|
@@ -6479,7 +6838,7 @@ declare namespace gapi.client {
|
|
|
6479
6838
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6480
6839
|
uploadType?: string;
|
|
6481
6840
|
}): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
6482
|
-
/** Lists stored infoTypes. See https://cloud.google.com/
|
|
6841
|
+
/** Lists stored infoTypes. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6483
6842
|
list(request?: {
|
|
6484
6843
|
/** V1 error format. */
|
|
6485
6844
|
'$.xgafv'?: string;
|
|
@@ -6503,7 +6862,7 @@ declare namespace gapi.client {
|
|
|
6503
6862
|
pageSize?: number;
|
|
6504
6863
|
/** Page token to continue retrieval. Comes from the previous call to `ListStoredInfoTypes`. */
|
|
6505
6864
|
pageToken?: string;
|
|
6506
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
6865
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
6507
6866
|
parent: string;
|
|
6508
6867
|
/** Returns response with indentations and line breaks. */
|
|
6509
6868
|
prettyPrint?: boolean;
|
|
@@ -6514,7 +6873,7 @@ declare namespace gapi.client {
|
|
|
6514
6873
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6515
6874
|
uploadType?: string;
|
|
6516
6875
|
}): Request<GooglePrivacyDlpV2ListStoredInfoTypesResponse>;
|
|
6517
|
-
/** Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See https://cloud.google.com/
|
|
6876
|
+
/** Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6518
6877
|
patch(request: {
|
|
6519
6878
|
/** V1 error format. */
|
|
6520
6879
|
'$.xgafv'?: string;
|
|
@@ -6573,7 +6932,72 @@ declare namespace gapi.client {
|
|
|
6573
6932
|
body: GooglePrivacyDlpV2UpdateStoredInfoTypeRequest
|
|
6574
6933
|
): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
6575
6934
|
}
|
|
6935
|
+
interface TableDataProfilesResource {
|
|
6936
|
+
/** Gets a table data profile. */
|
|
6937
|
+
get(request?: {
|
|
6938
|
+
/** V1 error format. */
|
|
6939
|
+
'$.xgafv'?: string;
|
|
6940
|
+
/** OAuth access token. */
|
|
6941
|
+
access_token?: string;
|
|
6942
|
+
/** Data format for response. */
|
|
6943
|
+
alt?: string;
|
|
6944
|
+
/** JSONP */
|
|
6945
|
+
callback?: string;
|
|
6946
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6947
|
+
fields?: string;
|
|
6948
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6949
|
+
key?: string;
|
|
6950
|
+
/** Required. Resource name, for example `organizations/12345/locations/us/tableDataProfiles/53234423`. */
|
|
6951
|
+
name: string;
|
|
6952
|
+
/** OAuth 2.0 token for the current user. */
|
|
6953
|
+
oauth_token?: string;
|
|
6954
|
+
/** Returns response with indentations and line breaks. */
|
|
6955
|
+
prettyPrint?: boolean;
|
|
6956
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6957
|
+
quotaUser?: string;
|
|
6958
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6959
|
+
upload_protocol?: string;
|
|
6960
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6961
|
+
uploadType?: string;
|
|
6962
|
+
}): Request<GooglePrivacyDlpV2TableDataProfile>;
|
|
6963
|
+
/** Lists data profiles for an organization. */
|
|
6964
|
+
list(request?: {
|
|
6965
|
+
/** V1 error format. */
|
|
6966
|
+
'$.xgafv'?: string;
|
|
6967
|
+
/** OAuth access token. */
|
|
6968
|
+
access_token?: string;
|
|
6969
|
+
/** Data format for response. */
|
|
6970
|
+
alt?: string;
|
|
6971
|
+
/** JSONP */
|
|
6972
|
+
callback?: string;
|
|
6973
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6974
|
+
fields?: string;
|
|
6975
|
+
/** Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `project_id` - The GCP project ID. - `dataset_id` - The BigQuery dataset ID. - `table_id` - The ID of the BigQuery table. - `sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW - `resource_visibility`: PUBLIC|RESTRICTED - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` or `!=`. Examples: * project_id = 12345 AND status_code = 1 * project_id = 12345 AND sensitivity_level = HIGH * project_id = 12345 AND resource_visibility = PUBLIC The length of this field should be no more than 500 characters. */
|
|
6976
|
+
filter?: string;
|
|
6977
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6978
|
+
key?: string;
|
|
6979
|
+
/** OAuth 2.0 token for the current user. */
|
|
6980
|
+
oauth_token?: string;
|
|
6981
|
+
/** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The GCP project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `row_count`: Number of rows in this resource. */
|
|
6982
|
+
orderBy?: string;
|
|
6983
|
+
/** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
|
|
6984
|
+
pageSize?: number;
|
|
6985
|
+
/** Page token to continue retrieval. */
|
|
6986
|
+
pageToken?: string;
|
|
6987
|
+
/** Required. Resource name of the organization or project, for example `organizations/433245324/locations/europe` or `projects/project-id/locations/asia`. */
|
|
6988
|
+
parent: string;
|
|
6989
|
+
/** Returns response with indentations and line breaks. */
|
|
6990
|
+
prettyPrint?: boolean;
|
|
6991
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6992
|
+
quotaUser?: string;
|
|
6993
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6994
|
+
upload_protocol?: string;
|
|
6995
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6996
|
+
uploadType?: string;
|
|
6997
|
+
}): Request<GooglePrivacyDlpV2ListTableDataProfilesResponse>;
|
|
6998
|
+
}
|
|
6576
6999
|
interface LocationsResource {
|
|
7000
|
+
columnDataProfiles: ColumnDataProfilesResource;
|
|
6577
7001
|
content: ContentResource;
|
|
6578
7002
|
deidentifyTemplates: DeidentifyTemplatesResource;
|
|
6579
7003
|
discoveryConfigs: DiscoveryConfigsResource;
|
|
@@ -6581,10 +7005,12 @@ declare namespace gapi.client {
|
|
|
6581
7005
|
image: ImageResource;
|
|
6582
7006
|
inspectTemplates: InspectTemplatesResource;
|
|
6583
7007
|
jobTriggers: JobTriggersResource;
|
|
7008
|
+
projectDataProfiles: ProjectDataProfilesResource;
|
|
6584
7009
|
storedInfoTypes: StoredInfoTypesResource;
|
|
7010
|
+
tableDataProfiles: TableDataProfilesResource;
|
|
6585
7011
|
}
|
|
6586
7012
|
interface StoredInfoTypesResource {
|
|
6587
|
-
/** Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/
|
|
7013
|
+
/** Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6588
7014
|
create(request: {
|
|
6589
7015
|
/** V1 error format. */
|
|
6590
7016
|
'$.xgafv'?: string;
|
|
@@ -6600,7 +7026,7 @@ declare namespace gapi.client {
|
|
|
6600
7026
|
key?: string;
|
|
6601
7027
|
/** OAuth 2.0 token for the current user. */
|
|
6602
7028
|
oauth_token?: string;
|
|
6603
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
7029
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
6604
7030
|
parent: string;
|
|
6605
7031
|
/** Returns response with indentations and line breaks. */
|
|
6606
7032
|
prettyPrint?: boolean;
|
|
@@ -6629,7 +7055,7 @@ declare namespace gapi.client {
|
|
|
6629
7055
|
key?: string;
|
|
6630
7056
|
/** OAuth 2.0 token for the current user. */
|
|
6631
7057
|
oauth_token?: string;
|
|
6632
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
7058
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID + Organizations scope, location specified: `organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
6633
7059
|
parent: string;
|
|
6634
7060
|
/** Returns response with indentations and line breaks. */
|
|
6635
7061
|
prettyPrint?: boolean;
|
|
@@ -6642,7 +7068,7 @@ declare namespace gapi.client {
|
|
|
6642
7068
|
},
|
|
6643
7069
|
body: GooglePrivacyDlpV2CreateStoredInfoTypeRequest
|
|
6644
7070
|
): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
6645
|
-
/** Deletes a stored infoType. See https://cloud.google.com/
|
|
7071
|
+
/** Deletes a stored infoType. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6646
7072
|
delete(request?: {
|
|
6647
7073
|
/** V1 error format. */
|
|
6648
7074
|
'$.xgafv'?: string;
|
|
@@ -6669,7 +7095,7 @@ declare namespace gapi.client {
|
|
|
6669
7095
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6670
7096
|
uploadType?: string;
|
|
6671
7097
|
}): Request<{}>;
|
|
6672
|
-
/** Gets a stored infoType. See https://cloud.google.com/
|
|
7098
|
+
/** Gets a stored infoType. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6673
7099
|
get(request?: {
|
|
6674
7100
|
/** V1 error format. */
|
|
6675
7101
|
'$.xgafv'?: string;
|
|
@@ -6696,7 +7122,7 @@ declare namespace gapi.client {
|
|
|
6696
7122
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6697
7123
|
uploadType?: string;
|
|
6698
7124
|
}): Request<GooglePrivacyDlpV2StoredInfoType>;
|
|
6699
|
-
/** Lists stored infoTypes. See https://cloud.google.com/
|
|
7125
|
+
/** Lists stored infoTypes. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6700
7126
|
list(request?: {
|
|
6701
7127
|
/** V1 error format. */
|
|
6702
7128
|
'$.xgafv'?: string;
|
|
@@ -6720,7 +7146,7 @@ declare namespace gapi.client {
|
|
|
6720
7146
|
pageSize?: number;
|
|
6721
7147
|
/** Page token to continue retrieval. Comes from the previous call to `ListStoredInfoTypes`. */
|
|
6722
7148
|
pageToken?: string;
|
|
6723
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/
|
|
7149
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing location](https://cloud.google.com/sensitive-data-protection/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3 */
|
|
6724
7150
|
parent: string;
|
|
6725
7151
|
/** Returns response with indentations and line breaks. */
|
|
6726
7152
|
prettyPrint?: boolean;
|
|
@@ -6731,7 +7157,7 @@ declare namespace gapi.client {
|
|
|
6731
7157
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6732
7158
|
uploadType?: string;
|
|
6733
7159
|
}): Request<GooglePrivacyDlpV2ListStoredInfoTypesResponse>;
|
|
6734
|
-
/** Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See https://cloud.google.com/
|
|
7160
|
+
/** Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See https://cloud.google.com/sensitive-data-protection/docs/creating-stored-infotypes to learn more. */
|
|
6735
7161
|
patch(request: {
|
|
6736
7162
|
/** V1 error format. */
|
|
6737
7163
|
'$.xgafv'?: string;
|