@maxim_mazurok/gapi.client.dlp-v2 0.0.20240805 → 0.0.20240818
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 +109 -87
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://dlp.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240818
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -475,7 +475,7 @@ declare namespace gapi.client {
|
|
|
475
475
|
context?: GooglePrivacyDlpV2FieldId;
|
|
476
476
|
/** Required. The key used by the encryption algorithm. */
|
|
477
477
|
cryptoKey?: GooglePrivacyDlpV2CryptoKey;
|
|
478
|
-
/** This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range [2, 95]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is: 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
|
|
478
|
+
/** This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range [2, 95]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is: ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz~`!@#$%^&*()_-+={[}]|\:;"'<,>.?/`` */
|
|
479
479
|
customAlphabet?: string;
|
|
480
480
|
/** The native way to select the alphabet. Must be in the range [2, 95]. */
|
|
481
481
|
radix?: number;
|
|
@@ -535,6 +535,8 @@ declare namespace gapi.client {
|
|
|
535
535
|
exportData?: GooglePrivacyDlpV2Export;
|
|
536
536
|
/** Publish a message into the Pub/Sub topic. */
|
|
537
537
|
pubSubNotification?: GooglePrivacyDlpV2PubSubNotification;
|
|
538
|
+
/** Tags the profiled resources with the specified tag values. */
|
|
539
|
+
tagResources?: GooglePrivacyDlpV2TagResources;
|
|
538
540
|
}
|
|
539
541
|
interface GooglePrivacyDlpV2DataProfileBigQueryRowSchema {
|
|
540
542
|
/** Column data profile column */
|
|
@@ -764,6 +766,8 @@ declare namespace gapi.client {
|
|
|
764
766
|
others?: any;
|
|
765
767
|
}
|
|
766
768
|
interface GooglePrivacyDlpV2DiscoveryCloudSqlGenerationCadence {
|
|
769
|
+
/** Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update. */
|
|
770
|
+
inspectTemplateModifiedCadence?: GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence;
|
|
767
771
|
/** Data changes (non-schema changes) in Cloud SQL tables can't trigger reprofiling. If you set this field, profiles are refreshed at this frequency regardless of whether the underlying tables have changed. Defaults to never. */
|
|
768
772
|
refreshFrequency?: string;
|
|
769
773
|
/** When to reprofile if the schema has changed. */
|
|
@@ -958,9 +962,9 @@ declare namespace gapi.client {
|
|
|
958
962
|
errors?: GooglePrivacyDlpV2Error[];
|
|
959
963
|
/** The file cluster type. */
|
|
960
964
|
fileClusterType?: GooglePrivacyDlpV2FileClusterType;
|
|
961
|
-
/** A sample of file types scanned in this cluster. Empty if no files were scanned. */
|
|
965
|
+
/** A sample of file types scanned in this cluster. Empty if no files were scanned. File extensions can be derived from the file name or the file content. */
|
|
962
966
|
fileExtensionsScanned?: GooglePrivacyDlpV2FileExtensionInfo[];
|
|
963
|
-
/** A sample of file types seen in this cluster. Empty if no files were seen. */
|
|
967
|
+
/** A sample of file types seen in this cluster. Empty if no files were seen. File extensions can be derived from the file name or the file content. */
|
|
964
968
|
fileExtensionsSeen?: GooglePrivacyDlpV2FileExtensionInfo[];
|
|
965
969
|
/** InfoTypes detected in this cluster. */
|
|
966
970
|
fileStoreInfoTypeSummaries?: GooglePrivacyDlpV2FileStoreInfoTypeSummary[];
|
|
@@ -2057,6 +2061,12 @@ declare namespace gapi.client {
|
|
|
2057
2061
|
/** Name of the table. */
|
|
2058
2062
|
tableId?: string;
|
|
2059
2063
|
}
|
|
2064
|
+
interface GooglePrivacyDlpV2TagCondition {
|
|
2065
|
+
/** Conditions attaching the tag to a resource on its profile having this sensitivity score. */
|
|
2066
|
+
sensitivityScore?: GooglePrivacyDlpV2SensitivityScore;
|
|
2067
|
+
/** The tag value to attach to resources. */
|
|
2068
|
+
tag?: GooglePrivacyDlpV2TagValue;
|
|
2069
|
+
}
|
|
2060
2070
|
interface GooglePrivacyDlpV2TaggedField {
|
|
2061
2071
|
/** A column can be tagged with a custom tag. In this case, the user must indicate an auxiliary table that contains statistical information on the possible values of this column (below). */
|
|
2062
2072
|
customTag?: string;
|
|
@@ -2067,6 +2077,18 @@ declare namespace gapi.client {
|
|
|
2067
2077
|
/** A column can be tagged with a InfoType to use the relevant public dataset as a statistical model of population, if available. We currently support US ZIP codes, region codes, ages and genders. To programmatically obtain the list of supported InfoTypes, use ListInfoTypes with the supported_by=RISK_ANALYSIS filter. */
|
|
2068
2078
|
infoType?: GooglePrivacyDlpV2InfoType;
|
|
2069
2079
|
}
|
|
2080
|
+
interface GooglePrivacyDlpV2TagResources {
|
|
2081
|
+
/** Whether applying a tag to a resource should lower the risk of the profile for that resource. For example, in conjunction with an [IAM deny policy](https://cloud.google.com/iam/docs/deny-overview), you can deny all principals a permission if a tag value is present, mitigating the risk of the resource. This also lowers the data risk of resources at the lower levels of the resource hierarchy. For example, reducing the data risk of a table data profile also reduces the data risk of the constituent column data profiles. */
|
|
2082
|
+
lowerDataRiskToLow?: boolean;
|
|
2083
|
+
/** The profile generations for which the tag should be attached to resources. If you attach a tag to only new profiles, then if the sensitivity score of a profile subsequently changes, its tag doesn't change. By default, this field includes only new profiles. To include both new and updated profiles for tagging, this field should explicitly include both `PROFILE_GENERATION_NEW` and `PROFILE_GENERATION_UPDATE`. */
|
|
2084
|
+
profileGenerationsToTag?: string[];
|
|
2085
|
+
/** The tags to associate with different conditions. */
|
|
2086
|
+
tagConditions?: GooglePrivacyDlpV2TagCondition[];
|
|
2087
|
+
}
|
|
2088
|
+
interface GooglePrivacyDlpV2TagValue {
|
|
2089
|
+
/** The namespaced name for the tag value to attach to resources. Must be in the format `{parent_id}/{tag_key_short_name}/{short_name}`, for example, "123456/environment/prod". */
|
|
2090
|
+
namespacedValue?: string;
|
|
2091
|
+
}
|
|
2070
2092
|
interface GooglePrivacyDlpV2ThrowError {}
|
|
2071
2093
|
interface GooglePrivacyDlpV2TimePartConfig {
|
|
2072
2094
|
/** The part of the time to keep. */
|
|
@@ -2079,7 +2101,7 @@ declare namespace gapi.client {
|
|
|
2079
2101
|
endTime?: string;
|
|
2080
2102
|
/** Exclude files, tables, or rows older than this value. If not set, no lower time limit is applied. */
|
|
2081
2103
|
startTime?: string;
|
|
2082
|
-
/** Specification of the field containing the timestamp of scanned items. Used for data sources like Datastore and BigQuery.
|
|
2104
|
+
/** 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. */
|
|
2083
2105
|
timestampField?: GooglePrivacyDlpV2FieldId;
|
|
2084
2106
|
}
|
|
2085
2107
|
interface GooglePrivacyDlpV2TimeZone {
|
|
@@ -2298,7 +2320,7 @@ declare namespace gapi.client {
|
|
|
2298
2320
|
locationId?: string;
|
|
2299
2321
|
/** OAuth 2.0 token for the current user. */
|
|
2300
2322
|
oauth_token?: string;
|
|
2301
|
-
/** The parent resource name. The format of this value is as follows: locations/
|
|
2323
|
+
/** The parent resource name. The format of this value is as follows: `locations/{location_id}` */
|
|
2302
2324
|
parent?: string;
|
|
2303
2325
|
/** Returns response with indentations and line breaks. */
|
|
2304
2326
|
prettyPrint?: boolean;
|
|
@@ -2333,7 +2355,7 @@ declare namespace gapi.client {
|
|
|
2333
2355
|
locationId?: string;
|
|
2334
2356
|
/** OAuth 2.0 token for the current user. */
|
|
2335
2357
|
oauth_token?: string;
|
|
2336
|
-
/** The parent resource name. The format of this value is as follows: locations/
|
|
2358
|
+
/** The parent resource name. The format of this value is as follows: `locations/{location_id}` */
|
|
2337
2359
|
parent: string;
|
|
2338
2360
|
/** Returns response with indentations and line breaks. */
|
|
2339
2361
|
prettyPrint?: boolean;
|
|
@@ -2365,7 +2387,7 @@ declare namespace gapi.client {
|
|
|
2365
2387
|
key?: string;
|
|
2366
2388
|
/** OAuth 2.0 token for the current user. */
|
|
2367
2389
|
oauth_token?: string;
|
|
2368
|
-
/** 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
|
|
2390
|
+
/** 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 */
|
|
2369
2391
|
parent: string;
|
|
2370
2392
|
/** Returns response with indentations and line breaks. */
|
|
2371
2393
|
prettyPrint?: boolean;
|
|
@@ -2394,7 +2416,7 @@ declare namespace gapi.client {
|
|
|
2394
2416
|
key?: string;
|
|
2395
2417
|
/** OAuth 2.0 token for the current user. */
|
|
2396
2418
|
oauth_token?: string;
|
|
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
|
|
2419
|
+
/** 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 */
|
|
2398
2420
|
parent: string;
|
|
2399
2421
|
/** Returns response with indentations and line breaks. */
|
|
2400
2422
|
prettyPrint?: boolean;
|
|
@@ -2485,7 +2507,7 @@ declare namespace gapi.client {
|
|
|
2485
2507
|
pageSize?: number;
|
|
2486
2508
|
/** Page token to continue retrieval. Comes from the previous call to `ListDeidentifyTemplates`. */
|
|
2487
2509
|
pageToken?: string;
|
|
2488
|
-
/** 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
|
|
2510
|
+
/** 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 */
|
|
2489
2511
|
parent: string;
|
|
2490
2512
|
/** Returns response with indentations and line breaks. */
|
|
2491
2513
|
prettyPrint?: boolean;
|
|
@@ -2572,7 +2594,7 @@ declare namespace gapi.client {
|
|
|
2572
2594
|
key?: string;
|
|
2573
2595
|
/** OAuth 2.0 token for the current user. */
|
|
2574
2596
|
oauth_token?: string;
|
|
2575
|
-
/** 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
|
|
2597
|
+
/** 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 */
|
|
2576
2598
|
parent: string;
|
|
2577
2599
|
/** Returns response with indentations and line breaks. */
|
|
2578
2600
|
prettyPrint?: boolean;
|
|
@@ -2601,7 +2623,7 @@ declare namespace gapi.client {
|
|
|
2601
2623
|
key?: string;
|
|
2602
2624
|
/** OAuth 2.0 token for the current user. */
|
|
2603
2625
|
oauth_token?: string;
|
|
2604
|
-
/** 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
|
|
2626
|
+
/** 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 */
|
|
2605
2627
|
parent: string;
|
|
2606
2628
|
/** Returns response with indentations and line breaks. */
|
|
2607
2629
|
prettyPrint?: boolean;
|
|
@@ -2692,7 +2714,7 @@ declare namespace gapi.client {
|
|
|
2692
2714
|
pageSize?: number;
|
|
2693
2715
|
/** Page token to continue retrieval. Comes from the previous call to `ListInspectTemplates`. */
|
|
2694
2716
|
pageToken?: string;
|
|
2695
|
-
/** 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
|
|
2717
|
+
/** 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 */
|
|
2696
2718
|
parent: string;
|
|
2697
2719
|
/** Returns response with indentations and line breaks. */
|
|
2698
2720
|
prettyPrint?: boolean;
|
|
@@ -2843,7 +2865,7 @@ declare namespace gapi.client {
|
|
|
2843
2865
|
key?: string;
|
|
2844
2866
|
/** OAuth 2.0 token for the current user. */
|
|
2845
2867
|
oauth_token?: string;
|
|
2846
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects
|
|
2868
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects/{project_id}/locations/{location_id}` + Organizations scope: `organizations/{org_id}/locations/{location_id}` */
|
|
2847
2869
|
parent: string;
|
|
2848
2870
|
/** Returns response with indentations and line breaks. */
|
|
2849
2871
|
prettyPrint?: boolean;
|
|
@@ -2872,7 +2894,7 @@ declare namespace gapi.client {
|
|
|
2872
2894
|
key?: string;
|
|
2873
2895
|
/** OAuth 2.0 token for the current user. */
|
|
2874
2896
|
oauth_token?: string;
|
|
2875
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects
|
|
2897
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects/{project_id}/locations/{location_id}` + Organizations scope: `organizations/{org_id}/locations/{location_id}` */
|
|
2876
2898
|
parent: string;
|
|
2877
2899
|
/** Returns response with indentations and line breaks. */
|
|
2878
2900
|
prettyPrint?: boolean;
|
|
@@ -3081,7 +3103,7 @@ declare namespace gapi.client {
|
|
|
3081
3103
|
key?: string;
|
|
3082
3104
|
/** OAuth 2.0 token for the current user. */
|
|
3083
3105
|
oauth_token?: string;
|
|
3084
|
-
/** 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
|
|
3106
|
+
/** 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 */
|
|
3085
3107
|
parent: string;
|
|
3086
3108
|
/** Returns response with indentations and line breaks. */
|
|
3087
3109
|
prettyPrint?: boolean;
|
|
@@ -3110,7 +3132,7 @@ declare namespace gapi.client {
|
|
|
3110
3132
|
key?: string;
|
|
3111
3133
|
/** OAuth 2.0 token for the current user. */
|
|
3112
3134
|
oauth_token?: string;
|
|
3113
|
-
/** 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
|
|
3135
|
+
/** 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 */
|
|
3114
3136
|
parent: string;
|
|
3115
3137
|
/** Returns response with indentations and line breaks. */
|
|
3116
3138
|
prettyPrint?: boolean;
|
|
@@ -3201,7 +3223,7 @@ declare namespace gapi.client {
|
|
|
3201
3223
|
pageSize?: number;
|
|
3202
3224
|
/** Page token to continue retrieval. Comes from the previous call to `ListDeidentifyTemplates`. */
|
|
3203
3225
|
pageToken?: string;
|
|
3204
|
-
/** 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
|
|
3226
|
+
/** 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 */
|
|
3205
3227
|
parent: string;
|
|
3206
3228
|
/** Returns response with indentations and line breaks. */
|
|
3207
3229
|
prettyPrint?: boolean;
|
|
@@ -3288,7 +3310,7 @@ declare namespace gapi.client {
|
|
|
3288
3310
|
key?: string;
|
|
3289
3311
|
/** OAuth 2.0 token for the current user. */
|
|
3290
3312
|
oauth_token?: string;
|
|
3291
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects
|
|
3313
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects/{project_id}/locations/{location_id}` + Organizations scope: `organizations/{org_id}/locations/{location_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 */
|
|
3292
3314
|
parent: string;
|
|
3293
3315
|
/** Returns response with indentations and line breaks. */
|
|
3294
3316
|
prettyPrint?: boolean;
|
|
@@ -3317,7 +3339,7 @@ declare namespace gapi.client {
|
|
|
3317
3339
|
key?: string;
|
|
3318
3340
|
/** OAuth 2.0 token for the current user. */
|
|
3319
3341
|
oauth_token?: string;
|
|
3320
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects
|
|
3342
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects/{project_id}/locations/{location_id}` + Organizations scope: `organizations/{org_id}/locations/{location_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 */
|
|
3321
3343
|
parent: string;
|
|
3322
3344
|
/** Returns response with indentations and line breaks. */
|
|
3323
3345
|
prettyPrint?: boolean;
|
|
@@ -3406,7 +3428,7 @@ declare namespace gapi.client {
|
|
|
3406
3428
|
pageSize?: number;
|
|
3407
3429
|
/** Page token to continue retrieval. Comes from the previous call to ListDiscoveryConfigs. `order_by` field must not change for subsequent calls. */
|
|
3408
3430
|
pageToken?: string;
|
|
3409
|
-
/** Required. Parent resource name. The format of this value is as follows: `projects
|
|
3431
|
+
/** Required. Parent resource name. The format of this value is as follows: `projects/{project_id}/locations/{location_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 */
|
|
3410
3432
|
parent: string;
|
|
3411
3433
|
/** Returns response with indentations and line breaks. */
|
|
3412
3434
|
prettyPrint?: boolean;
|
|
@@ -3503,7 +3525,7 @@ declare namespace gapi.client {
|
|
|
3503
3525
|
pageSize?: number;
|
|
3504
3526
|
/** The standard list page token. */
|
|
3505
3527
|
pageToken?: string;
|
|
3506
|
-
/** 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
|
|
3528
|
+
/** 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 */
|
|
3507
3529
|
parent: string;
|
|
3508
3530
|
/** Returns response with indentations and line breaks. */
|
|
3509
3531
|
prettyPrint?: boolean;
|
|
@@ -3584,7 +3606,7 @@ declare namespace gapi.client {
|
|
|
3584
3606
|
callback?: string;
|
|
3585
3607
|
/** Selector specifying which fields to include in a partial response. */
|
|
3586
3608
|
fields?: string;
|
|
3587
|
-
/** Optional. 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 Google Cloud project ID. - `file_store_path` - The path like "gs://bucket". - `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` * `file_store_path = "gs://mybucket"` The length of this field should be no more than 500 characters. */
|
|
3609
|
+
/** Optional. 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 Google Cloud project ID. - `file_store_path` - The path like "gs://bucket". - `data_source_type` - The profile's data source type, like "google/storage/bucket". - `data_storage_location` - The location where the file store's data is stored, like "us-central1". - `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` * `file_store_path = "gs://mybucket"` The length of this field should be no more than 500 characters. */
|
|
3588
3610
|
filter?: string;
|
|
3589
3611
|
/** 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. */
|
|
3590
3612
|
key?: string;
|
|
@@ -3625,7 +3647,7 @@ declare namespace gapi.client {
|
|
|
3625
3647
|
key?: string;
|
|
3626
3648
|
/** OAuth 2.0 token for the current user. */
|
|
3627
3649
|
oauth_token?: string;
|
|
3628
|
-
/** 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
|
|
3650
|
+
/** 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 */
|
|
3629
3651
|
parent: string;
|
|
3630
3652
|
/** Returns response with indentations and line breaks. */
|
|
3631
3653
|
prettyPrint?: boolean;
|
|
@@ -3654,7 +3676,7 @@ declare namespace gapi.client {
|
|
|
3654
3676
|
key?: string;
|
|
3655
3677
|
/** OAuth 2.0 token for the current user. */
|
|
3656
3678
|
oauth_token?: string;
|
|
3657
|
-
/** 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
|
|
3679
|
+
/** 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 */
|
|
3658
3680
|
parent: string;
|
|
3659
3681
|
/** Returns response with indentations and line breaks. */
|
|
3660
3682
|
prettyPrint?: boolean;
|
|
@@ -3745,7 +3767,7 @@ declare namespace gapi.client {
|
|
|
3745
3767
|
pageSize?: number;
|
|
3746
3768
|
/** Page token to continue retrieval. Comes from the previous call to `ListInspectTemplates`. */
|
|
3747
3769
|
pageToken?: string;
|
|
3748
|
-
/** 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
|
|
3770
|
+
/** 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 */
|
|
3749
3771
|
parent: string;
|
|
3750
3772
|
/** Returns response with indentations and line breaks. */
|
|
3751
3773
|
prettyPrint?: boolean;
|
|
@@ -3832,7 +3854,7 @@ declare namespace gapi.client {
|
|
|
3832
3854
|
key?: string;
|
|
3833
3855
|
/** OAuth 2.0 token for the current user. */
|
|
3834
3856
|
oauth_token?: string;
|
|
3835
|
-
/** 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
|
|
3857
|
+
/** 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 */
|
|
3836
3858
|
parent: string;
|
|
3837
3859
|
/** Returns response with indentations and line breaks. */
|
|
3838
3860
|
prettyPrint?: boolean;
|
|
@@ -3861,7 +3883,7 @@ declare namespace gapi.client {
|
|
|
3861
3883
|
key?: string;
|
|
3862
3884
|
/** OAuth 2.0 token for the current user. */
|
|
3863
3885
|
oauth_token?: string;
|
|
3864
|
-
/** 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
|
|
3886
|
+
/** 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 */
|
|
3865
3887
|
parent: string;
|
|
3866
3888
|
/** Returns response with indentations and line breaks. */
|
|
3867
3889
|
prettyPrint?: boolean;
|
|
@@ -3954,7 +3976,7 @@ declare namespace gapi.client {
|
|
|
3954
3976
|
pageSize?: number;
|
|
3955
3977
|
/** Page token to continue retrieval. Comes from the previous call to ListJobTriggers. `order_by` field must not change for subsequent calls. */
|
|
3956
3978
|
pageToken?: string;
|
|
3957
|
-
/** 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
|
|
3979
|
+
/** 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 */
|
|
3958
3980
|
parent: string;
|
|
3959
3981
|
/** Returns response with indentations and line breaks. */
|
|
3960
3982
|
prettyPrint?: boolean;
|
|
@@ -4107,7 +4129,7 @@ declare namespace gapi.client {
|
|
|
4107
4129
|
key?: string;
|
|
4108
4130
|
/** OAuth 2.0 token for the current user. */
|
|
4109
4131
|
oauth_token?: string;
|
|
4110
|
-
/** 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
|
|
4132
|
+
/** 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 */
|
|
4111
4133
|
parent: string;
|
|
4112
4134
|
/** Returns response with indentations and line breaks. */
|
|
4113
4135
|
prettyPrint?: boolean;
|
|
@@ -4136,7 +4158,7 @@ declare namespace gapi.client {
|
|
|
4136
4158
|
key?: string;
|
|
4137
4159
|
/** OAuth 2.0 token for the current user. */
|
|
4138
4160
|
oauth_token?: string;
|
|
4139
|
-
/** 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
|
|
4161
|
+
/** 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 */
|
|
4140
4162
|
parent: string;
|
|
4141
4163
|
/** Returns response with indentations and line breaks. */
|
|
4142
4164
|
prettyPrint?: boolean;
|
|
@@ -4227,7 +4249,7 @@ declare namespace gapi.client {
|
|
|
4227
4249
|
pageSize?: number;
|
|
4228
4250
|
/** Page token to continue retrieval. Comes from the previous call to `ListStoredInfoTypes`. */
|
|
4229
4251
|
pageToken?: string;
|
|
4230
|
-
/** 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
|
|
4252
|
+
/** 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 */
|
|
4231
4253
|
parent: string;
|
|
4232
4254
|
/** Returns response with indentations and line breaks. */
|
|
4233
4255
|
prettyPrint?: boolean;
|
|
@@ -4418,7 +4440,7 @@ declare namespace gapi.client {
|
|
|
4418
4440
|
key?: string;
|
|
4419
4441
|
/** OAuth 2.0 token for the current user. */
|
|
4420
4442
|
oauth_token?: string;
|
|
4421
|
-
/** 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
|
|
4443
|
+
/** 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 */
|
|
4422
4444
|
parent: string;
|
|
4423
4445
|
/** Returns response with indentations and line breaks. */
|
|
4424
4446
|
prettyPrint?: boolean;
|
|
@@ -4447,7 +4469,7 @@ declare namespace gapi.client {
|
|
|
4447
4469
|
key?: string;
|
|
4448
4470
|
/** OAuth 2.0 token for the current user. */
|
|
4449
4471
|
oauth_token?: string;
|
|
4450
|
-
/** 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
|
|
4472
|
+
/** 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 */
|
|
4451
4473
|
parent: string;
|
|
4452
4474
|
/** Returns response with indentations and line breaks. */
|
|
4453
4475
|
prettyPrint?: boolean;
|
|
@@ -4538,7 +4560,7 @@ declare namespace gapi.client {
|
|
|
4538
4560
|
pageSize?: number;
|
|
4539
4561
|
/** Page token to continue retrieval. Comes from the previous call to `ListStoredInfoTypes`. */
|
|
4540
4562
|
pageToken?: string;
|
|
4541
|
-
/** 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
|
|
4563
|
+
/** 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 */
|
|
4542
4564
|
parent: string;
|
|
4543
4565
|
/** Returns response with indentations and line breaks. */
|
|
4544
4566
|
prettyPrint?: boolean;
|
|
@@ -4631,7 +4653,7 @@ declare namespace gapi.client {
|
|
|
4631
4653
|
key?: string;
|
|
4632
4654
|
/** OAuth 2.0 token for the current user. */
|
|
4633
4655
|
oauth_token?: string;
|
|
4634
|
-
/** 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
|
|
4656
|
+
/** 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 */
|
|
4635
4657
|
parent: string;
|
|
4636
4658
|
/** Returns response with indentations and line breaks. */
|
|
4637
4659
|
prettyPrint?: boolean;
|
|
@@ -4660,7 +4682,7 @@ declare namespace gapi.client {
|
|
|
4660
4682
|
key?: string;
|
|
4661
4683
|
/** OAuth 2.0 token for the current user. */
|
|
4662
4684
|
oauth_token?: string;
|
|
4663
|
-
/** 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
|
|
4685
|
+
/** 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 */
|
|
4664
4686
|
parent: string;
|
|
4665
4687
|
/** Returns response with indentations and line breaks. */
|
|
4666
4688
|
prettyPrint?: boolean;
|
|
@@ -4689,7 +4711,7 @@ declare namespace gapi.client {
|
|
|
4689
4711
|
key?: string;
|
|
4690
4712
|
/** OAuth 2.0 token for the current user. */
|
|
4691
4713
|
oauth_token?: string;
|
|
4692
|
-
/** 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
|
|
4714
|
+
/** 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 */
|
|
4693
4715
|
parent: string;
|
|
4694
4716
|
/** Returns response with indentations and line breaks. */
|
|
4695
4717
|
prettyPrint?: boolean;
|
|
@@ -4718,7 +4740,7 @@ declare namespace gapi.client {
|
|
|
4718
4740
|
key?: string;
|
|
4719
4741
|
/** OAuth 2.0 token for the current user. */
|
|
4720
4742
|
oauth_token?: string;
|
|
4721
|
-
/** 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
|
|
4743
|
+
/** 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 */
|
|
4722
4744
|
parent: string;
|
|
4723
4745
|
/** Returns response with indentations and line breaks. */
|
|
4724
4746
|
prettyPrint?: boolean;
|
|
@@ -4747,7 +4769,7 @@ declare namespace gapi.client {
|
|
|
4747
4769
|
key?: string;
|
|
4748
4770
|
/** OAuth 2.0 token for the current user. */
|
|
4749
4771
|
oauth_token?: string;
|
|
4750
|
-
/** 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
|
|
4772
|
+
/** 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 */
|
|
4751
4773
|
parent: string;
|
|
4752
4774
|
/** Returns response with indentations and line breaks. */
|
|
4753
4775
|
prettyPrint?: boolean;
|
|
@@ -4776,7 +4798,7 @@ declare namespace gapi.client {
|
|
|
4776
4798
|
key?: string;
|
|
4777
4799
|
/** OAuth 2.0 token for the current user. */
|
|
4778
4800
|
oauth_token?: string;
|
|
4779
|
-
/** 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
|
|
4801
|
+
/** 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 */
|
|
4780
4802
|
parent: string;
|
|
4781
4803
|
/** Returns response with indentations and line breaks. */
|
|
4782
4804
|
prettyPrint?: boolean;
|
|
@@ -4807,7 +4829,7 @@ declare namespace gapi.client {
|
|
|
4807
4829
|
key?: string;
|
|
4808
4830
|
/** OAuth 2.0 token for the current user. */
|
|
4809
4831
|
oauth_token?: string;
|
|
4810
|
-
/** 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
|
|
4832
|
+
/** 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 */
|
|
4811
4833
|
parent: string;
|
|
4812
4834
|
/** Returns response with indentations and line breaks. */
|
|
4813
4835
|
prettyPrint?: boolean;
|
|
@@ -4836,7 +4858,7 @@ declare namespace gapi.client {
|
|
|
4836
4858
|
key?: string;
|
|
4837
4859
|
/** OAuth 2.0 token for the current user. */
|
|
4838
4860
|
oauth_token?: string;
|
|
4839
|
-
/** 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
|
|
4861
|
+
/** 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 */
|
|
4840
4862
|
parent: string;
|
|
4841
4863
|
/** Returns response with indentations and line breaks. */
|
|
4842
4864
|
prettyPrint?: boolean;
|
|
@@ -4927,7 +4949,7 @@ declare namespace gapi.client {
|
|
|
4927
4949
|
pageSize?: number;
|
|
4928
4950
|
/** Page token to continue retrieval. Comes from the previous call to `ListDeidentifyTemplates`. */
|
|
4929
4951
|
pageToken?: string;
|
|
4930
|
-
/** 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
|
|
4952
|
+
/** 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 */
|
|
4931
4953
|
parent: string;
|
|
4932
4954
|
/** Returns response with indentations and line breaks. */
|
|
4933
4955
|
prettyPrint?: boolean;
|
|
@@ -5072,7 +5094,7 @@ declare namespace gapi.client {
|
|
|
5072
5094
|
key?: string;
|
|
5073
5095
|
/** OAuth 2.0 token for the current user. */
|
|
5074
5096
|
oauth_token?: string;
|
|
5075
|
-
/** 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
|
|
5097
|
+
/** 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 */
|
|
5076
5098
|
parent: string;
|
|
5077
5099
|
/** Returns response with indentations and line breaks. */
|
|
5078
5100
|
prettyPrint?: boolean;
|
|
@@ -5101,7 +5123,7 @@ declare namespace gapi.client {
|
|
|
5101
5123
|
key?: string;
|
|
5102
5124
|
/** OAuth 2.0 token for the current user. */
|
|
5103
5125
|
oauth_token?: string;
|
|
5104
|
-
/** 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
|
|
5126
|
+
/** 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 */
|
|
5105
5127
|
parent: string;
|
|
5106
5128
|
/** Returns response with indentations and line breaks. */
|
|
5107
5129
|
prettyPrint?: boolean;
|
|
@@ -5194,7 +5216,7 @@ declare namespace gapi.client {
|
|
|
5194
5216
|
pageSize?: number;
|
|
5195
5217
|
/** The standard list page token. */
|
|
5196
5218
|
pageToken?: string;
|
|
5197
|
-
/** 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
|
|
5219
|
+
/** 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 */
|
|
5198
5220
|
parent: string;
|
|
5199
5221
|
/** Returns response with indentations and line breaks. */
|
|
5200
5222
|
prettyPrint?: boolean;
|
|
@@ -5225,7 +5247,7 @@ declare namespace gapi.client {
|
|
|
5225
5247
|
key?: string;
|
|
5226
5248
|
/** OAuth 2.0 token for the current user. */
|
|
5227
5249
|
oauth_token?: string;
|
|
5228
|
-
/** 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
|
|
5250
|
+
/** 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 */
|
|
5229
5251
|
parent: string;
|
|
5230
5252
|
/** Returns response with indentations and line breaks. */
|
|
5231
5253
|
prettyPrint?: boolean;
|
|
@@ -5254,7 +5276,7 @@ declare namespace gapi.client {
|
|
|
5254
5276
|
key?: string;
|
|
5255
5277
|
/** OAuth 2.0 token for the current user. */
|
|
5256
5278
|
oauth_token?: string;
|
|
5257
|
-
/** 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
|
|
5279
|
+
/** 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 */
|
|
5258
5280
|
parent: string;
|
|
5259
5281
|
/** Returns response with indentations and line breaks. */
|
|
5260
5282
|
prettyPrint?: boolean;
|
|
@@ -5285,7 +5307,7 @@ declare namespace gapi.client {
|
|
|
5285
5307
|
key?: string;
|
|
5286
5308
|
/** OAuth 2.0 token for the current user. */
|
|
5287
5309
|
oauth_token?: string;
|
|
5288
|
-
/** 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
|
|
5310
|
+
/** 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 */
|
|
5289
5311
|
parent: string;
|
|
5290
5312
|
/** Returns response with indentations and line breaks. */
|
|
5291
5313
|
prettyPrint?: boolean;
|
|
@@ -5314,7 +5336,7 @@ declare namespace gapi.client {
|
|
|
5314
5336
|
key?: string;
|
|
5315
5337
|
/** OAuth 2.0 token for the current user. */
|
|
5316
5338
|
oauth_token?: string;
|
|
5317
|
-
/** 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
|
|
5339
|
+
/** 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 */
|
|
5318
5340
|
parent: string;
|
|
5319
5341
|
/** Returns response with indentations and line breaks. */
|
|
5320
5342
|
prettyPrint?: boolean;
|
|
@@ -5405,7 +5427,7 @@ declare namespace gapi.client {
|
|
|
5405
5427
|
pageSize?: number;
|
|
5406
5428
|
/** Page token to continue retrieval. Comes from the previous call to `ListInspectTemplates`. */
|
|
5407
5429
|
pageToken?: string;
|
|
5408
|
-
/** 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
|
|
5430
|
+
/** 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 */
|
|
5409
5431
|
parent: string;
|
|
5410
5432
|
/** Returns response with indentations and line breaks. */
|
|
5411
5433
|
prettyPrint?: boolean;
|
|
@@ -5550,7 +5572,7 @@ declare namespace gapi.client {
|
|
|
5550
5572
|
key?: string;
|
|
5551
5573
|
/** OAuth 2.0 token for the current user. */
|
|
5552
5574
|
oauth_token?: string;
|
|
5553
|
-
/** 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
|
|
5575
|
+
/** 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 */
|
|
5554
5576
|
parent: string;
|
|
5555
5577
|
/** Returns response with indentations and line breaks. */
|
|
5556
5578
|
prettyPrint?: boolean;
|
|
@@ -5579,7 +5601,7 @@ declare namespace gapi.client {
|
|
|
5579
5601
|
key?: string;
|
|
5580
5602
|
/** OAuth 2.0 token for the current user. */
|
|
5581
5603
|
oauth_token?: string;
|
|
5582
|
-
/** 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
|
|
5604
|
+
/** 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 */
|
|
5583
5605
|
parent: string;
|
|
5584
5606
|
/** Returns response with indentations and line breaks. */
|
|
5585
5607
|
prettyPrint?: boolean;
|
|
@@ -5672,7 +5694,7 @@ declare namespace gapi.client {
|
|
|
5672
5694
|
pageSize?: number;
|
|
5673
5695
|
/** Page token to continue retrieval. Comes from the previous call to ListJobTriggers. `order_by` field must not change for subsequent calls. */
|
|
5674
5696
|
pageToken?: string;
|
|
5675
|
-
/** 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
|
|
5697
|
+
/** 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 */
|
|
5676
5698
|
parent: string;
|
|
5677
5699
|
/** Returns response with indentations and line breaks. */
|
|
5678
5700
|
prettyPrint?: boolean;
|
|
@@ -5825,7 +5847,7 @@ declare namespace gapi.client {
|
|
|
5825
5847
|
key?: string;
|
|
5826
5848
|
/** OAuth 2.0 token for the current user. */
|
|
5827
5849
|
oauth_token?: string;
|
|
5828
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects
|
|
5850
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects/{project_id}/locations/{location_id}` + Organizations scope: `organizations/{org_id}/locations/{location_id}` */
|
|
5829
5851
|
parent: string;
|
|
5830
5852
|
/** Returns response with indentations and line breaks. */
|
|
5831
5853
|
prettyPrint?: boolean;
|
|
@@ -5854,7 +5876,7 @@ declare namespace gapi.client {
|
|
|
5854
5876
|
key?: string;
|
|
5855
5877
|
/** OAuth 2.0 token for the current user. */
|
|
5856
5878
|
oauth_token?: string;
|
|
5857
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects
|
|
5879
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects/{project_id}/locations/{location_id}` + Organizations scope: `organizations/{org_id}/locations/{location_id}` */
|
|
5858
5880
|
parent: string;
|
|
5859
5881
|
/** Returns response with indentations and line breaks. */
|
|
5860
5882
|
prettyPrint?: boolean;
|
|
@@ -6063,7 +6085,7 @@ declare namespace gapi.client {
|
|
|
6063
6085
|
key?: string;
|
|
6064
6086
|
/** OAuth 2.0 token for the current user. */
|
|
6065
6087
|
oauth_token?: string;
|
|
6066
|
-
/** 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
|
|
6088
|
+
/** 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 */
|
|
6067
6089
|
parent: string;
|
|
6068
6090
|
/** Returns response with indentations and line breaks. */
|
|
6069
6091
|
prettyPrint?: boolean;
|
|
@@ -6092,7 +6114,7 @@ declare namespace gapi.client {
|
|
|
6092
6114
|
key?: string;
|
|
6093
6115
|
/** OAuth 2.0 token for the current user. */
|
|
6094
6116
|
oauth_token?: string;
|
|
6095
|
-
/** 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
|
|
6117
|
+
/** 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 */
|
|
6096
6118
|
parent: string;
|
|
6097
6119
|
/** Returns response with indentations and line breaks. */
|
|
6098
6120
|
prettyPrint?: boolean;
|
|
@@ -6121,7 +6143,7 @@ declare namespace gapi.client {
|
|
|
6121
6143
|
key?: string;
|
|
6122
6144
|
/** OAuth 2.0 token for the current user. */
|
|
6123
6145
|
oauth_token?: string;
|
|
6124
|
-
/** 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
|
|
6146
|
+
/** 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 */
|
|
6125
6147
|
parent: string;
|
|
6126
6148
|
/** Returns response with indentations and line breaks. */
|
|
6127
6149
|
prettyPrint?: boolean;
|
|
@@ -6150,7 +6172,7 @@ declare namespace gapi.client {
|
|
|
6150
6172
|
key?: string;
|
|
6151
6173
|
/** OAuth 2.0 token for the current user. */
|
|
6152
6174
|
oauth_token?: string;
|
|
6153
|
-
/** 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
|
|
6175
|
+
/** 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 */
|
|
6154
6176
|
parent: string;
|
|
6155
6177
|
/** Returns response with indentations and line breaks. */
|
|
6156
6178
|
prettyPrint?: boolean;
|
|
@@ -6179,7 +6201,7 @@ declare namespace gapi.client {
|
|
|
6179
6201
|
key?: string;
|
|
6180
6202
|
/** OAuth 2.0 token for the current user. */
|
|
6181
6203
|
oauth_token?: string;
|
|
6182
|
-
/** 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
|
|
6204
|
+
/** 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 */
|
|
6183
6205
|
parent: string;
|
|
6184
6206
|
/** Returns response with indentations and line breaks. */
|
|
6185
6207
|
prettyPrint?: boolean;
|
|
@@ -6208,7 +6230,7 @@ declare namespace gapi.client {
|
|
|
6208
6230
|
key?: string;
|
|
6209
6231
|
/** OAuth 2.0 token for the current user. */
|
|
6210
6232
|
oauth_token?: string;
|
|
6211
|
-
/** 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
|
|
6233
|
+
/** 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 */
|
|
6212
6234
|
parent: string;
|
|
6213
6235
|
/** Returns response with indentations and line breaks. */
|
|
6214
6236
|
prettyPrint?: boolean;
|
|
@@ -6239,7 +6261,7 @@ declare namespace gapi.client {
|
|
|
6239
6261
|
key?: string;
|
|
6240
6262
|
/** OAuth 2.0 token for the current user. */
|
|
6241
6263
|
oauth_token?: string;
|
|
6242
|
-
/** 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
|
|
6264
|
+
/** 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 */
|
|
6243
6265
|
parent: string;
|
|
6244
6266
|
/** Returns response with indentations and line breaks. */
|
|
6245
6267
|
prettyPrint?: boolean;
|
|
@@ -6268,7 +6290,7 @@ declare namespace gapi.client {
|
|
|
6268
6290
|
key?: string;
|
|
6269
6291
|
/** OAuth 2.0 token for the current user. */
|
|
6270
6292
|
oauth_token?: string;
|
|
6271
|
-
/** 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
|
|
6293
|
+
/** 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 */
|
|
6272
6294
|
parent: string;
|
|
6273
6295
|
/** Returns response with indentations and line breaks. */
|
|
6274
6296
|
prettyPrint?: boolean;
|
|
@@ -6359,7 +6381,7 @@ declare namespace gapi.client {
|
|
|
6359
6381
|
pageSize?: number;
|
|
6360
6382
|
/** Page token to continue retrieval. Comes from the previous call to `ListDeidentifyTemplates`. */
|
|
6361
6383
|
pageToken?: string;
|
|
6362
|
-
/** 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
|
|
6384
|
+
/** 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 */
|
|
6363
6385
|
parent: string;
|
|
6364
6386
|
/** Returns response with indentations and line breaks. */
|
|
6365
6387
|
prettyPrint?: boolean;
|
|
@@ -6446,7 +6468,7 @@ declare namespace gapi.client {
|
|
|
6446
6468
|
key?: string;
|
|
6447
6469
|
/** OAuth 2.0 token for the current user. */
|
|
6448
6470
|
oauth_token?: string;
|
|
6449
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects
|
|
6471
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects/{project_id}/locations/{location_id}` + Organizations scope: `organizations/{org_id}/locations/{location_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 */
|
|
6450
6472
|
parent: string;
|
|
6451
6473
|
/** Returns response with indentations and line breaks. */
|
|
6452
6474
|
prettyPrint?: boolean;
|
|
@@ -6475,7 +6497,7 @@ declare namespace gapi.client {
|
|
|
6475
6497
|
key?: string;
|
|
6476
6498
|
/** OAuth 2.0 token for the current user. */
|
|
6477
6499
|
oauth_token?: string;
|
|
6478
|
-
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects
|
|
6500
|
+
/** Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization): + Projects scope: `projects/{project_id}/locations/{location_id}` + Organizations scope: `organizations/{org_id}/locations/{location_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 */
|
|
6479
6501
|
parent: string;
|
|
6480
6502
|
/** Returns response with indentations and line breaks. */
|
|
6481
6503
|
prettyPrint?: boolean;
|
|
@@ -6564,7 +6586,7 @@ declare namespace gapi.client {
|
|
|
6564
6586
|
pageSize?: number;
|
|
6565
6587
|
/** Page token to continue retrieval. Comes from the previous call to ListDiscoveryConfigs. `order_by` field must not change for subsequent calls. */
|
|
6566
6588
|
pageToken?: string;
|
|
6567
|
-
/** Required. Parent resource name. The format of this value is as follows: `projects
|
|
6589
|
+
/** Required. Parent resource name. The format of this value is as follows: `projects/{project_id}/locations/{location_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 */
|
|
6568
6590
|
parent: string;
|
|
6569
6591
|
/** Returns response with indentations and line breaks. */
|
|
6570
6592
|
prettyPrint?: boolean;
|
|
@@ -6709,7 +6731,7 @@ declare namespace gapi.client {
|
|
|
6709
6731
|
key?: string;
|
|
6710
6732
|
/** OAuth 2.0 token for the current user. */
|
|
6711
6733
|
oauth_token?: string;
|
|
6712
|
-
/** 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
|
|
6734
|
+
/** 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 */
|
|
6713
6735
|
parent: string;
|
|
6714
6736
|
/** Returns response with indentations and line breaks. */
|
|
6715
6737
|
prettyPrint?: boolean;
|
|
@@ -6738,7 +6760,7 @@ declare namespace gapi.client {
|
|
|
6738
6760
|
key?: string;
|
|
6739
6761
|
/** OAuth 2.0 token for the current user. */
|
|
6740
6762
|
oauth_token?: string;
|
|
6741
|
-
/** 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
|
|
6763
|
+
/** 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 */
|
|
6742
6764
|
parent: string;
|
|
6743
6765
|
/** Returns response with indentations and line breaks. */
|
|
6744
6766
|
prettyPrint?: boolean;
|
|
@@ -6947,7 +6969,7 @@ declare namespace gapi.client {
|
|
|
6947
6969
|
pageSize?: number;
|
|
6948
6970
|
/** The standard list page token. */
|
|
6949
6971
|
pageToken?: string;
|
|
6950
|
-
/** 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
|
|
6972
|
+
/** 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 */
|
|
6951
6973
|
parent: string;
|
|
6952
6974
|
/** Returns response with indentations and line breaks. */
|
|
6953
6975
|
prettyPrint?: boolean;
|
|
@@ -7028,7 +7050,7 @@ declare namespace gapi.client {
|
|
|
7028
7050
|
callback?: string;
|
|
7029
7051
|
/** Selector specifying which fields to include in a partial response. */
|
|
7030
7052
|
fields?: string;
|
|
7031
|
-
/** Optional. 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 Google Cloud project ID. - `file_store_path` - The path like "gs://bucket". - `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` * `file_store_path = "gs://mybucket"` The length of this field should be no more than 500 characters. */
|
|
7053
|
+
/** Optional. 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 Google Cloud project ID. - `file_store_path` - The path like "gs://bucket". - `data_source_type` - The profile's data source type, like "google/storage/bucket". - `data_storage_location` - The location where the file store's data is stored, like "us-central1". - `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` * `file_store_path = "gs://mybucket"` The length of this field should be no more than 500 characters. */
|
|
7032
7054
|
filter?: string;
|
|
7033
7055
|
/** 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. */
|
|
7034
7056
|
key?: string;
|
|
@@ -7069,7 +7091,7 @@ declare namespace gapi.client {
|
|
|
7069
7091
|
key?: string;
|
|
7070
7092
|
/** OAuth 2.0 token for the current user. */
|
|
7071
7093
|
oauth_token?: string;
|
|
7072
|
-
/** 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
|
|
7094
|
+
/** 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 */
|
|
7073
7095
|
parent: string;
|
|
7074
7096
|
/** Returns response with indentations and line breaks. */
|
|
7075
7097
|
prettyPrint?: boolean;
|
|
@@ -7098,7 +7120,7 @@ declare namespace gapi.client {
|
|
|
7098
7120
|
key?: string;
|
|
7099
7121
|
/** OAuth 2.0 token for the current user. */
|
|
7100
7122
|
oauth_token?: string;
|
|
7101
|
-
/** 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
|
|
7123
|
+
/** 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 */
|
|
7102
7124
|
parent: string;
|
|
7103
7125
|
/** Returns response with indentations and line breaks. */
|
|
7104
7126
|
prettyPrint?: boolean;
|
|
@@ -7129,7 +7151,7 @@ declare namespace gapi.client {
|
|
|
7129
7151
|
key?: string;
|
|
7130
7152
|
/** OAuth 2.0 token for the current user. */
|
|
7131
7153
|
oauth_token?: string;
|
|
7132
|
-
/** 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
|
|
7154
|
+
/** 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 */
|
|
7133
7155
|
parent: string;
|
|
7134
7156
|
/** Returns response with indentations and line breaks. */
|
|
7135
7157
|
prettyPrint?: boolean;
|
|
@@ -7158,7 +7180,7 @@ declare namespace gapi.client {
|
|
|
7158
7180
|
key?: string;
|
|
7159
7181
|
/** OAuth 2.0 token for the current user. */
|
|
7160
7182
|
oauth_token?: string;
|
|
7161
|
-
/** 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
|
|
7183
|
+
/** 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 */
|
|
7162
7184
|
parent: string;
|
|
7163
7185
|
/** Returns response with indentations and line breaks. */
|
|
7164
7186
|
prettyPrint?: boolean;
|
|
@@ -7249,7 +7271,7 @@ declare namespace gapi.client {
|
|
|
7249
7271
|
pageSize?: number;
|
|
7250
7272
|
/** Page token to continue retrieval. Comes from the previous call to `ListInspectTemplates`. */
|
|
7251
7273
|
pageToken?: string;
|
|
7252
|
-
/** 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
|
|
7274
|
+
/** 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 */
|
|
7253
7275
|
parent: string;
|
|
7254
7276
|
/** Returns response with indentations and line breaks. */
|
|
7255
7277
|
prettyPrint?: boolean;
|
|
@@ -7394,7 +7416,7 @@ declare namespace gapi.client {
|
|
|
7394
7416
|
key?: string;
|
|
7395
7417
|
/** OAuth 2.0 token for the current user. */
|
|
7396
7418
|
oauth_token?: string;
|
|
7397
|
-
/** 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
|
|
7419
|
+
/** 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 */
|
|
7398
7420
|
parent: string;
|
|
7399
7421
|
/** Returns response with indentations and line breaks. */
|
|
7400
7422
|
prettyPrint?: boolean;
|
|
@@ -7423,7 +7445,7 @@ declare namespace gapi.client {
|
|
|
7423
7445
|
key?: string;
|
|
7424
7446
|
/** OAuth 2.0 token for the current user. */
|
|
7425
7447
|
oauth_token?: string;
|
|
7426
|
-
/** 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
|
|
7448
|
+
/** 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 */
|
|
7427
7449
|
parent: string;
|
|
7428
7450
|
/** Returns response with indentations and line breaks. */
|
|
7429
7451
|
prettyPrint?: boolean;
|
|
@@ -7574,7 +7596,7 @@ declare namespace gapi.client {
|
|
|
7574
7596
|
pageSize?: number;
|
|
7575
7597
|
/** Page token to continue retrieval. Comes from the previous call to ListJobTriggers. `order_by` field must not change for subsequent calls. */
|
|
7576
7598
|
pageToken?: string;
|
|
7577
|
-
/** 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
|
|
7599
|
+
/** 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 */
|
|
7578
7600
|
parent: string;
|
|
7579
7601
|
/** Returns response with indentations and line breaks. */
|
|
7580
7602
|
prettyPrint?: boolean;
|
|
@@ -7727,7 +7749,7 @@ declare namespace gapi.client {
|
|
|
7727
7749
|
key?: string;
|
|
7728
7750
|
/** OAuth 2.0 token for the current user. */
|
|
7729
7751
|
oauth_token?: string;
|
|
7730
|
-
/** 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
|
|
7752
|
+
/** 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 */
|
|
7731
7753
|
parent: string;
|
|
7732
7754
|
/** Returns response with indentations and line breaks. */
|
|
7733
7755
|
prettyPrint?: boolean;
|
|
@@ -7756,7 +7778,7 @@ declare namespace gapi.client {
|
|
|
7756
7778
|
key?: string;
|
|
7757
7779
|
/** OAuth 2.0 token for the current user. */
|
|
7758
7780
|
oauth_token?: string;
|
|
7759
|
-
/** 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
|
|
7781
|
+
/** 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 */
|
|
7760
7782
|
parent: string;
|
|
7761
7783
|
/** Returns response with indentations and line breaks. */
|
|
7762
7784
|
prettyPrint?: boolean;
|
|
@@ -7847,7 +7869,7 @@ declare namespace gapi.client {
|
|
|
7847
7869
|
pageSize?: number;
|
|
7848
7870
|
/** Page token to continue retrieval. Comes from the previous call to `ListStoredInfoTypes`. */
|
|
7849
7871
|
pageToken?: string;
|
|
7850
|
-
/** 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
|
|
7872
|
+
/** 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 */
|
|
7851
7873
|
parent: string;
|
|
7852
7874
|
/** Returns response with indentations and line breaks. */
|
|
7853
7875
|
prettyPrint?: boolean;
|
|
@@ -8040,7 +8062,7 @@ declare namespace gapi.client {
|
|
|
8040
8062
|
key?: string;
|
|
8041
8063
|
/** OAuth 2.0 token for the current user. */
|
|
8042
8064
|
oauth_token?: string;
|
|
8043
|
-
/** 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
|
|
8065
|
+
/** 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 */
|
|
8044
8066
|
parent: string;
|
|
8045
8067
|
/** Returns response with indentations and line breaks. */
|
|
8046
8068
|
prettyPrint?: boolean;
|
|
@@ -8069,7 +8091,7 @@ declare namespace gapi.client {
|
|
|
8069
8091
|
key?: string;
|
|
8070
8092
|
/** OAuth 2.0 token for the current user. */
|
|
8071
8093
|
oauth_token?: string;
|
|
8072
|
-
/** 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
|
|
8094
|
+
/** 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 */
|
|
8073
8095
|
parent: string;
|
|
8074
8096
|
/** Returns response with indentations and line breaks. */
|
|
8075
8097
|
prettyPrint?: boolean;
|
|
@@ -8160,7 +8182,7 @@ declare namespace gapi.client {
|
|
|
8160
8182
|
pageSize?: number;
|
|
8161
8183
|
/** Page token to continue retrieval. Comes from the previous call to `ListStoredInfoTypes`. */
|
|
8162
8184
|
pageToken?: string;
|
|
8163
|
-
/** 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
|
|
8185
|
+
/** 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 */
|
|
8164
8186
|
parent: string;
|
|
8165
8187
|
/** Returns response with indentations and line breaks. */
|
|
8166
8188
|
prettyPrint?: boolean;
|