@maxim_mazurok/gapi.client.dataplex-v1 0.1.20260310 → 0.2.20260310

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.
Files changed (2) hide show
  1. package/index.d.ts +807 -588
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -29,7 +29,11 @@ declare namespace gapi.client {
29
29
  /** Output only. The relative resource name of the asset, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/assets/{asset_id}. */
30
30
  asset?: string;
31
31
  /** The category of issue associated with the action. */
32
- category?: string;
32
+ category?:
33
+ | 'CATEGORY_UNSPECIFIED'
34
+ | 'RESOURCE_MANAGEMENT'
35
+ | 'SECURITY_POLICY'
36
+ | 'DATA_DISCOVERY';
33
37
  /** The list of data locations associated with this action. Cloud Storage locations are represented as URI paths(E.g. gs://bucket/table1/year=2020/month=Jan/). BigQuery locations refer to resource names(E.g. bigquery.googleapis.com/projects/project-id/datasets/dataset-id). */
34
38
  dataLocations?: string[];
35
39
  /** The time that the issue was detected. */
@@ -71,7 +75,7 @@ declare namespace gapi.client {
71
75
  /** The list of data locations sampled and used for format/schema inference. */
72
76
  sampledDataLocations?: string[];
73
77
  /** Whether the action relates to a schema that is incompatible or modified. */
74
- schemaChange?: string;
78
+ schemaChange?: 'SCHEMA_CHANGE_UNSPECIFIED' | 'INCOMPATIBLE' | 'MODIFIED';
75
79
  /** The name of the table containing invalid data. */
76
80
  table?: string;
77
81
  }
@@ -86,7 +90,10 @@ declare namespace gapi.client {
86
90
  interface GoogleCloudDataplexV1ActionInvalidDataOrganization {}
87
91
  interface GoogleCloudDataplexV1ActionInvalidDataPartition {
88
92
  /** The issue type of InvalidDataPartition. */
89
- expectedStructure?: string;
93
+ expectedStructure?:
94
+ | 'PARTITION_STRUCTURE_UNSPECIFIED'
95
+ | 'CONSISTENT_KEYS'
96
+ | 'HIVE_STYLE_KEYS';
90
97
  }
91
98
  interface GoogleCloudDataplexV1ActionMissingData {}
92
99
  interface GoogleCloudDataplexV1ActionMissingResource {}
@@ -119,7 +126,9 @@ declare namespace gapi.client {
119
126
  /** Output only. The time when the AspectType was created. */
120
127
  createTime?: string;
121
128
  /** Optional. Immutable. Stores data classification of the aspect. */
122
- dataClassification?: string;
129
+ dataClassification?:
130
+ | 'DATA_CLASSIFICATION_UNSPECIFIED'
131
+ | 'METADATA_AND_DATA';
123
132
  /** Optional. Description of the AspectType. */
124
133
  description?: string;
125
134
  /** Optional. User friendly display name. */
@@ -133,7 +142,10 @@ declare namespace gapi.client {
133
142
  /** Output only. The relative resource name of the AspectType, of the form: projects/{project_number}/locations/{location_id}/aspectTypes/{aspect_type_id}. */
134
143
  name?: string;
135
144
  /** Output only. Denotes the transfer status of the Aspect Type. It is unspecified for Aspect Types created from Dataplex API. */
136
- transferStatus?: string;
145
+ transferStatus?:
146
+ | 'TRANSFER_STATUS_UNSPECIFIED'
147
+ | 'TRANSFER_STATUS_MIGRATED'
148
+ | 'TRANSFER_STATUS_TRANSFERRED';
137
149
  /** Output only. System generated globally unique ID for the AspectType. If you delete and recreate the AspectType with the same name, then this ID will be different. */
138
150
  uid?: string;
139
151
  /** Output only. The time when the AspectType was last updated. */
@@ -215,7 +227,12 @@ declare namespace gapi.client {
215
227
  /** Output only. Status of the security policy applied to resource referenced by this asset. */
216
228
  securityStatus?: GoogleCloudDataplexV1AssetSecurityStatus;
217
229
  /** Output only. Current state of the asset. */
218
- state?: string;
230
+ state?:
231
+ | 'STATE_UNSPECIFIED'
232
+ | 'ACTIVE'
233
+ | 'CREATING'
234
+ | 'DELETING'
235
+ | 'ACTION_REQUIRED';
219
236
  /** Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name. */
220
237
  uid?: string;
221
238
  /** Output only. The time when the asset was last updated. */
@@ -259,7 +276,12 @@ declare namespace gapi.client {
259
276
  /** Additional information about the current state. */
260
277
  message?: string;
261
278
  /** The current status of the discovery feature. */
262
- state?: string;
279
+ state?:
280
+ | 'STATE_UNSPECIFIED'
281
+ | 'SCHEDULED'
282
+ | 'IN_PROGRESS'
283
+ | 'PAUSED'
284
+ | 'DISABLED';
263
285
  /** Data Stats of the asset reported by discovery. */
264
286
  stats?: GoogleCloudDataplexV1AssetDiscoveryStatusStats;
265
287
  /** Last update time of the status. */
@@ -279,9 +301,9 @@ declare namespace gapi.client {
279
301
  /** Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id} */
280
302
  name?: string;
281
303
  /** Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets. */
282
- readAccessMode?: string;
304
+ readAccessMode?: 'ACCESS_MODE_UNSPECIFIED' | 'DIRECT' | 'MANAGED';
283
305
  /** Required. Immutable. Type of resource. */
284
- type?: string;
306
+ type?: 'TYPE_UNSPECIFIED' | 'STORAGE_BUCKET' | 'BIGQUERY_DATASET';
285
307
  }
286
308
  interface GoogleCloudDataplexV1AssetResourceStatus {
287
309
  /** Output only. Service account associated with the BigQuery Connection. */
@@ -289,7 +311,7 @@ declare namespace gapi.client {
289
311
  /** Additional information about the current state. */
290
312
  message?: string;
291
313
  /** The current state of the managed resource. */
292
- state?: string;
314
+ state?: 'STATE_UNSPECIFIED' | 'READY' | 'ERROR';
293
315
  /** Last update time of the status. */
294
316
  updateTime?: string;
295
317
  }
@@ -297,7 +319,7 @@ declare namespace gapi.client {
297
319
  /** Additional information about the current state. */
298
320
  message?: string;
299
321
  /** The current state of the security policy applied to the attached resource. */
300
- state?: string;
322
+ state?: 'STATE_UNSPECIFIED' | 'READY' | 'APPLYING' | 'ERROR';
301
323
  /** Last update time of the status. */
302
324
  updateTime?: string;
303
325
  }
@@ -311,7 +333,17 @@ declare namespace gapi.client {
311
333
  }
312
334
  interface GoogleCloudDataplexV1BusinessGlossaryEvent {
313
335
  /** The type of the event. */
314
- eventType?: string;
336
+ eventType?:
337
+ | 'EVENT_TYPE_UNSPECIFIED'
338
+ | 'GLOSSARY_CREATE'
339
+ | 'GLOSSARY_UPDATE'
340
+ | 'GLOSSARY_DELETE'
341
+ | 'GLOSSARY_CATEGORY_CREATE'
342
+ | 'GLOSSARY_CATEGORY_UPDATE'
343
+ | 'GLOSSARY_CATEGORY_DELETE'
344
+ | 'GLOSSARY_TERM_CREATE'
345
+ | 'GLOSSARY_TERM_UPDATE'
346
+ | 'GLOSSARY_TERM_DELETE';
315
347
  /** The log message. */
316
348
  message?: string;
317
349
  /** Name of the resource. */
@@ -449,7 +481,7 @@ declare namespace gapi.client {
449
481
  /** Optional. The project of the BigQuery dataset to publish BigLake external or non-BigLake external tables to. If not specified, the project of the Cloud Storage bucket will be used. The format is "projects/{project_id_or_number}". */
450
482
  project?: string;
451
483
  /** Optional. Determines whether to publish discovered tables as BigLake external tables or non-BigLake external tables. */
452
- tableType?: string;
484
+ tableType?: 'TABLE_TYPE_UNSPECIFIED' | 'EXTERNAL' | 'BIGLAKE';
453
485
  }
454
486
  interface GoogleCloudDataplexV1DataDiscoverySpecStorageConfig {
455
487
  /** Optional. Configuration for CSV data. */
@@ -515,7 +547,11 @@ declare namespace gapi.client {
515
547
  /** Optional. Whether to publish result to Dataplex Catalog. */
516
548
  catalogPublishingEnabled?: boolean;
517
549
  /** Optional. Specifies which components of the data documentation to generate. Any component that is required to generate the specified components will also be generated. If no generation scope is specified, all available documentation components will be generated. */
518
- generationScopes?: string[];
550
+ generationScopes?:
551
+ | 'GENERATION_SCOPE_UNSPECIFIED'
552
+ | 'ALL'
553
+ | 'TABLE_AND_COLUMN_DESCRIPTIONS'
554
+ | 'SQL_QUERIES'[];
519
555
  }
520
556
  interface GoogleCloudDataplexV1DataProduct {
521
557
  /** Optional. Data product access groups by access group id as key. If data product is used only for packaging data assets, then access groups may be empty. However, if a data product is used for sharing data assets, then at least one access group must be specified.Example: { "analyst": { "id": "analyst", "displayName": "Analyst", "description": "Access group for analysts", "principal": { "googleGroup": "analysts@example.com" } } } */
@@ -579,7 +615,7 @@ declare namespace gapi.client {
579
615
  /** Output only. Additional information about the BigQuery exporting. */
580
616
  message?: string;
581
617
  /** Output only. Execution state for the BigQuery exporting. */
582
- state?: string;
618
+ state?: 'STATE_UNSPECIFIED' | 'SUCCEEDED' | 'FAILED' | 'SKIPPED';
583
619
  }
584
620
  interface GoogleCloudDataplexV1DataProfileResultProfile {
585
621
  /** Output only. List of fields with structural and profile information for each field. */
@@ -737,7 +773,7 @@ declare namespace gapi.client {
737
773
  /** Output only. Additional information about the BigQuery exporting. */
738
774
  message?: string;
739
775
  /** Output only. Execution state for the BigQuery exporting. */
740
- state?: string;
776
+ state?: 'STATE_UNSPECIFIED' | 'SUCCEEDED' | 'FAILED' | 'SKIPPED';
741
777
  }
742
778
  interface GoogleCloudDataplexV1DataQualityRule {
743
779
  /** Optional. The unnested column which this rule is evaluated against. */
@@ -846,7 +882,7 @@ declare namespace gapi.client {
846
882
  /** Optional. The minimum column statistic value allowed for a row to pass this validation.At least one of min_value and max_value need to be provided. */
847
883
  minValue?: string;
848
884
  /** Optional. The aggregate metric to evaluate. */
849
- statistic?: string;
885
+ statistic?: 'STATISTIC_UNDEFINED' | 'MEAN' | 'MIN' | 'MAX';
850
886
  /** Optional. Whether column statistic needs to be strictly lesser than ('<') the maximum, or if equality is allowed.Only relevant if a max_value has been defined. Default = false. */
851
887
  strictMaxEnabled?: boolean;
852
888
  /** Optional. Whether column statistic needs to be strictly greater than ('>') the minimum, or if equality is allowed.Only relevant if a min_value has been defined. Default = false. */
@@ -867,7 +903,7 @@ declare namespace gapi.client {
867
903
  /** The number of rows evaluated against the data quality rule. This field is only valid for rules of PER_ROW evaluation type. */
868
904
  evaluatedRowCount?: string;
869
905
  /** The evaluation type of the data quality rule. */
870
- evalutionType?: string;
906
+ evalutionType?: 'EVALUATION_TYPE_UNSPECIFIED' | 'PER_ROW' | 'AGGREGATE';
871
907
  /** Identifier of the specific data scan job this log entry is for. */
872
908
  jobId?: string;
873
909
  /** The number of rows with null values in the specified column. */
@@ -875,13 +911,23 @@ declare namespace gapi.client {
875
911
  /** The number of rows which passed a rule evaluation. This field is only valid for rules of PER_ROW evaluation type. */
876
912
  passedRowCount?: string;
877
913
  /** The result of the data quality rule. */
878
- result?: string;
914
+ result?: 'RESULT_UNSPECIFIED' | 'PASSED' | 'FAILED';
879
915
  /** The dimension of the data quality rule. */
880
916
  ruleDimension?: string;
881
917
  /** The name of the data quality rule. */
882
918
  ruleName?: string;
883
919
  /** The type of the data quality rule. */
884
- ruleType?: string;
920
+ ruleType?:
921
+ | 'RULE_TYPE_UNSPECIFIED'
922
+ | 'NON_NULL_EXPECTATION'
923
+ | 'RANGE_EXPECTATION'
924
+ | 'REGEX_EXPECTATION'
925
+ | 'ROW_CONDITION_EXPECTATION'
926
+ | 'SET_EXPECTATION'
927
+ | 'STATISTIC_RANGE_EXPECTATION'
928
+ | 'TABLE_CONDITION_EXPECTATION'
929
+ | 'UNIQUENESS_EXPECTATION'
930
+ | 'SQL_ASSERTION';
885
931
  /** The passing threshold (0.0, 100.0) of the data quality rule. */
886
932
  thresholdPercent?: number;
887
933
  }
@@ -961,9 +1007,19 @@ declare namespace gapi.client {
961
1007
  /** Output only. Identifier. The relative resource name of the scan, of the form: projects/{project}/locations/{location_id}/dataScans/{datascan_id}, where project refers to a project_id or project_number and location_id refers to a Google Cloud region. */
962
1008
  name?: string;
963
1009
  /** Output only. Current state of the DataScan. */
964
- state?: string;
1010
+ state?:
1011
+ | 'STATE_UNSPECIFIED'
1012
+ | 'ACTIVE'
1013
+ | 'CREATING'
1014
+ | 'DELETING'
1015
+ | 'ACTION_REQUIRED';
965
1016
  /** Output only. The type of DataScan. */
966
- type?: string;
1017
+ type?:
1018
+ | 'DATA_SCAN_TYPE_UNSPECIFIED'
1019
+ | 'DATA_QUALITY'
1020
+ | 'DATA_PROFILE'
1021
+ | 'DATA_DISCOVERY'
1022
+ | 'DATA_DOCUMENTATION';
967
1023
  /** Output only. System generated globally unique ID for the scan. This ID will be different if the scan is deleted and re-created with the same name. */
968
1024
  uid?: string;
969
1025
  /** Output only. The time when the scan was last updated. */
@@ -971,7 +1027,7 @@ declare namespace gapi.client {
971
1027
  }
972
1028
  interface GoogleCloudDataplexV1DataScanCatalogPublishingStatus {
973
1029
  /** Output only. Execution state for publishing. */
974
- state?: string;
1030
+ state?: 'STATE_UNSPECIFIED' | 'SUCCEEDED' | 'FAILED' | 'SKIPPED';
975
1031
  }
976
1032
  interface GoogleCloudDataplexV1DataScanEvent {
977
1033
  /** The status of publishing the data scan as Dataplex Universal Catalog metadata. */
@@ -997,17 +1053,27 @@ declare namespace gapi.client {
997
1053
  /** The result of post scan actions. */
998
1054
  postScanActionsResult?: GoogleCloudDataplexV1DataScanEventPostScanActionsResult;
999
1055
  /** The scope of the data scan (e.g. full, incremental). */
1000
- scope?: string;
1056
+ scope?: 'SCOPE_UNSPECIFIED' | 'FULL' | 'INCREMENTAL';
1001
1057
  /** A version identifier of the spec which was used to execute this job. */
1002
1058
  specVersion?: string;
1003
1059
  /** The time when the data scan job started to run. */
1004
1060
  startTime?: string;
1005
1061
  /** The status of the data scan job. */
1006
- state?: string;
1062
+ state?:
1063
+ | 'STATE_UNSPECIFIED'
1064
+ | 'STARTED'
1065
+ | 'SUCCEEDED'
1066
+ | 'FAILED'
1067
+ | 'CANCELLED'
1068
+ | 'CREATED';
1007
1069
  /** The trigger type of the data scan job. */
1008
- trigger?: string;
1070
+ trigger?: 'TRIGGER_UNSPECIFIED' | 'ON_DEMAND' | 'SCHEDULE' | 'ONE_TIME';
1009
1071
  /** The type of the data scan. */
1010
- type?: string;
1072
+ type?:
1073
+ | 'SCAN_TYPE_UNSPECIFIED'
1074
+ | 'DATA_PROFILE'
1075
+ | 'DATA_QUALITY'
1076
+ | 'DATA_DISCOVERY';
1011
1077
  }
1012
1078
  interface GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs {
1013
1079
  /** Boolean indicating whether a column filter was applied in the DataScan job. */
@@ -1049,7 +1115,7 @@ declare namespace gapi.client {
1049
1115
  /** Additional information about the BigQuery exporting. */
1050
1116
  message?: string;
1051
1117
  /** Execution state for the BigQuery exporting. */
1052
- state?: string;
1118
+ state?: 'STATE_UNSPECIFIED' | 'SUCCEEDED' | 'FAILED' | 'SKIPPED';
1053
1119
  }
1054
1120
  interface GoogleCloudDataplexV1DataScanExecutionSpec {
1055
1121
  /** Immutable. The unnested field (of type Date or Timestamp) that contains values which monotonically increase over time.If not specified, a data scan will run for all data in the table. */
@@ -1093,9 +1159,21 @@ declare namespace gapi.client {
1093
1159
  /** Output only. The time when the DataScanJob was started. */
1094
1160
  startTime?: string;
1095
1161
  /** Output only. Execution state for the DataScanJob. */
1096
- state?: string;
1162
+ state?:
1163
+ | 'STATE_UNSPECIFIED'
1164
+ | 'RUNNING'
1165
+ | 'CANCELING'
1166
+ | 'CANCELLED'
1167
+ | 'SUCCEEDED'
1168
+ | 'FAILED'
1169
+ | 'PENDING';
1097
1170
  /** Output only. The type of the parent DataScan. */
1098
- type?: string;
1171
+ type?:
1172
+ | 'DATA_SCAN_TYPE_UNSPECIFIED'
1173
+ | 'DATA_QUALITY'
1174
+ | 'DATA_PROFILE'
1175
+ | 'DATA_DISCOVERY'
1176
+ | 'DATA_DOCUMENTATION';
1099
1177
  /** Output only. System generated globally unique ID for the DataScanJob. */
1100
1178
  uid?: string;
1101
1179
  }
@@ -1149,7 +1227,19 @@ declare namespace gapi.client {
1149
1227
  /** Details about the BigQuery table publishing associated with the event. */
1150
1228
  table?: GoogleCloudDataplexV1DiscoveryEventTableDetails;
1151
1229
  /** The type of the event being logged. */
1152
- type?: string;
1230
+ type?:
1231
+ | 'EVENT_TYPE_UNSPECIFIED'
1232
+ | 'CONFIG'
1233
+ | 'ENTITY_CREATED'
1234
+ | 'ENTITY_UPDATED'
1235
+ | 'ENTITY_DELETED'
1236
+ | 'PARTITION_CREATED'
1237
+ | 'PARTITION_UPDATED'
1238
+ | 'PARTITION_DELETED'
1239
+ | 'TABLE_PUBLISHED'
1240
+ | 'TABLE_UPDATED'
1241
+ | 'TABLE_IGNORED'
1242
+ | 'TABLE_DELETED';
1153
1243
  /** The id of the associated zone. */
1154
1244
  zoneId?: string;
1155
1245
  }
@@ -1167,7 +1257,7 @@ declare namespace gapi.client {
1167
1257
  /** The name of the entity resource. The name is the fully-qualified resource name. */
1168
1258
  entity?: string;
1169
1259
  /** The type of the entity resource. */
1170
- type?: string;
1260
+ type?: 'ENTITY_TYPE_UNSPECIFIED' | 'TABLE' | 'FILESET';
1171
1261
  }
1172
1262
  interface GoogleCloudDataplexV1DiscoveryEventPartitionDetails {
1173
1263
  /** The name to the containing entity resource. The name is the fully-qualified resource name. */
@@ -1177,13 +1267,17 @@ declare namespace gapi.client {
1177
1267
  /** The locations of the data items (e.g., a Cloud Storage objects) sampled for metadata inference. */
1178
1268
  sampledDataLocations?: string[];
1179
1269
  /** The type of the containing entity resource. */
1180
- type?: string;
1270
+ type?: 'ENTITY_TYPE_UNSPECIFIED' | 'TABLE' | 'FILESET';
1181
1271
  }
1182
1272
  interface GoogleCloudDataplexV1DiscoveryEventTableDetails {
1183
1273
  /** The fully-qualified resource name of the table resource. */
1184
1274
  table?: string;
1185
1275
  /** The type of the table resource. */
1186
- type?: string;
1276
+ type?:
1277
+ | 'TABLE_TYPE_UNSPECIFIED'
1278
+ | 'EXTERNAL_TABLE'
1279
+ | 'BIGLAKE_TABLE'
1280
+ | 'OBJECT_TABLE';
1187
1281
  }
1188
1282
  interface GoogleCloudDataplexV1EncryptionConfig {
1189
1283
  /** Output only. The time when the Encryption configuration was created. */
@@ -1191,7 +1285,11 @@ declare namespace gapi.client {
1191
1285
  /** Optional. Represent the state of CMEK opt-in for metastore. */
1192
1286
  enableMetastoreEncryption?: boolean;
1193
1287
  /** Output only. The state of encryption of the databases. */
1194
- encryptionState?: string;
1288
+ encryptionState?:
1289
+ | 'ENCRYPTION_STATE_UNSPECIFIED'
1290
+ | 'ENCRYPTING'
1291
+ | 'COMPLETED'
1292
+ | 'FAILED';
1195
1293
  /** Etag of the EncryptionConfig. This is a strong etag. */
1196
1294
  etag?: string;
1197
1295
  /** Output only. Details of the failure if anything related to Cmek db fails. */
@@ -1205,7 +1303,7 @@ declare namespace gapi.client {
1205
1303
  }
1206
1304
  interface GoogleCloudDataplexV1EncryptionConfigFailureDetails {
1207
1305
  /** Output only. The error code for the failure. */
1208
- errorCode?: string;
1306
+ errorCode?: 'UNKNOWN' | 'INTERNAL_ERROR' | 'REQUIRE_USER_ACTION';
1209
1307
  /** Output only. The error message will be shown to the user. Set only if the error code is REQUIRE_USER_ACTION. */
1210
1308
  errorMessage?: string;
1211
1309
  }
@@ -1239,9 +1337,9 @@ declare namespace gapi.client {
1239
1337
  /** Required. The description of the data structure and layout. The schema is not included in list responses. It is only included in SCHEMA and FULL entity views of a GetEntity response. */
1240
1338
  schema?: GoogleCloudDataplexV1Schema;
1241
1339
  /** Required. Immutable. Identifies the storage system of the entity data. */
1242
- system?: string;
1340
+ system?: 'STORAGE_SYSTEM_UNSPECIFIED' | 'CLOUD_STORAGE' | 'BIGQUERY';
1243
1341
  /** Required. Immutable. The type of entity. */
1244
- type?: string;
1342
+ type?: 'TYPE_UNSPECIFIED' | 'TABLE' | 'FILESET';
1245
1343
  /** Output only. System generated unique ID for the Entity. This ID will be different if the Entity is deleted and re-created with the same name. */
1246
1344
  uid?: string;
1247
1345
  /** Output only. The time when the entity was last updated. */
@@ -1291,7 +1389,10 @@ declare namespace gapi.client {
1291
1389
  /** Output only. The relative resource name of the EntryGroup, in the format projects/{project_id_or_number}/locations/{location_id}/entryGroups/{entry_group_id}. */
1292
1390
  name?: string;
1293
1391
  /** Output only. Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API. */
1294
- transferStatus?: string;
1392
+ transferStatus?:
1393
+ | 'TRANSFER_STATUS_UNSPECIFIED'
1394
+ | 'TRANSFER_STATUS_MIGRATED'
1395
+ | 'TRANSFER_STATUS_TRANSFERRED';
1295
1396
  /** Output only. System generated globally unique ID for the EntryGroup. If you delete and recreate the EntryGroup with the same name, this ID will be different. */
1296
1397
  uid?: string;
1297
1398
  /** Output only. The time when the EntryGroup was last updated. */
@@ -1317,11 +1418,14 @@ declare namespace gapi.client {
1317
1418
  /** Immutable. The path in the Entry that is referenced in the Entry Link. Empty path denotes that the Entry itself is referenced in the Entry Link. */
1318
1419
  path?: string;
1319
1420
  /** Required. Immutable. The reference type of the Entry. */
1320
- type?: string;
1421
+ type?: 'UNSPECIFIED' | 'SOURCE' | 'TARGET';
1321
1422
  }
1322
1423
  interface GoogleCloudDataplexV1EntryLinkEvent {
1323
1424
  /** The type of the event. */
1324
- eventType?: string;
1425
+ eventType?:
1426
+ | 'EVENT_TYPE_UNSPECIFIED'
1427
+ | 'ENTRY_LINK_CREATE'
1428
+ | 'ENTRY_LINK_DELETE';
1325
1429
  /** The log message. */
1326
1430
  message?: string;
1327
1431
  /** Name of the resource. */
@@ -1458,7 +1562,24 @@ declare namespace gapi.client {
1458
1562
  /** Entity resource information if the log event is associated with a specific entity. */
1459
1563
  entity?: GoogleCloudDataplexV1GovernanceEventEntity;
1460
1564
  /** The type of the event. */
1461
- eventType?: string;
1565
+ eventType?:
1566
+ | 'EVENT_TYPE_UNSPECIFIED'
1567
+ | 'RESOURCE_IAM_POLICY_UPDATE'
1568
+ | 'BIGQUERY_TABLE_CREATE'
1569
+ | 'BIGQUERY_TABLE_UPDATE'
1570
+ | 'BIGQUERY_TABLE_DELETE'
1571
+ | 'BIGQUERY_CONNECTION_CREATE'
1572
+ | 'BIGQUERY_CONNECTION_UPDATE'
1573
+ | 'BIGQUERY_CONNECTION_DELETE'
1574
+ | 'BIGQUERY_TAXONOMY_CREATE'
1575
+ | 'BIGQUERY_POLICY_TAG_CREATE'
1576
+ | 'BIGQUERY_POLICY_TAG_DELETE'
1577
+ | 'BIGQUERY_POLICY_TAG_SET_IAM_POLICY'
1578
+ | 'ACCESS_POLICY_UPDATE'
1579
+ | 'GOVERNANCE_RULE_MATCHED_RESOURCES'
1580
+ | 'GOVERNANCE_RULE_SEARCH_LIMIT_EXCEEDS'
1581
+ | 'GOVERNANCE_RULE_ERRORS'
1582
+ | 'GOVERNANCE_RULE_PROCESSING';
1462
1583
  /** The log message. */
1463
1584
  message?: string;
1464
1585
  }
@@ -1466,7 +1587,7 @@ declare namespace gapi.client {
1466
1587
  /** The Entity resource the log event is associated with. Format: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id} */
1467
1588
  entity?: string;
1468
1589
  /** Type of entity. */
1469
- entityType?: string;
1590
+ entityType?: 'ENTITY_TYPE_UNSPECIFIED' | 'TABLE' | 'FILESET';
1470
1591
  }
1471
1592
  interface GoogleCloudDataplexV1ImportItem {
1472
1593
  /** The aspects to modify. Supports the following syntaxes: {aspect_type_reference}: matches aspects that belong to the specified aspect type and are attached directly to the entry. {aspect_type_reference}@{path}: matches aspects that belong to the specified aspect type and path. {aspect_type_reference}@* : matches aspects of the given type for all paths. *@path : matches aspects of all types on the given path.Replace {aspect_type_reference} with a reference to the aspect type, in the format {project_id_or_number}.{location_id}.{aspect_type_id}.In FULL entry sync mode, if you leave this field empty, it is treated as specifying exactly those aspects that are present within the specified entry. Dataplex Universal Catalog implicitly adds the keys for all of the required aspects of an entry. */
@@ -1492,15 +1613,22 @@ declare namespace gapi.client {
1492
1613
  /** Output only. The number of times the job has been retried (excluding the initial attempt). */
1493
1614
  retryCount?: number;
1494
1615
  /** Output only. The underlying service running a job. */
1495
- service?: string;
1616
+ service?: 'SERVICE_UNSPECIFIED' | 'DATAPROC';
1496
1617
  /** Output only. The full resource name for the job run under a particular service. */
1497
1618
  serviceJob?: string;
1498
1619
  /** Output only. The time when the job was started. */
1499
1620
  startTime?: string;
1500
1621
  /** Output only. Execution state for the job. */
1501
- state?: string;
1622
+ state?:
1623
+ | 'STATE_UNSPECIFIED'
1624
+ | 'RUNNING'
1625
+ | 'CANCELLING'
1626
+ | 'CANCELLED'
1627
+ | 'SUCCEEDED'
1628
+ | 'FAILED'
1629
+ | 'ABORTED';
1502
1630
  /** Output only. Job execution trigger. */
1503
- trigger?: string;
1631
+ trigger?: 'TRIGGER_UNSPECIFIED' | 'TASK_CONFIG' | 'RUN_REQUEST';
1504
1632
  /** Output only. System generated globally unique ID for the job. */
1505
1633
  uid?: string;
1506
1634
  }
@@ -1508,7 +1636,10 @@ declare namespace gapi.client {
1508
1636
  /** The time when the job ended running. */
1509
1637
  endTime?: string;
1510
1638
  /** Job execution trigger. */
1511
- executionTrigger?: string;
1639
+ executionTrigger?:
1640
+ | 'EXECUTION_TRIGGER_UNSPECIFIED'
1641
+ | 'TASK_CONFIG'
1642
+ | 'RUN_REQUEST';
1512
1643
  /** The unique id identifying the job. */
1513
1644
  jobId?: string;
1514
1645
  /** The log message. */
@@ -1516,15 +1647,20 @@ declare namespace gapi.client {
1516
1647
  /** The number of retries. */
1517
1648
  retries?: number;
1518
1649
  /** The service used to execute the job. */
1519
- service?: string;
1650
+ service?: 'SERVICE_UNSPECIFIED' | 'DATAPROC';
1520
1651
  /** The reference to the job within the service. */
1521
1652
  serviceJob?: string;
1522
1653
  /** The time when the job started running. */
1523
1654
  startTime?: string;
1524
1655
  /** The job state on completion. */
1525
- state?: string;
1656
+ state?:
1657
+ | 'STATE_UNSPECIFIED'
1658
+ | 'SUCCEEDED'
1659
+ | 'FAILED'
1660
+ | 'CANCELLED'
1661
+ | 'ABORTED';
1526
1662
  /** The type of the job. */
1527
- type?: string;
1663
+ type?: 'TYPE_UNSPECIFIED' | 'SPARK' | 'NOTEBOOK';
1528
1664
  }
1529
1665
  interface GoogleCloudDataplexV1Lake {
1530
1666
  /** Output only. Aggregated status of the underlying assets of the lake. */
@@ -1546,7 +1682,12 @@ declare namespace gapi.client {
1546
1682
  /** Output only. Service account associated with this lake. This service account must be authorized to access or operate on resources managed by the lake. */
1547
1683
  serviceAccount?: string;
1548
1684
  /** Output only. Current state of the lake. */
1549
- state?: string;
1685
+ state?:
1686
+ | 'STATE_UNSPECIFIED'
1687
+ | 'ACTIVE'
1688
+ | 'CREATING'
1689
+ | 'DELETING'
1690
+ | 'ACTION_REQUIRED';
1550
1691
  /** Output only. System generated globally unique ID for the lake. This ID will be different if the lake is deleted and re-created with the same name. */
1551
1692
  uid?: string;
1552
1693
  /** Output only. The time when the lake was last updated. */
@@ -1562,7 +1703,7 @@ declare namespace gapi.client {
1562
1703
  /** Additional information about the current status. */
1563
1704
  message?: string;
1564
1705
  /** Current state of association. */
1565
- state?: string;
1706
+ state?: 'STATE_UNSPECIFIED' | 'NONE' | 'READY' | 'UPDATING' | 'ERROR';
1566
1707
  /** Last update time of the metastore status of the lake. */
1567
1708
  updateTime?: string;
1568
1709
  }
@@ -1786,7 +1927,11 @@ declare namespace gapi.client {
1786
1927
  /** Optional. The aspect types that you want to listen to. Depending on how the aspect is attached to the entry, in the format: projects/{project_id_or_number}/locations/{location}/aspectTypes/{aspect_type_id}. */
1787
1928
  aspectTypes?: string[];
1788
1929
  /** Optional. The type of change that you want to listen to. If not specified, all changes are published. */
1789
- changeTypes?: string[];
1930
+ changeTypes?:
1931
+ | 'CHANGE_TYPE_UNSPECIFIED'
1932
+ | 'CREATE'
1933
+ | 'UPDATE'
1934
+ | 'DELETE'[];
1790
1935
  /** Optional. The entry types that you want to listen to, specified as relative resource names in the format projects/{project_id_or_number}/locations/{location}/entryTypes/{entry_type_id}. Only entries that belong to the specified entry types are published. */
1791
1936
  entryTypes?: string[];
1792
1937
  }
@@ -1816,7 +1961,7 @@ declare namespace gapi.client {
1816
1961
  /** Output only. Metadata job status. */
1817
1962
  status?: GoogleCloudDataplexV1MetadataJobStatus;
1818
1963
  /** Required. Metadata job type. */
1819
- type?: string;
1964
+ type?: 'TYPE_UNSPECIFIED' | 'IMPORT' | 'EXPORT';
1820
1965
  /** Output only. A system-generated, globally unique ID for the metadata job. If the metadata job is deleted and then re-created with the same name, this ID is different. */
1821
1966
  uid?: string;
1822
1967
  /** Output only. The time when the metadata job was updated. */
@@ -1868,11 +2013,15 @@ declare namespace gapi.client {
1868
2013
  }
1869
2014
  interface GoogleCloudDataplexV1MetadataJobImportJobSpec {
1870
2015
  /** Required. The sync mode for aspects. */
1871
- aspectSyncMode?: string;
2016
+ aspectSyncMode?:
2017
+ | 'SYNC_MODE_UNSPECIFIED'
2018
+ | 'FULL'
2019
+ | 'INCREMENTAL'
2020
+ | 'NONE';
1872
2021
  /** Required. The sync mode for entries. */
1873
- entrySyncMode?: string;
2022
+ entrySyncMode?: 'SYNC_MODE_UNSPECIFIED' | 'FULL' | 'INCREMENTAL' | 'NONE';
1874
2023
  /** Optional. The level of logs to write to Cloud Logging for this job.Debug-level logs provide highly-detailed information for troubleshooting, but their increased verbosity could incur additional costs (https://cloud.google.com/stackdriver/pricing) that might not be merited for all jobs.If unspecified, defaults to INFO. */
1875
- logLevel?: string;
2024
+ logLevel?: 'LOG_LEVEL_UNSPECIFIED' | 'DEBUG' | 'INFO';
1876
2025
  /** Required. A boundary on the scope of impact that the metadata import job can have. */
1877
2026
  scope?: GoogleCloudDataplexV1MetadataJobImportJobSpecImportJobScope;
1878
2027
  /** Optional. The time when the process that created the metadata import files began. */
@@ -1900,7 +2049,15 @@ declare namespace gapi.client {
1900
2049
  /** Output only. Message relating to the progression of a metadata job. */
1901
2050
  message?: string;
1902
2051
  /** Output only. State of the metadata job. */
1903
- state?: string;
2052
+ state?:
2053
+ | 'STATE_UNSPECIFIED'
2054
+ | 'QUEUED'
2055
+ | 'RUNNING'
2056
+ | 'CANCELING'
2057
+ | 'CANCELED'
2058
+ | 'SUCCEEDED'
2059
+ | 'FAILED'
2060
+ | 'SUCCEEDED_WITH_ERRORS';
1904
2061
  /** Output only. The time when the status was updated. */
1905
2062
  updateTime?: string;
1906
2063
  }
@@ -1971,7 +2128,7 @@ declare namespace gapi.client {
1971
2128
  /** Optional. The sequence of fields describing the partition structure in entities. If this field is empty, there are no partitions within the data. */
1972
2129
  partitionFields?: GoogleCloudDataplexV1SchemaPartitionField[];
1973
2130
  /** Optional. The structure of paths containing partition data within the entity. */
1974
- partitionStyle?: string;
2131
+ partitionStyle?: 'PARTITION_STYLE_UNSPECIFIED' | 'HIVE_COMPATIBLE';
1975
2132
  /** Required. Set to true if user-managed or false if managed by Dataplex Universal Catalog. The default is false (managed by Dataplex Universal Catalog). Set to falseto enable Dataplex Universal Catalog discovery to update the schema. including new data discovery, schema inference, and schema evolution. Users retain the ability to input and edit the schema. Dataplex Universal Catalog treats schema input by the user as though produced by a previous Dataplex Universal Catalog discovery operation, and it will evolve the schema and take action based on that treatment. Set to true to fully manage the entity schema. This setting guarantees that Dataplex Universal Catalog will not change schema fields. */
1976
2133
  userManaged?: boolean;
1977
2134
  }
@@ -1979,7 +2136,23 @@ declare namespace gapi.client {
1979
2136
  /** Required. Partition field name must consist of letters, numbers, and underscores only, with a maximum of length of 256 characters, and must begin with a letter or underscore.. */
1980
2137
  name?: string;
1981
2138
  /** Required. Immutable. The type of field. */
1982
- type?: string;
2139
+ type?:
2140
+ | 'TYPE_UNSPECIFIED'
2141
+ | 'BOOLEAN'
2142
+ | 'BYTE'
2143
+ | 'INT16'
2144
+ | 'INT32'
2145
+ | 'INT64'
2146
+ | 'FLOAT'
2147
+ | 'DOUBLE'
2148
+ | 'DECIMAL'
2149
+ | 'STRING'
2150
+ | 'BINARY'
2151
+ | 'TIMESTAMP'
2152
+ | 'DATE'
2153
+ | 'TIME'
2154
+ | 'RECORD'
2155
+ | 'NULL';
1983
2156
  }
1984
2157
  interface GoogleCloudDataplexV1SchemaSchemaField {
1985
2158
  /** Optional. User friendly field description. Must be less than or equal to 1024 characters. */
@@ -1987,11 +2160,27 @@ declare namespace gapi.client {
1987
2160
  /** Optional. Any nested field for complex types. */
1988
2161
  fields?: GoogleCloudDataplexV1SchemaSchemaField[];
1989
2162
  /** Required. Additional field semantics. */
1990
- mode?: string;
2163
+ mode?: 'MODE_UNSPECIFIED' | 'REQUIRED' | 'NULLABLE' | 'REPEATED';
1991
2164
  /** Required. The name of the field. Must contain only letters, numbers and underscores, with a maximum length of 767 characters, and must begin with a letter or underscore. */
1992
2165
  name?: string;
1993
2166
  /** Required. The type of field. */
1994
- type?: string;
2167
+ type?:
2168
+ | 'TYPE_UNSPECIFIED'
2169
+ | 'BOOLEAN'
2170
+ | 'BYTE'
2171
+ | 'INT16'
2172
+ | 'INT32'
2173
+ | 'INT64'
2174
+ | 'FLOAT'
2175
+ | 'DOUBLE'
2176
+ | 'DECIMAL'
2177
+ | 'STRING'
2178
+ | 'BINARY'
2179
+ | 'TIMESTAMP'
2180
+ | 'DATE'
2181
+ | 'TIME'
2182
+ | 'RECORD'
2183
+ | 'NULL';
1995
2184
  }
1996
2185
  interface GoogleCloudDataplexV1SearchEntriesResponse {
1997
2186
  /** Token to retrieve the next page of results, or empty if there are no more results in the list. */
@@ -2026,7 +2215,7 @@ declare namespace gapi.client {
2026
2215
  /** Unique identifier for the session. */
2027
2216
  sessionId?: string;
2028
2217
  /** The type of the event. */
2029
- type?: string;
2218
+ type?: 'EVENT_TYPE_UNSPECIFIED' | 'START' | 'STOP' | 'QUERY' | 'CREATE';
2030
2219
  /** The idle duration of a warm pooled session before it is assigned to user. */
2031
2220
  unassignedDuration?: string;
2032
2221
  /** The information about the user that created the session. It will be the email address of the user. */
@@ -2038,7 +2227,7 @@ declare namespace gapi.client {
2038
2227
  /** Time taken for execution of the query. */
2039
2228
  duration?: string;
2040
2229
  /** Query Execution engine. */
2041
- engine?: string;
2230
+ engine?: 'ENGINE_UNSPECIFIED' | 'SPARK_SQL' | 'BIGQUERY';
2042
2231
  /** The unique Query id identifying the query. */
2043
2232
  queryId?: string;
2044
2233
  /** The query text executed. */
@@ -2048,15 +2237,28 @@ declare namespace gapi.client {
2048
2237
  }
2049
2238
  interface GoogleCloudDataplexV1StorageAccess {
2050
2239
  /** Output only. Describes the read access mechanism of the data. Not user settable. */
2051
- read?: string;
2240
+ read?: 'ACCESS_MODE_UNSPECIFIED' | 'DIRECT' | 'MANAGED';
2052
2241
  }
2053
2242
  interface GoogleCloudDataplexV1StorageFormat {
2054
2243
  /** Optional. The compression type associated with the stored data. If unspecified, the data is uncompressed. */
2055
- compressionFormat?: string;
2244
+ compressionFormat?: 'COMPRESSION_FORMAT_UNSPECIFIED' | 'GZIP' | 'BZIP2';
2056
2245
  /** Optional. Additional information about CSV formatted data. */
2057
2246
  csv?: GoogleCloudDataplexV1StorageFormatCsvOptions;
2058
2247
  /** Output only. The data format associated with the stored data, which represents content type values. The value is inferred from mime type. */
2059
- format?: string;
2248
+ format?:
2249
+ | 'FORMAT_UNSPECIFIED'
2250
+ | 'PARQUET'
2251
+ | 'AVRO'
2252
+ | 'ORC'
2253
+ | 'CSV'
2254
+ | 'JSON'
2255
+ | 'IMAGE'
2256
+ | 'AUDIO'
2257
+ | 'VIDEO'
2258
+ | 'TEXT'
2259
+ | 'TFRECORD'
2260
+ | 'OTHER'
2261
+ | 'UNKNOWN';
2060
2262
  /** Optional. Additional information about iceberg tables. */
2061
2263
  iceberg?: GoogleCloudDataplexV1StorageFormatIcebergOptions;
2062
2264
  /** Optional. Additional information about CSV formatted data. */
@@ -2102,7 +2304,12 @@ declare namespace gapi.client {
2102
2304
  /** Config related to running custom Spark tasks. */
2103
2305
  spark?: GoogleCloudDataplexV1TaskSparkTaskConfig;
2104
2306
  /** Output only. Current state of the task. */
2105
- state?: string;
2307
+ state?:
2308
+ | 'STATE_UNSPECIFIED'
2309
+ | 'ACTIVE'
2310
+ | 'CREATING'
2311
+ | 'DELETING'
2312
+ | 'ACTION_REQUIRED';
2106
2313
  /** Required. Spec related to how often and when a task should be triggered. */
2107
2314
  triggerSpec?: GoogleCloudDataplexV1TaskTriggerSpec;
2108
2315
  /** Output only. System generated globally unique ID for the task. This ID will be different if the task is deleted and re-created with the same name. */
@@ -2198,7 +2405,7 @@ declare namespace gapi.client {
2198
2405
  /** Optional. The first run of the task will be after this time. If not specified, the task will run shortly after being submitted if ON_DEMAND and based on the schedule if RECURRING. */
2199
2406
  startTime?: string;
2200
2407
  /** Required. Immutable. Trigger type of the user-specified Task. */
2201
- type?: string;
2408
+ type?: 'TYPE_UNSPECIFIED' | 'ON_DEMAND' | 'RECURRING';
2202
2409
  }
2203
2410
  interface GoogleCloudDataplexV1Trigger {
2204
2411
  /** The scan runs once via RunDataScan API. */
@@ -2235,9 +2442,14 @@ declare namespace gapi.client {
2235
2442
  /** Required. Specification of the resources that are referenced by the assets within this zone. */
2236
2443
  resourceSpec?: GoogleCloudDataplexV1ZoneResourceSpec;
2237
2444
  /** Output only. Current state of the zone. */
2238
- state?: string;
2445
+ state?:
2446
+ | 'STATE_UNSPECIFIED'
2447
+ | 'ACTIVE'
2448
+ | 'CREATING'
2449
+ | 'DELETING'
2450
+ | 'ACTION_REQUIRED';
2239
2451
  /** Required. Immutable. The type of the zone. */
2240
- type?: string;
2452
+ type?: 'TYPE_UNSPECIFIED' | 'RAW' | 'CURATED';
2241
2453
  /** Output only. System generated globally unique ID for the zone. This ID will be different if the zone is deleted and re-created with the same name. */
2242
2454
  uid?: string;
2243
2455
  /** Output only. The time when the zone was last updated. */
@@ -2275,7 +2487,10 @@ declare namespace gapi.client {
2275
2487
  }
2276
2488
  interface GoogleCloudDataplexV1ZoneResourceSpec {
2277
2489
  /** Required. Immutable. The location type of the resources that are allowed to be attached to the assets within this zone. */
2278
- locationType?: string;
2490
+ locationType?:
2491
+ | 'LOCATION_TYPE_UNSPECIFIED'
2492
+ | 'SINGLE_REGION'
2493
+ | 'MULTI_REGION';
2279
2494
  }
2280
2495
  interface GoogleCloudLocationListLocationsResponse {
2281
2496
  /** A list of locations that matches the specified filter in the request. */
@@ -2305,7 +2520,11 @@ declare namespace gapi.client {
2305
2520
  /** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
2306
2521
  exemptedMembers?: string[];
2307
2522
  /** The log type that this config enables. */
2308
- logType?: string;
2523
+ logType?:
2524
+ | 'LOG_TYPE_UNSPECIFIED'
2525
+ | 'ADMIN_READ'
2526
+ | 'DATA_WRITE'
2527
+ | 'DATA_READ';
2309
2528
  }
2310
2529
  interface GoogleIamV1Binding {
2311
2530
  /** The condition that is associated with this binding.If the condition evaluates to true, then this binding applies to the current request.If the condition evaluates to false, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding.To learn which resources support conditions in their IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/conditions/resource-policies). */
@@ -2382,11 +2601,11 @@ declare namespace gapi.client {
2382
2601
  /** Create an EncryptionConfig. */
2383
2602
  create(request: {
2384
2603
  /** V1 error format. */
2385
- '$.xgafv'?: string;
2604
+ '$.xgafv'?: '1' | '2';
2386
2605
  /** OAuth access token. */
2387
2606
  access_token?: string;
2388
2607
  /** Data format for response. */
2389
- alt?: string;
2608
+ alt?: 'json' | 'media' | 'proto';
2390
2609
  /** JSONP */
2391
2610
  callback?: string;
2392
2611
  /** Required. The ID of the EncryptionConfig to create. Currently, only a value of "default" is supported. */
@@ -2413,11 +2632,11 @@ declare namespace gapi.client {
2413
2632
  create(
2414
2633
  request: {
2415
2634
  /** V1 error format. */
2416
- '$.xgafv'?: string;
2635
+ '$.xgafv'?: '1' | '2';
2417
2636
  /** OAuth access token. */
2418
2637
  access_token?: string;
2419
2638
  /** Data format for response. */
2420
- alt?: string;
2639
+ alt?: 'json' | 'media' | 'proto';
2421
2640
  /** JSONP */
2422
2641
  callback?: string;
2423
2642
  /** Required. The ID of the EncryptionConfig to create. Currently, only a value of "default" is supported. */
@@ -2444,11 +2663,11 @@ declare namespace gapi.client {
2444
2663
  /** Delete an EncryptionConfig. */
2445
2664
  delete(request?: {
2446
2665
  /** V1 error format. */
2447
- '$.xgafv'?: string;
2666
+ '$.xgafv'?: '1' | '2';
2448
2667
  /** OAuth access token. */
2449
2668
  access_token?: string;
2450
2669
  /** Data format for response. */
2451
- alt?: string;
2670
+ alt?: 'json' | 'media' | 'proto';
2452
2671
  /** JSONP */
2453
2672
  callback?: string;
2454
2673
  /** Optional. Etag of the EncryptionConfig. This is a strong etag. */
@@ -2473,11 +2692,11 @@ declare namespace gapi.client {
2473
2692
  /** Get an EncryptionConfig. */
2474
2693
  get(request?: {
2475
2694
  /** V1 error format. */
2476
- '$.xgafv'?: string;
2695
+ '$.xgafv'?: '1' | '2';
2477
2696
  /** OAuth access token. */
2478
2697
  access_token?: string;
2479
2698
  /** Data format for response. */
2480
- alt?: string;
2699
+ alt?: 'json' | 'media' | 'proto';
2481
2700
  /** JSONP */
2482
2701
  callback?: string;
2483
2702
  /** Selector specifying which fields to include in a partial response. */
@@ -2500,11 +2719,11 @@ declare namespace gapi.client {
2500
2719
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2501
2720
  getIamPolicy(request?: {
2502
2721
  /** V1 error format. */
2503
- '$.xgafv'?: string;
2722
+ '$.xgafv'?: '1' | '2';
2504
2723
  /** OAuth access token. */
2505
2724
  access_token?: string;
2506
2725
  /** Data format for response. */
2507
- alt?: string;
2726
+ alt?: 'json' | 'media' | 'proto';
2508
2727
  /** JSONP */
2509
2728
  callback?: string;
2510
2729
  /** Selector specifying which fields to include in a partial response. */
@@ -2529,11 +2748,11 @@ declare namespace gapi.client {
2529
2748
  /** List EncryptionConfigs. */
2530
2749
  list(request?: {
2531
2750
  /** V1 error format. */
2532
- '$.xgafv'?: string;
2751
+ '$.xgafv'?: '1' | '2';
2533
2752
  /** OAuth access token. */
2534
2753
  access_token?: string;
2535
2754
  /** Data format for response. */
2536
- alt?: string;
2755
+ alt?: 'json' | 'media' | 'proto';
2537
2756
  /** JSONP */
2538
2757
  callback?: string;
2539
2758
  /** Selector specifying which fields to include in a partial response. */
@@ -2564,11 +2783,11 @@ declare namespace gapi.client {
2564
2783
  /** Update an EncryptionConfig. */
2565
2784
  patch(request: {
2566
2785
  /** V1 error format. */
2567
- '$.xgafv'?: string;
2786
+ '$.xgafv'?: '1' | '2';
2568
2787
  /** OAuth access token. */
2569
2788
  access_token?: string;
2570
2789
  /** Data format for response. */
2571
- alt?: string;
2790
+ alt?: 'json' | 'media' | 'proto';
2572
2791
  /** JSONP */
2573
2792
  callback?: string;
2574
2793
  /** Selector specifying which fields to include in a partial response. */
@@ -2595,11 +2814,11 @@ declare namespace gapi.client {
2595
2814
  patch(
2596
2815
  request: {
2597
2816
  /** V1 error format. */
2598
- '$.xgafv'?: string;
2817
+ '$.xgafv'?: '1' | '2';
2599
2818
  /** OAuth access token. */
2600
2819
  access_token?: string;
2601
2820
  /** Data format for response. */
2602
- alt?: string;
2821
+ alt?: 'json' | 'media' | 'proto';
2603
2822
  /** JSONP */
2604
2823
  callback?: string;
2605
2824
  /** Selector specifying which fields to include in a partial response. */
@@ -2627,11 +2846,11 @@ declare namespace gapi.client {
2627
2846
  setIamPolicy(
2628
2847
  request: {
2629
2848
  /** V1 error format. */
2630
- '$.xgafv'?: string;
2849
+ '$.xgafv'?: '1' | '2';
2631
2850
  /** OAuth access token. */
2632
2851
  access_token?: string;
2633
2852
  /** Data format for response. */
2634
- alt?: string;
2853
+ alt?: 'json' | 'media' | 'proto';
2635
2854
  /** JSONP */
2636
2855
  callback?: string;
2637
2856
  /** Selector specifying which fields to include in a partial response. */
@@ -2657,11 +2876,11 @@ declare namespace gapi.client {
2657
2876
  testIamPermissions(
2658
2877
  request: {
2659
2878
  /** V1 error format. */
2660
- '$.xgafv'?: string;
2879
+ '$.xgafv'?: '1' | '2';
2661
2880
  /** OAuth access token. */
2662
2881
  access_token?: string;
2663
2882
  /** Data format for response. */
2664
- alt?: string;
2883
+ alt?: 'json' | 'media' | 'proto';
2665
2884
  /** JSONP */
2666
2885
  callback?: string;
2667
2886
  /** Selector specifying which fields to include in a partial response. */
@@ -2688,11 +2907,11 @@ declare namespace gapi.client {
2688
2907
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to Code.CANCELLED. */
2689
2908
  cancel(request: {
2690
2909
  /** V1 error format. */
2691
- '$.xgafv'?: string;
2910
+ '$.xgafv'?: '1' | '2';
2692
2911
  /** OAuth access token. */
2693
2912
  access_token?: string;
2694
2913
  /** Data format for response. */
2695
- alt?: string;
2914
+ alt?: 'json' | 'media' | 'proto';
2696
2915
  /** JSONP */
2697
2916
  callback?: string;
2698
2917
  /** Selector specifying which fields to include in a partial response. */
@@ -2717,11 +2936,11 @@ declare namespace gapi.client {
2717
2936
  cancel(
2718
2937
  request: {
2719
2938
  /** V1 error format. */
2720
- '$.xgafv'?: string;
2939
+ '$.xgafv'?: '1' | '2';
2721
2940
  /** OAuth access token. */
2722
2941
  access_token?: string;
2723
2942
  /** Data format for response. */
2724
- alt?: string;
2943
+ alt?: 'json' | 'media' | 'proto';
2725
2944
  /** JSONP */
2726
2945
  callback?: string;
2727
2946
  /** Selector specifying which fields to include in a partial response. */
@@ -2746,11 +2965,11 @@ declare namespace gapi.client {
2746
2965
  /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. */
2747
2966
  delete(request?: {
2748
2967
  /** V1 error format. */
2749
- '$.xgafv'?: string;
2968
+ '$.xgafv'?: '1' | '2';
2750
2969
  /** OAuth access token. */
2751
2970
  access_token?: string;
2752
2971
  /** Data format for response. */
2753
- alt?: string;
2972
+ alt?: 'json' | 'media' | 'proto';
2754
2973
  /** JSONP */
2755
2974
  callback?: string;
2756
2975
  /** Selector specifying which fields to include in a partial response. */
@@ -2773,11 +2992,11 @@ declare namespace gapi.client {
2773
2992
  /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
2774
2993
  get(request?: {
2775
2994
  /** V1 error format. */
2776
- '$.xgafv'?: string;
2995
+ '$.xgafv'?: '1' | '2';
2777
2996
  /** OAuth access token. */
2778
2997
  access_token?: string;
2779
2998
  /** Data format for response. */
2780
- alt?: string;
2999
+ alt?: 'json' | 'media' | 'proto';
2781
3000
  /** JSONP */
2782
3001
  callback?: string;
2783
3002
  /** Selector specifying which fields to include in a partial response. */
@@ -2800,11 +3019,11 @@ declare namespace gapi.client {
2800
3019
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. */
2801
3020
  list(request?: {
2802
3021
  /** V1 error format. */
2803
- '$.xgafv'?: string;
3022
+ '$.xgafv'?: '1' | '2';
2804
3023
  /** OAuth access token. */
2805
3024
  access_token?: string;
2806
3025
  /** Data format for response. */
2807
- alt?: string;
3026
+ alt?: 'json' | 'media' | 'proto';
2808
3027
  /** JSONP */
2809
3028
  callback?: string;
2810
3029
  /** Selector specifying which fields to include in a partial response. */
@@ -2844,11 +3063,11 @@ declare namespace gapi.client {
2844
3063
  /** Creates an AspectType. */
2845
3064
  create(request: {
2846
3065
  /** V1 error format. */
2847
- '$.xgafv'?: string;
3066
+ '$.xgafv'?: '1' | '2';
2848
3067
  /** OAuth access token. */
2849
3068
  access_token?: string;
2850
3069
  /** Data format for response. */
2851
- alt?: string;
3070
+ alt?: 'json' | 'media' | 'proto';
2852
3071
  /** Required. AspectType identifier. */
2853
3072
  aspectTypeId?: string;
2854
3073
  /** JSONP */
@@ -2877,11 +3096,11 @@ declare namespace gapi.client {
2877
3096
  create(
2878
3097
  request: {
2879
3098
  /** V1 error format. */
2880
- '$.xgafv'?: string;
3099
+ '$.xgafv'?: '1' | '2';
2881
3100
  /** OAuth access token. */
2882
3101
  access_token?: string;
2883
3102
  /** Data format for response. */
2884
- alt?: string;
3103
+ alt?: 'json' | 'media' | 'proto';
2885
3104
  /** Required. AspectType identifier. */
2886
3105
  aspectTypeId?: string;
2887
3106
  /** JSONP */
@@ -2910,11 +3129,11 @@ declare namespace gapi.client {
2910
3129
  /** Deletes an AspectType. */
2911
3130
  delete(request?: {
2912
3131
  /** V1 error format. */
2913
- '$.xgafv'?: string;
3132
+ '$.xgafv'?: '1' | '2';
2914
3133
  /** OAuth access token. */
2915
3134
  access_token?: string;
2916
3135
  /** Data format for response. */
2917
- alt?: string;
3136
+ alt?: 'json' | 'media' | 'proto';
2918
3137
  /** JSONP */
2919
3138
  callback?: string;
2920
3139
  /** Optional. If the client provided etag value does not match the current etag value, the DeleteAspectTypeRequest method returns an ABORTED error response. */
@@ -2939,11 +3158,11 @@ declare namespace gapi.client {
2939
3158
  /** Gets an AspectType. */
2940
3159
  get(request?: {
2941
3160
  /** V1 error format. */
2942
- '$.xgafv'?: string;
3161
+ '$.xgafv'?: '1' | '2';
2943
3162
  /** OAuth access token. */
2944
3163
  access_token?: string;
2945
3164
  /** Data format for response. */
2946
- alt?: string;
3165
+ alt?: 'json' | 'media' | 'proto';
2947
3166
  /** JSONP */
2948
3167
  callback?: string;
2949
3168
  /** Selector specifying which fields to include in a partial response. */
@@ -2966,11 +3185,11 @@ declare namespace gapi.client {
2966
3185
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2967
3186
  getIamPolicy(request?: {
2968
3187
  /** V1 error format. */
2969
- '$.xgafv'?: string;
3188
+ '$.xgafv'?: '1' | '2';
2970
3189
  /** OAuth access token. */
2971
3190
  access_token?: string;
2972
3191
  /** Data format for response. */
2973
- alt?: string;
3192
+ alt?: 'json' | 'media' | 'proto';
2974
3193
  /** JSONP */
2975
3194
  callback?: string;
2976
3195
  /** Selector specifying which fields to include in a partial response. */
@@ -2995,11 +3214,11 @@ declare namespace gapi.client {
2995
3214
  /** Lists AspectType resources in a project and location. */
2996
3215
  list(request?: {
2997
3216
  /** V1 error format. */
2998
- '$.xgafv'?: string;
3217
+ '$.xgafv'?: '1' | '2';
2999
3218
  /** OAuth access token. */
3000
3219
  access_token?: string;
3001
3220
  /** Data format for response. */
3002
- alt?: string;
3221
+ alt?: 'json' | 'media' | 'proto';
3003
3222
  /** JSONP */
3004
3223
  callback?: string;
3005
3224
  /** Selector specifying which fields to include in a partial response. */
@@ -3030,11 +3249,11 @@ declare namespace gapi.client {
3030
3249
  /** Updates an AspectType. */
3031
3250
  patch(request: {
3032
3251
  /** V1 error format. */
3033
- '$.xgafv'?: string;
3252
+ '$.xgafv'?: '1' | '2';
3034
3253
  /** OAuth access token. */
3035
3254
  access_token?: string;
3036
3255
  /** Data format for response. */
3037
- alt?: string;
3256
+ alt?: 'json' | 'media' | 'proto';
3038
3257
  /** JSONP */
3039
3258
  callback?: string;
3040
3259
  /** Selector specifying which fields to include in a partial response. */
@@ -3063,11 +3282,11 @@ declare namespace gapi.client {
3063
3282
  patch(
3064
3283
  request: {
3065
3284
  /** V1 error format. */
3066
- '$.xgafv'?: string;
3285
+ '$.xgafv'?: '1' | '2';
3067
3286
  /** OAuth access token. */
3068
3287
  access_token?: string;
3069
3288
  /** Data format for response. */
3070
- alt?: string;
3289
+ alt?: 'json' | 'media' | 'proto';
3071
3290
  /** JSONP */
3072
3291
  callback?: string;
3073
3292
  /** Selector specifying which fields to include in a partial response. */
@@ -3097,11 +3316,11 @@ declare namespace gapi.client {
3097
3316
  setIamPolicy(
3098
3317
  request: {
3099
3318
  /** V1 error format. */
3100
- '$.xgafv'?: string;
3319
+ '$.xgafv'?: '1' | '2';
3101
3320
  /** OAuth access token. */
3102
3321
  access_token?: string;
3103
3322
  /** Data format for response. */
3104
- alt?: string;
3323
+ alt?: 'json' | 'media' | 'proto';
3105
3324
  /** JSONP */
3106
3325
  callback?: string;
3107
3326
  /** Selector specifying which fields to include in a partial response. */
@@ -3127,11 +3346,11 @@ declare namespace gapi.client {
3127
3346
  testIamPermissions(
3128
3347
  request: {
3129
3348
  /** V1 error format. */
3130
- '$.xgafv'?: string;
3349
+ '$.xgafv'?: '1' | '2';
3131
3350
  /** OAuth access token. */
3132
3351
  access_token?: string;
3133
3352
  /** Data format for response. */
3134
- alt?: string;
3353
+ alt?: 'json' | 'media' | 'proto';
3135
3354
  /** JSONP */
3136
3355
  callback?: string;
3137
3356
  /** Selector specifying which fields to include in a partial response. */
@@ -3158,11 +3377,11 @@ declare namespace gapi.client {
3158
3377
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3159
3378
  getIamPolicy(request?: {
3160
3379
  /** V1 error format. */
3161
- '$.xgafv'?: string;
3380
+ '$.xgafv'?: '1' | '2';
3162
3381
  /** OAuth access token. */
3163
3382
  access_token?: string;
3164
3383
  /** Data format for response. */
3165
- alt?: string;
3384
+ alt?: 'json' | 'media' | 'proto';
3166
3385
  /** JSONP */
3167
3386
  callback?: string;
3168
3387
  /** Selector specifying which fields to include in a partial response. */
@@ -3188,11 +3407,11 @@ declare namespace gapi.client {
3188
3407
  setIamPolicy(
3189
3408
  request: {
3190
3409
  /** V1 error format. */
3191
- '$.xgafv'?: string;
3410
+ '$.xgafv'?: '1' | '2';
3192
3411
  /** OAuth access token. */
3193
3412
  access_token?: string;
3194
3413
  /** Data format for response. */
3195
- alt?: string;
3414
+ alt?: 'json' | 'media' | 'proto';
3196
3415
  /** JSONP */
3197
3416
  callback?: string;
3198
3417
  /** Selector specifying which fields to include in a partial response. */
@@ -3218,11 +3437,11 @@ declare namespace gapi.client {
3218
3437
  testIamPermissions(
3219
3438
  request: {
3220
3439
  /** V1 error format. */
3221
- '$.xgafv'?: string;
3440
+ '$.xgafv'?: '1' | '2';
3222
3441
  /** OAuth access token. */
3223
3442
  access_token?: string;
3224
3443
  /** Data format for response. */
3225
- alt?: string;
3444
+ alt?: 'json' | 'media' | 'proto';
3226
3445
  /** JSONP */
3227
3446
  callback?: string;
3228
3447
  /** Selector specifying which fields to include in a partial response. */
@@ -3249,11 +3468,11 @@ declare namespace gapi.client {
3249
3468
  /** Create a DataAttributeBinding resource. */
3250
3469
  create(request: {
3251
3470
  /** V1 error format. */
3252
- '$.xgafv'?: string;
3471
+ '$.xgafv'?: '1' | '2';
3253
3472
  /** OAuth access token. */
3254
3473
  access_token?: string;
3255
3474
  /** Data format for response. */
3256
- alt?: string;
3475
+ alt?: 'json' | 'media' | 'proto';
3257
3476
  /** JSONP */
3258
3477
  callback?: string;
3259
3478
  /** Required. DataAttributeBinding identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the Location. */
@@ -3282,11 +3501,11 @@ declare namespace gapi.client {
3282
3501
  create(
3283
3502
  request: {
3284
3503
  /** V1 error format. */
3285
- '$.xgafv'?: string;
3504
+ '$.xgafv'?: '1' | '2';
3286
3505
  /** OAuth access token. */
3287
3506
  access_token?: string;
3288
3507
  /** Data format for response. */
3289
- alt?: string;
3508
+ alt?: 'json' | 'media' | 'proto';
3290
3509
  /** JSONP */
3291
3510
  callback?: string;
3292
3511
  /** Required. DataAttributeBinding identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the Location. */
@@ -3315,11 +3534,11 @@ declare namespace gapi.client {
3315
3534
  /** Deletes a DataAttributeBinding resource. All attributes within the DataAttributeBinding must be deleted before the DataAttributeBinding can be deleted. */
3316
3535
  delete(request?: {
3317
3536
  /** V1 error format. */
3318
- '$.xgafv'?: string;
3537
+ '$.xgafv'?: '1' | '2';
3319
3538
  /** OAuth access token. */
3320
3539
  access_token?: string;
3321
3540
  /** Data format for response. */
3322
- alt?: string;
3541
+ alt?: 'json' | 'media' | 'proto';
3323
3542
  /** JSONP */
3324
3543
  callback?: string;
3325
3544
  /** Required. If the client provided etag value does not match the current etag value, the DeleteDataAttributeBindingRequest method returns an ABORTED error response. Etags must be used when calling the DeleteDataAttributeBinding. */
@@ -3344,11 +3563,11 @@ declare namespace gapi.client {
3344
3563
  /** Retrieves a DataAttributeBinding resource. */
3345
3564
  get(request?: {
3346
3565
  /** V1 error format. */
3347
- '$.xgafv'?: string;
3566
+ '$.xgafv'?: '1' | '2';
3348
3567
  /** OAuth access token. */
3349
3568
  access_token?: string;
3350
3569
  /** Data format for response. */
3351
- alt?: string;
3570
+ alt?: 'json' | 'media' | 'proto';
3352
3571
  /** JSONP */
3353
3572
  callback?: string;
3354
3573
  /** Selector specifying which fields to include in a partial response. */
@@ -3371,11 +3590,11 @@ declare namespace gapi.client {
3371
3590
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3372
3591
  getIamPolicy(request?: {
3373
3592
  /** V1 error format. */
3374
- '$.xgafv'?: string;
3593
+ '$.xgafv'?: '1' | '2';
3375
3594
  /** OAuth access token. */
3376
3595
  access_token?: string;
3377
3596
  /** Data format for response. */
3378
- alt?: string;
3597
+ alt?: 'json' | 'media' | 'proto';
3379
3598
  /** JSONP */
3380
3599
  callback?: string;
3381
3600
  /** Selector specifying which fields to include in a partial response. */
@@ -3400,11 +3619,11 @@ declare namespace gapi.client {
3400
3619
  /** Lists DataAttributeBinding resources in a project and location. */
3401
3620
  list(request?: {
3402
3621
  /** V1 error format. */
3403
- '$.xgafv'?: string;
3622
+ '$.xgafv'?: '1' | '2';
3404
3623
  /** OAuth access token. */
3405
3624
  access_token?: string;
3406
3625
  /** Data format for response. */
3407
- alt?: string;
3626
+ alt?: 'json' | 'media' | 'proto';
3408
3627
  /** JSONP */
3409
3628
  callback?: string;
3410
3629
  /** Selector specifying which fields to include in a partial response. */
@@ -3435,11 +3654,11 @@ declare namespace gapi.client {
3435
3654
  /** Updates a DataAttributeBinding resource. */
3436
3655
  patch(request: {
3437
3656
  /** V1 error format. */
3438
- '$.xgafv'?: string;
3657
+ '$.xgafv'?: '1' | '2';
3439
3658
  /** OAuth access token. */
3440
3659
  access_token?: string;
3441
3660
  /** Data format for response. */
3442
- alt?: string;
3661
+ alt?: 'json' | 'media' | 'proto';
3443
3662
  /** JSONP */
3444
3663
  callback?: string;
3445
3664
  /** Selector specifying which fields to include in a partial response. */
@@ -3468,11 +3687,11 @@ declare namespace gapi.client {
3468
3687
  patch(
3469
3688
  request: {
3470
3689
  /** V1 error format. */
3471
- '$.xgafv'?: string;
3690
+ '$.xgafv'?: '1' | '2';
3472
3691
  /** OAuth access token. */
3473
3692
  access_token?: string;
3474
3693
  /** Data format for response. */
3475
- alt?: string;
3694
+ alt?: 'json' | 'media' | 'proto';
3476
3695
  /** JSONP */
3477
3696
  callback?: string;
3478
3697
  /** Selector specifying which fields to include in a partial response. */
@@ -3502,11 +3721,11 @@ declare namespace gapi.client {
3502
3721
  setIamPolicy(
3503
3722
  request: {
3504
3723
  /** V1 error format. */
3505
- '$.xgafv'?: string;
3724
+ '$.xgafv'?: '1' | '2';
3506
3725
  /** OAuth access token. */
3507
3726
  access_token?: string;
3508
3727
  /** Data format for response. */
3509
- alt?: string;
3728
+ alt?: 'json' | 'media' | 'proto';
3510
3729
  /** JSONP */
3511
3730
  callback?: string;
3512
3731
  /** Selector specifying which fields to include in a partial response. */
@@ -3532,11 +3751,11 @@ declare namespace gapi.client {
3532
3751
  testIamPermissions(
3533
3752
  request: {
3534
3753
  /** V1 error format. */
3535
- '$.xgafv'?: string;
3754
+ '$.xgafv'?: '1' | '2';
3536
3755
  /** OAuth access token. */
3537
3756
  access_token?: string;
3538
3757
  /** Data format for response. */
3539
- alt?: string;
3758
+ alt?: 'json' | 'media' | 'proto';
3540
3759
  /** JSONP */
3541
3760
  callback?: string;
3542
3761
  /** Selector specifying which fields to include in a partial response. */
@@ -3563,11 +3782,11 @@ declare namespace gapi.client {
3563
3782
  /** Creates a data asset. */
3564
3783
  create(request: {
3565
3784
  /** V1 error format. */
3566
- '$.xgafv'?: string;
3785
+ '$.xgafv'?: '1' | '2';
3567
3786
  /** OAuth access token. */
3568
3787
  access_token?: string;
3569
3788
  /** Data format for response. */
3570
- alt?: string;
3789
+ alt?: 'json' | 'media' | 'proto';
3571
3790
  /** JSONP */
3572
3791
  callback?: string;
3573
3792
  /** Optional. The ID of the data asset to create.The ID must conform to RFC-1034 and contain only lower-case letters (a-z), numbers (0-9), or hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum. Characters outside of ASCII are not permitted. Valid format regex: ^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$ If not provided, a system generated ID will be used. */
@@ -3596,11 +3815,11 @@ declare namespace gapi.client {
3596
3815
  create(
3597
3816
  request: {
3598
3817
  /** V1 error format. */
3599
- '$.xgafv'?: string;
3818
+ '$.xgafv'?: '1' | '2';
3600
3819
  /** OAuth access token. */
3601
3820
  access_token?: string;
3602
3821
  /** Data format for response. */
3603
- alt?: string;
3822
+ alt?: 'json' | 'media' | 'proto';
3604
3823
  /** JSONP */
3605
3824
  callback?: string;
3606
3825
  /** Optional. The ID of the data asset to create.The ID must conform to RFC-1034 and contain only lower-case letters (a-z), numbers (0-9), or hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum. Characters outside of ASCII are not permitted. Valid format regex: ^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$ If not provided, a system generated ID will be used. */
@@ -3629,11 +3848,11 @@ declare namespace gapi.client {
3629
3848
  /** Deletes a data asset. */
3630
3849
  delete(request?: {
3631
3850
  /** V1 error format. */
3632
- '$.xgafv'?: string;
3851
+ '$.xgafv'?: '1' | '2';
3633
3852
  /** OAuth access token. */
3634
3853
  access_token?: string;
3635
3854
  /** Data format for response. */
3636
- alt?: string;
3855
+ alt?: 'json' | 'media' | 'proto';
3637
3856
  /** JSONP */
3638
3857
  callback?: string;
3639
3858
  /** Optional. The etag of the data asset. If this is provided, it must match the server's etag. If the etag is provided and does not match the server-computed etag, the request must fail with a ABORTED error code. */
@@ -3660,11 +3879,11 @@ declare namespace gapi.client {
3660
3879
  /** Gets a data asset. */
3661
3880
  get(request?: {
3662
3881
  /** V1 error format. */
3663
- '$.xgafv'?: string;
3882
+ '$.xgafv'?: '1' | '2';
3664
3883
  /** OAuth access token. */
3665
3884
  access_token?: string;
3666
3885
  /** Data format for response. */
3667
- alt?: string;
3886
+ alt?: 'json' | 'media' | 'proto';
3668
3887
  /** JSONP */
3669
3888
  callback?: string;
3670
3889
  /** Selector specifying which fields to include in a partial response. */
@@ -3687,11 +3906,11 @@ declare namespace gapi.client {
3687
3906
  /** Lists data assets for a given data product. */
3688
3907
  list(request?: {
3689
3908
  /** V1 error format. */
3690
- '$.xgafv'?: string;
3909
+ '$.xgafv'?: '1' | '2';
3691
3910
  /** OAuth access token. */
3692
3911
  access_token?: string;
3693
3912
  /** Data format for response. */
3694
- alt?: string;
3913
+ alt?: 'json' | 'media' | 'proto';
3695
3914
  /** JSONP */
3696
3915
  callback?: string;
3697
3916
  /** Selector specifying which fields to include in a partial response. */
@@ -3722,11 +3941,11 @@ declare namespace gapi.client {
3722
3941
  /** Updates a data asset. */
3723
3942
  patch(request: {
3724
3943
  /** V1 error format. */
3725
- '$.xgafv'?: string;
3944
+ '$.xgafv'?: '1' | '2';
3726
3945
  /** OAuth access token. */
3727
3946
  access_token?: string;
3728
3947
  /** Data format for response. */
3729
- alt?: string;
3948
+ alt?: 'json' | 'media' | 'proto';
3730
3949
  /** JSONP */
3731
3950
  callback?: string;
3732
3951
  /** Selector specifying which fields to include in a partial response. */
@@ -3755,11 +3974,11 @@ declare namespace gapi.client {
3755
3974
  patch(
3756
3975
  request: {
3757
3976
  /** V1 error format. */
3758
- '$.xgafv'?: string;
3977
+ '$.xgafv'?: '1' | '2';
3759
3978
  /** OAuth access token. */
3760
3979
  access_token?: string;
3761
3980
  /** Data format for response. */
3762
- alt?: string;
3981
+ alt?: 'json' | 'media' | 'proto';
3763
3982
  /** JSONP */
3764
3983
  callback?: string;
3765
3984
  /** Selector specifying which fields to include in a partial response. */
@@ -3790,11 +4009,11 @@ declare namespace gapi.client {
3790
4009
  /** Creates a data product. */
3791
4010
  create(request: {
3792
4011
  /** V1 error format. */
3793
- '$.xgafv'?: string;
4012
+ '$.xgafv'?: '1' | '2';
3794
4013
  /** OAuth access token. */
3795
4014
  access_token?: string;
3796
4015
  /** Data format for response. */
3797
- alt?: string;
4016
+ alt?: 'json' | 'media' | 'proto';
3798
4017
  /** JSONP */
3799
4018
  callback?: string;
3800
4019
  /** Optional. The ID of the data product to create.The ID must conform to RFC-1034 and contain only lower-case letters (a-z), numbers (0-9), or hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum. Characters outside of ASCII are not permitted. Valid format regex: ^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$ If not provided, a system generated ID will be used. */
@@ -3823,11 +4042,11 @@ declare namespace gapi.client {
3823
4042
  create(
3824
4043
  request: {
3825
4044
  /** V1 error format. */
3826
- '$.xgafv'?: string;
4045
+ '$.xgafv'?: '1' | '2';
3827
4046
  /** OAuth access token. */
3828
4047
  access_token?: string;
3829
4048
  /** Data format for response. */
3830
- alt?: string;
4049
+ alt?: 'json' | 'media' | 'proto';
3831
4050
  /** JSONP */
3832
4051
  callback?: string;
3833
4052
  /** Optional. The ID of the data product to create.The ID must conform to RFC-1034 and contain only lower-case letters (a-z), numbers (0-9), or hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum. Characters outside of ASCII are not permitted. Valid format regex: ^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$ If not provided, a system generated ID will be used. */
@@ -3856,11 +4075,11 @@ declare namespace gapi.client {
3856
4075
  /** Deletes a data product. The deletion will fail if the data product is not empty (i.e. contains at least one data asset). */
3857
4076
  delete(request?: {
3858
4077
  /** V1 error format. */
3859
- '$.xgafv'?: string;
4078
+ '$.xgafv'?: '1' | '2';
3860
4079
  /** OAuth access token. */
3861
4080
  access_token?: string;
3862
4081
  /** Data format for response. */
3863
- alt?: string;
4082
+ alt?: 'json' | 'media' | 'proto';
3864
4083
  /** JSONP */
3865
4084
  callback?: string;
3866
4085
  /** Optional. The etag of the data product.If an etag is provided and does not match the current etag of the data product, then the deletion will be blocked and an ABORTED error will be returned. */
@@ -3887,11 +4106,11 @@ declare namespace gapi.client {
3887
4106
  /** Gets a data product. */
3888
4107
  get(request?: {
3889
4108
  /** V1 error format. */
3890
- '$.xgafv'?: string;
4109
+ '$.xgafv'?: '1' | '2';
3891
4110
  /** OAuth access token. */
3892
4111
  access_token?: string;
3893
4112
  /** Data format for response. */
3894
- alt?: string;
4113
+ alt?: 'json' | 'media' | 'proto';
3895
4114
  /** JSONP */
3896
4115
  callback?: string;
3897
4116
  /** Selector specifying which fields to include in a partial response. */
@@ -3914,11 +4133,11 @@ declare namespace gapi.client {
3914
4133
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3915
4134
  getIamPolicy(request?: {
3916
4135
  /** V1 error format. */
3917
- '$.xgafv'?: string;
4136
+ '$.xgafv'?: '1' | '2';
3918
4137
  /** OAuth access token. */
3919
4138
  access_token?: string;
3920
4139
  /** Data format for response. */
3921
- alt?: string;
4140
+ alt?: 'json' | 'media' | 'proto';
3922
4141
  /** JSONP */
3923
4142
  callback?: string;
3924
4143
  /** Selector specifying which fields to include in a partial response. */
@@ -3943,11 +4162,11 @@ declare namespace gapi.client {
3943
4162
  /** Lists data products for a given project. */
3944
4163
  list(request?: {
3945
4164
  /** V1 error format. */
3946
- '$.xgafv'?: string;
4165
+ '$.xgafv'?: '1' | '2';
3947
4166
  /** OAuth access token. */
3948
4167
  access_token?: string;
3949
4168
  /** Data format for response. */
3950
- alt?: string;
4169
+ alt?: 'json' | 'media' | 'proto';
3951
4170
  /** JSONP */
3952
4171
  callback?: string;
3953
4172
  /** Selector specifying which fields to include in a partial response. */
@@ -3978,11 +4197,11 @@ declare namespace gapi.client {
3978
4197
  /** Updates a data product. */
3979
4198
  patch(request: {
3980
4199
  /** V1 error format. */
3981
- '$.xgafv'?: string;
4200
+ '$.xgafv'?: '1' | '2';
3982
4201
  /** OAuth access token. */
3983
4202
  access_token?: string;
3984
4203
  /** Data format for response. */
3985
- alt?: string;
4204
+ alt?: 'json' | 'media' | 'proto';
3986
4205
  /** JSONP */
3987
4206
  callback?: string;
3988
4207
  /** Selector specifying which fields to include in a partial response. */
@@ -4011,11 +4230,11 @@ declare namespace gapi.client {
4011
4230
  patch(
4012
4231
  request: {
4013
4232
  /** V1 error format. */
4014
- '$.xgafv'?: string;
4233
+ '$.xgafv'?: '1' | '2';
4015
4234
  /** OAuth access token. */
4016
4235
  access_token?: string;
4017
4236
  /** Data format for response. */
4018
- alt?: string;
4237
+ alt?: 'json' | 'media' | 'proto';
4019
4238
  /** JSONP */
4020
4239
  callback?: string;
4021
4240
  /** Selector specifying which fields to include in a partial response. */
@@ -4045,11 +4264,11 @@ declare namespace gapi.client {
4045
4264
  setIamPolicy(
4046
4265
  request: {
4047
4266
  /** V1 error format. */
4048
- '$.xgafv'?: string;
4267
+ '$.xgafv'?: '1' | '2';
4049
4268
  /** OAuth access token. */
4050
4269
  access_token?: string;
4051
4270
  /** Data format for response. */
4052
- alt?: string;
4271
+ alt?: 'json' | 'media' | 'proto';
4053
4272
  /** JSONP */
4054
4273
  callback?: string;
4055
4274
  /** Selector specifying which fields to include in a partial response. */
@@ -4075,11 +4294,11 @@ declare namespace gapi.client {
4075
4294
  testIamPermissions(
4076
4295
  request: {
4077
4296
  /** V1 error format. */
4078
- '$.xgafv'?: string;
4297
+ '$.xgafv'?: '1' | '2';
4079
4298
  /** OAuth access token. */
4080
4299
  access_token?: string;
4081
4300
  /** Data format for response. */
4082
- alt?: string;
4301
+ alt?: 'json' | 'media' | 'proto';
4083
4302
  /** JSONP */
4084
4303
  callback?: string;
4085
4304
  /** Selector specifying which fields to include in a partial response. */
@@ -4107,11 +4326,11 @@ declare namespace gapi.client {
4107
4326
  /** Generates recommended data quality rules based on the results of a data profiling scan.Use the recommendations to build rules for a data quality scan. */
4108
4327
  generateDataQualityRules(request: {
4109
4328
  /** V1 error format. */
4110
- '$.xgafv'?: string;
4329
+ '$.xgafv'?: '1' | '2';
4111
4330
  /** OAuth access token. */
4112
4331
  access_token?: string;
4113
4332
  /** Data format for response. */
4114
- alt?: string;
4333
+ alt?: 'json' | 'media' | 'proto';
4115
4334
  /** JSONP */
4116
4335
  callback?: string;
4117
4336
  /** Selector specifying which fields to include in a partial response. */
@@ -4136,11 +4355,11 @@ declare namespace gapi.client {
4136
4355
  generateDataQualityRules(
4137
4356
  request: {
4138
4357
  /** V1 error format. */
4139
- '$.xgafv'?: string;
4358
+ '$.xgafv'?: '1' | '2';
4140
4359
  /** OAuth access token. */
4141
4360
  access_token?: string;
4142
4361
  /** Data format for response. */
4143
- alt?: string;
4362
+ alt?: 'json' | 'media' | 'proto';
4144
4363
  /** JSONP */
4145
4364
  callback?: string;
4146
4365
  /** Selector specifying which fields to include in a partial response. */
@@ -4165,11 +4384,11 @@ declare namespace gapi.client {
4165
4384
  /** Gets a DataScanJob resource. */
4166
4385
  get(request?: {
4167
4386
  /** V1 error format. */
4168
- '$.xgafv'?: string;
4387
+ '$.xgafv'?: '1' | '2';
4169
4388
  /** OAuth access token. */
4170
4389
  access_token?: string;
4171
4390
  /** Data format for response. */
4172
- alt?: string;
4391
+ alt?: 'json' | 'media' | 'proto';
4173
4392
  /** JSONP */
4174
4393
  callback?: string;
4175
4394
  /** Selector specifying which fields to include in a partial response. */
@@ -4189,16 +4408,16 @@ declare namespace gapi.client {
4189
4408
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4190
4409
  uploadType?: string;
4191
4410
  /** Optional. Select the DataScanJob view to return. Defaults to BASIC. */
4192
- view?: string;
4411
+ view?: 'DATA_SCAN_JOB_VIEW_UNSPECIFIED' | 'BASIC' | 'FULL';
4193
4412
  }): Request<GoogleCloudDataplexV1DataScanJob>;
4194
4413
  /** Lists DataScanJobs under the given DataScan. */
4195
4414
  list(request?: {
4196
4415
  /** V1 error format. */
4197
- '$.xgafv'?: string;
4416
+ '$.xgafv'?: '1' | '2';
4198
4417
  /** OAuth access token. */
4199
4418
  access_token?: string;
4200
4419
  /** Data format for response. */
4201
- alt?: string;
4420
+ alt?: 'json' | 'media' | 'proto';
4202
4421
  /** JSONP */
4203
4422
  callback?: string;
4204
4423
  /** Selector specifying which fields to include in a partial response. */
@@ -4229,11 +4448,11 @@ declare namespace gapi.client {
4229
4448
  /** Creates a DataScan resource. */
4230
4449
  create(request: {
4231
4450
  /** V1 error format. */
4232
- '$.xgafv'?: string;
4451
+ '$.xgafv'?: '1' | '2';
4233
4452
  /** OAuth access token. */
4234
4453
  access_token?: string;
4235
4454
  /** Data format for response. */
4236
- alt?: string;
4455
+ alt?: 'json' | 'media' | 'proto';
4237
4456
  /** JSONP */
4238
4457
  callback?: string;
4239
4458
  /** Required. DataScan identifier. Must contain only lowercase letters, numbers and hyphens. Must start with a letter. Must end with a number or a letter. Must be between 1-63 characters. Must be unique within the customer project / location. */
@@ -4262,11 +4481,11 @@ declare namespace gapi.client {
4262
4481
  create(
4263
4482
  request: {
4264
4483
  /** V1 error format. */
4265
- '$.xgafv'?: string;
4484
+ '$.xgafv'?: '1' | '2';
4266
4485
  /** OAuth access token. */
4267
4486
  access_token?: string;
4268
4487
  /** Data format for response. */
4269
- alt?: string;
4488
+ alt?: 'json' | 'media' | 'proto';
4270
4489
  /** JSONP */
4271
4490
  callback?: string;
4272
4491
  /** Required. DataScan identifier. Must contain only lowercase letters, numbers and hyphens. Must start with a letter. Must end with a number or a letter. Must be between 1-63 characters. Must be unique within the customer project / location. */
@@ -4295,11 +4514,11 @@ declare namespace gapi.client {
4295
4514
  /** Deletes a DataScan resource. */
4296
4515
  delete(request?: {
4297
4516
  /** V1 error format. */
4298
- '$.xgafv'?: string;
4517
+ '$.xgafv'?: '1' | '2';
4299
4518
  /** OAuth access token. */
4300
4519
  access_token?: string;
4301
4520
  /** Data format for response. */
4302
- alt?: string;
4521
+ alt?: 'json' | 'media' | 'proto';
4303
4522
  /** JSONP */
4304
4523
  callback?: string;
4305
4524
  /** Selector specifying which fields to include in a partial response. */
@@ -4324,11 +4543,11 @@ declare namespace gapi.client {
4324
4543
  /** Generates recommended data quality rules based on the results of a data profiling scan.Use the recommendations to build rules for a data quality scan. */
4325
4544
  generateDataQualityRules(request: {
4326
4545
  /** V1 error format. */
4327
- '$.xgafv'?: string;
4546
+ '$.xgafv'?: '1' | '2';
4328
4547
  /** OAuth access token. */
4329
4548
  access_token?: string;
4330
4549
  /** Data format for response. */
4331
- alt?: string;
4550
+ alt?: 'json' | 'media' | 'proto';
4332
4551
  /** JSONP */
4333
4552
  callback?: string;
4334
4553
  /** Selector specifying which fields to include in a partial response. */
@@ -4353,11 +4572,11 @@ declare namespace gapi.client {
4353
4572
  generateDataQualityRules(
4354
4573
  request: {
4355
4574
  /** V1 error format. */
4356
- '$.xgafv'?: string;
4575
+ '$.xgafv'?: '1' | '2';
4357
4576
  /** OAuth access token. */
4358
4577
  access_token?: string;
4359
4578
  /** Data format for response. */
4360
- alt?: string;
4579
+ alt?: 'json' | 'media' | 'proto';
4361
4580
  /** JSONP */
4362
4581
  callback?: string;
4363
4582
  /** Selector specifying which fields to include in a partial response. */
@@ -4382,11 +4601,11 @@ declare namespace gapi.client {
4382
4601
  /** Gets a DataScan resource. */
4383
4602
  get(request?: {
4384
4603
  /** V1 error format. */
4385
- '$.xgafv'?: string;
4604
+ '$.xgafv'?: '1' | '2';
4386
4605
  /** OAuth access token. */
4387
4606
  access_token?: string;
4388
4607
  /** Data format for response. */
4389
- alt?: string;
4608
+ alt?: 'json' | 'media' | 'proto';
4390
4609
  /** JSONP */
4391
4610
  callback?: string;
4392
4611
  /** Selector specifying which fields to include in a partial response. */
@@ -4406,16 +4625,16 @@ declare namespace gapi.client {
4406
4625
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4407
4626
  uploadType?: string;
4408
4627
  /** Optional. Select the DataScan view to return. Defaults to BASIC. */
4409
- view?: string;
4628
+ view?: 'DATA_SCAN_VIEW_UNSPECIFIED' | 'BASIC' | 'FULL';
4410
4629
  }): Request<GoogleCloudDataplexV1DataScan>;
4411
4630
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
4412
4631
  getIamPolicy(request?: {
4413
4632
  /** V1 error format. */
4414
- '$.xgafv'?: string;
4633
+ '$.xgafv'?: '1' | '2';
4415
4634
  /** OAuth access token. */
4416
4635
  access_token?: string;
4417
4636
  /** Data format for response. */
4418
- alt?: string;
4637
+ alt?: 'json' | 'media' | 'proto';
4419
4638
  /** JSONP */
4420
4639
  callback?: string;
4421
4640
  /** Selector specifying which fields to include in a partial response. */
@@ -4440,11 +4659,11 @@ declare namespace gapi.client {
4440
4659
  /** Lists DataScans. */
4441
4660
  list(request?: {
4442
4661
  /** V1 error format. */
4443
- '$.xgafv'?: string;
4662
+ '$.xgafv'?: '1' | '2';
4444
4663
  /** OAuth access token. */
4445
4664
  access_token?: string;
4446
4665
  /** Data format for response. */
4447
- alt?: string;
4666
+ alt?: 'json' | 'media' | 'proto';
4448
4667
  /** JSONP */
4449
4668
  callback?: string;
4450
4669
  /** Selector specifying which fields to include in a partial response. */
@@ -4475,11 +4694,11 @@ declare namespace gapi.client {
4475
4694
  /** Updates a DataScan resource. */
4476
4695
  patch(request: {
4477
4696
  /** V1 error format. */
4478
- '$.xgafv'?: string;
4697
+ '$.xgafv'?: '1' | '2';
4479
4698
  /** OAuth access token. */
4480
4699
  access_token?: string;
4481
4700
  /** Data format for response. */
4482
- alt?: string;
4701
+ alt?: 'json' | 'media' | 'proto';
4483
4702
  /** JSONP */
4484
4703
  callback?: string;
4485
4704
  /** Selector specifying which fields to include in a partial response. */
@@ -4508,11 +4727,11 @@ declare namespace gapi.client {
4508
4727
  patch(
4509
4728
  request: {
4510
4729
  /** V1 error format. */
4511
- '$.xgafv'?: string;
4730
+ '$.xgafv'?: '1' | '2';
4512
4731
  /** OAuth access token. */
4513
4732
  access_token?: string;
4514
4733
  /** Data format for response. */
4515
- alt?: string;
4734
+ alt?: 'json' | 'media' | 'proto';
4516
4735
  /** JSONP */
4517
4736
  callback?: string;
4518
4737
  /** Selector specifying which fields to include in a partial response. */
@@ -4541,11 +4760,11 @@ declare namespace gapi.client {
4541
4760
  /** Runs an on-demand execution of a DataScan */
4542
4761
  run(request: {
4543
4762
  /** V1 error format. */
4544
- '$.xgafv'?: string;
4763
+ '$.xgafv'?: '1' | '2';
4545
4764
  /** OAuth access token. */
4546
4765
  access_token?: string;
4547
4766
  /** Data format for response. */
4548
- alt?: string;
4767
+ alt?: 'json' | 'media' | 'proto';
4549
4768
  /** JSONP */
4550
4769
  callback?: string;
4551
4770
  /** Selector specifying which fields to include in a partial response. */
@@ -4570,11 +4789,11 @@ declare namespace gapi.client {
4570
4789
  run(
4571
4790
  request: {
4572
4791
  /** V1 error format. */
4573
- '$.xgafv'?: string;
4792
+ '$.xgafv'?: '1' | '2';
4574
4793
  /** OAuth access token. */
4575
4794
  access_token?: string;
4576
4795
  /** Data format for response. */
4577
- alt?: string;
4796
+ alt?: 'json' | 'media' | 'proto';
4578
4797
  /** JSONP */
4579
4798
  callback?: string;
4580
4799
  /** Selector specifying which fields to include in a partial response. */
@@ -4600,11 +4819,11 @@ declare namespace gapi.client {
4600
4819
  setIamPolicy(
4601
4820
  request: {
4602
4821
  /** V1 error format. */
4603
- '$.xgafv'?: string;
4822
+ '$.xgafv'?: '1' | '2';
4604
4823
  /** OAuth access token. */
4605
4824
  access_token?: string;
4606
4825
  /** Data format for response. */
4607
- alt?: string;
4826
+ alt?: 'json' | 'media' | 'proto';
4608
4827
  /** JSONP */
4609
4828
  callback?: string;
4610
4829
  /** Selector specifying which fields to include in a partial response. */
@@ -4630,11 +4849,11 @@ declare namespace gapi.client {
4630
4849
  testIamPermissions(
4631
4850
  request: {
4632
4851
  /** V1 error format. */
4633
- '$.xgafv'?: string;
4852
+ '$.xgafv'?: '1' | '2';
4634
4853
  /** OAuth access token. */
4635
4854
  access_token?: string;
4636
4855
  /** Data format for response. */
4637
- alt?: string;
4856
+ alt?: 'json' | 'media' | 'proto';
4638
4857
  /** JSONP */
4639
4858
  callback?: string;
4640
4859
  /** Selector specifying which fields to include in a partial response. */
@@ -4662,11 +4881,11 @@ declare namespace gapi.client {
4662
4881
  /** Create a DataAttribute resource. */
4663
4882
  create(request: {
4664
4883
  /** V1 error format. */
4665
- '$.xgafv'?: string;
4884
+ '$.xgafv'?: '1' | '2';
4666
4885
  /** OAuth access token. */
4667
4886
  access_token?: string;
4668
4887
  /** Data format for response. */
4669
- alt?: string;
4888
+ alt?: 'json' | 'media' | 'proto';
4670
4889
  /** JSONP */
4671
4890
  callback?: string;
4672
4891
  /** Required. DataAttribute identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the DataTaxonomy. */
@@ -4695,11 +4914,11 @@ declare namespace gapi.client {
4695
4914
  create(
4696
4915
  request: {
4697
4916
  /** V1 error format. */
4698
- '$.xgafv'?: string;
4917
+ '$.xgafv'?: '1' | '2';
4699
4918
  /** OAuth access token. */
4700
4919
  access_token?: string;
4701
4920
  /** Data format for response. */
4702
- alt?: string;
4921
+ alt?: 'json' | 'media' | 'proto';
4703
4922
  /** JSONP */
4704
4923
  callback?: string;
4705
4924
  /** Required. DataAttribute identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the DataTaxonomy. */
@@ -4728,11 +4947,11 @@ declare namespace gapi.client {
4728
4947
  /** Deletes a Data Attribute resource. */
4729
4948
  delete(request?: {
4730
4949
  /** V1 error format. */
4731
- '$.xgafv'?: string;
4950
+ '$.xgafv'?: '1' | '2';
4732
4951
  /** OAuth access token. */
4733
4952
  access_token?: string;
4734
4953
  /** Data format for response. */
4735
- alt?: string;
4954
+ alt?: 'json' | 'media' | 'proto';
4736
4955
  /** JSONP */
4737
4956
  callback?: string;
4738
4957
  /** Optional. If the client provided etag value does not match the current etag value, the DeleteDataAttribute method returns an ABORTED error response. */
@@ -4757,11 +4976,11 @@ declare namespace gapi.client {
4757
4976
  /** Retrieves a Data Attribute resource. */
4758
4977
  get(request?: {
4759
4978
  /** V1 error format. */
4760
- '$.xgafv'?: string;
4979
+ '$.xgafv'?: '1' | '2';
4761
4980
  /** OAuth access token. */
4762
4981
  access_token?: string;
4763
4982
  /** Data format for response. */
4764
- alt?: string;
4983
+ alt?: 'json' | 'media' | 'proto';
4765
4984
  /** JSONP */
4766
4985
  callback?: string;
4767
4986
  /** Selector specifying which fields to include in a partial response. */
@@ -4784,11 +5003,11 @@ declare namespace gapi.client {
4784
5003
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
4785
5004
  getIamPolicy(request?: {
4786
5005
  /** V1 error format. */
4787
- '$.xgafv'?: string;
5006
+ '$.xgafv'?: '1' | '2';
4788
5007
  /** OAuth access token. */
4789
5008
  access_token?: string;
4790
5009
  /** Data format for response. */
4791
- alt?: string;
5010
+ alt?: 'json' | 'media' | 'proto';
4792
5011
  /** JSONP */
4793
5012
  callback?: string;
4794
5013
  /** Selector specifying which fields to include in a partial response. */
@@ -4813,11 +5032,11 @@ declare namespace gapi.client {
4813
5032
  /** Lists Data Attribute resources in a DataTaxonomy. */
4814
5033
  list(request?: {
4815
5034
  /** V1 error format. */
4816
- '$.xgafv'?: string;
5035
+ '$.xgafv'?: '1' | '2';
4817
5036
  /** OAuth access token. */
4818
5037
  access_token?: string;
4819
5038
  /** Data format for response. */
4820
- alt?: string;
5039
+ alt?: 'json' | 'media' | 'proto';
4821
5040
  /** JSONP */
4822
5041
  callback?: string;
4823
5042
  /** Selector specifying which fields to include in a partial response. */
@@ -4848,11 +5067,11 @@ declare namespace gapi.client {
4848
5067
  /** Updates a DataAttribute resource. */
4849
5068
  patch(request: {
4850
5069
  /** V1 error format. */
4851
- '$.xgafv'?: string;
5070
+ '$.xgafv'?: '1' | '2';
4852
5071
  /** OAuth access token. */
4853
5072
  access_token?: string;
4854
5073
  /** Data format for response. */
4855
- alt?: string;
5074
+ alt?: 'json' | 'media' | 'proto';
4856
5075
  /** JSONP */
4857
5076
  callback?: string;
4858
5077
  /** Selector specifying which fields to include in a partial response. */
@@ -4881,11 +5100,11 @@ declare namespace gapi.client {
4881
5100
  patch(
4882
5101
  request: {
4883
5102
  /** V1 error format. */
4884
- '$.xgafv'?: string;
5103
+ '$.xgafv'?: '1' | '2';
4885
5104
  /** OAuth access token. */
4886
5105
  access_token?: string;
4887
5106
  /** Data format for response. */
4888
- alt?: string;
5107
+ alt?: 'json' | 'media' | 'proto';
4889
5108
  /** JSONP */
4890
5109
  callback?: string;
4891
5110
  /** Selector specifying which fields to include in a partial response. */
@@ -4915,11 +5134,11 @@ declare namespace gapi.client {
4915
5134
  setIamPolicy(
4916
5135
  request: {
4917
5136
  /** V1 error format. */
4918
- '$.xgafv'?: string;
5137
+ '$.xgafv'?: '1' | '2';
4919
5138
  /** OAuth access token. */
4920
5139
  access_token?: string;
4921
5140
  /** Data format for response. */
4922
- alt?: string;
5141
+ alt?: 'json' | 'media' | 'proto';
4923
5142
  /** JSONP */
4924
5143
  callback?: string;
4925
5144
  /** Selector specifying which fields to include in a partial response. */
@@ -4945,11 +5164,11 @@ declare namespace gapi.client {
4945
5164
  testIamPermissions(
4946
5165
  request: {
4947
5166
  /** V1 error format. */
4948
- '$.xgafv'?: string;
5167
+ '$.xgafv'?: '1' | '2';
4949
5168
  /** OAuth access token. */
4950
5169
  access_token?: string;
4951
5170
  /** Data format for response. */
4952
- alt?: string;
5171
+ alt?: 'json' | 'media' | 'proto';
4953
5172
  /** JSONP */
4954
5173
  callback?: string;
4955
5174
  /** Selector specifying which fields to include in a partial response. */
@@ -4976,11 +5195,11 @@ declare namespace gapi.client {
4976
5195
  /** Create a DataTaxonomy resource. */
4977
5196
  create(request: {
4978
5197
  /** V1 error format. */
4979
- '$.xgafv'?: string;
5198
+ '$.xgafv'?: '1' | '2';
4980
5199
  /** OAuth access token. */
4981
5200
  access_token?: string;
4982
5201
  /** Data format for response. */
4983
- alt?: string;
5202
+ alt?: 'json' | 'media' | 'proto';
4984
5203
  /** JSONP */
4985
5204
  callback?: string;
4986
5205
  /** Required. DataTaxonomy identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the Project. */
@@ -5008,11 +5227,11 @@ declare namespace gapi.client {
5008
5227
  create(
5009
5228
  request: {
5010
5229
  /** V1 error format. */
5011
- '$.xgafv'?: string;
5230
+ '$.xgafv'?: '1' | '2';
5012
5231
  /** OAuth access token. */
5013
5232
  access_token?: string;
5014
5233
  /** Data format for response. */
5015
- alt?: string;
5234
+ alt?: 'json' | 'media' | 'proto';
5016
5235
  /** JSONP */
5017
5236
  callback?: string;
5018
5237
  /** Required. DataTaxonomy identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the Project. */
@@ -5040,11 +5259,11 @@ declare namespace gapi.client {
5040
5259
  /** Deletes a DataTaxonomy resource. All attributes within the DataTaxonomy must be deleted before the DataTaxonomy can be deleted. */
5041
5260
  delete(request?: {
5042
5261
  /** V1 error format. */
5043
- '$.xgafv'?: string;
5262
+ '$.xgafv'?: '1' | '2';
5044
5263
  /** OAuth access token. */
5045
5264
  access_token?: string;
5046
5265
  /** Data format for response. */
5047
- alt?: string;
5266
+ alt?: 'json' | 'media' | 'proto';
5048
5267
  /** JSONP */
5049
5268
  callback?: string;
5050
5269
  /** Optional. If the client provided etag value does not match the current etag value,the DeleteDataTaxonomy method returns an ABORTED error. */
@@ -5069,11 +5288,11 @@ declare namespace gapi.client {
5069
5288
  /** Retrieves a DataTaxonomy resource. */
5070
5289
  get(request?: {
5071
5290
  /** V1 error format. */
5072
- '$.xgafv'?: string;
5291
+ '$.xgafv'?: '1' | '2';
5073
5292
  /** OAuth access token. */
5074
5293
  access_token?: string;
5075
5294
  /** Data format for response. */
5076
- alt?: string;
5295
+ alt?: 'json' | 'media' | 'proto';
5077
5296
  /** JSONP */
5078
5297
  callback?: string;
5079
5298
  /** Selector specifying which fields to include in a partial response. */
@@ -5095,11 +5314,11 @@ declare namespace gapi.client {
5095
5314
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
5096
5315
  getIamPolicy(request?: {
5097
5316
  /** V1 error format. */
5098
- '$.xgafv'?: string;
5317
+ '$.xgafv'?: '1' | '2';
5099
5318
  /** OAuth access token. */
5100
5319
  access_token?: string;
5101
5320
  /** Data format for response. */
5102
- alt?: string;
5321
+ alt?: 'json' | 'media' | 'proto';
5103
5322
  /** JSONP */
5104
5323
  callback?: string;
5105
5324
  /** Selector specifying which fields to include in a partial response. */
@@ -5124,11 +5343,11 @@ declare namespace gapi.client {
5124
5343
  /** Lists DataTaxonomy resources in a project and location. */
5125
5344
  list(request?: {
5126
5345
  /** V1 error format. */
5127
- '$.xgafv'?: string;
5346
+ '$.xgafv'?: '1' | '2';
5128
5347
  /** OAuth access token. */
5129
5348
  access_token?: string;
5130
5349
  /** Data format for response. */
5131
- alt?: string;
5350
+ alt?: 'json' | 'media' | 'proto';
5132
5351
  /** JSONP */
5133
5352
  callback?: string;
5134
5353
  /** Selector specifying which fields to include in a partial response. */
@@ -5159,11 +5378,11 @@ declare namespace gapi.client {
5159
5378
  /** Updates a DataTaxonomy resource. */
5160
5379
  patch(request: {
5161
5380
  /** V1 error format. */
5162
- '$.xgafv'?: string;
5381
+ '$.xgafv'?: '1' | '2';
5163
5382
  /** OAuth access token. */
5164
5383
  access_token?: string;
5165
5384
  /** Data format for response. */
5166
- alt?: string;
5385
+ alt?: 'json' | 'media' | 'proto';
5167
5386
  /** JSONP */
5168
5387
  callback?: string;
5169
5388
  /** Selector specifying which fields to include in a partial response. */
@@ -5192,11 +5411,11 @@ declare namespace gapi.client {
5192
5411
  patch(
5193
5412
  request: {
5194
5413
  /** V1 error format. */
5195
- '$.xgafv'?: string;
5414
+ '$.xgafv'?: '1' | '2';
5196
5415
  /** OAuth access token. */
5197
5416
  access_token?: string;
5198
5417
  /** Data format for response. */
5199
- alt?: string;
5418
+ alt?: 'json' | 'media' | 'proto';
5200
5419
  /** JSONP */
5201
5420
  callback?: string;
5202
5421
  /** Selector specifying which fields to include in a partial response. */
@@ -5226,11 +5445,11 @@ declare namespace gapi.client {
5226
5445
  setIamPolicy(
5227
5446
  request: {
5228
5447
  /** V1 error format. */
5229
- '$.xgafv'?: string;
5448
+ '$.xgafv'?: '1' | '2';
5230
5449
  /** OAuth access token. */
5231
5450
  access_token?: string;
5232
5451
  /** Data format for response. */
5233
- alt?: string;
5452
+ alt?: 'json' | 'media' | 'proto';
5234
5453
  /** JSONP */
5235
5454
  callback?: string;
5236
5455
  /** Selector specifying which fields to include in a partial response. */
@@ -5256,11 +5475,11 @@ declare namespace gapi.client {
5256
5475
  testIamPermissions(
5257
5476
  request: {
5258
5477
  /** V1 error format. */
5259
- '$.xgafv'?: string;
5478
+ '$.xgafv'?: '1' | '2';
5260
5479
  /** OAuth access token. */
5261
5480
  access_token?: string;
5262
5481
  /** Data format for response. */
5263
- alt?: string;
5482
+ alt?: 'json' | 'media' | 'proto';
5264
5483
  /** JSONP */
5265
5484
  callback?: string;
5266
5485
  /** Selector specifying which fields to include in a partial response. */
@@ -5288,11 +5507,11 @@ declare namespace gapi.client {
5288
5507
  /** Creates an Entry. */
5289
5508
  create(request: {
5290
5509
  /** V1 error format. */
5291
- '$.xgafv'?: string;
5510
+ '$.xgafv'?: '1' | '2';
5292
5511
  /** OAuth access token. */
5293
5512
  access_token?: string;
5294
5513
  /** Data format for response. */
5295
- alt?: string;
5514
+ alt?: 'json' | 'media' | 'proto';
5296
5515
  /** JSONP */
5297
5516
  callback?: string;
5298
5517
  /** Required. Entry identifier. It has to be unique within an Entry Group.Entries corresponding to Google Cloud resources use an Entry ID format based on full resource names (https://cloud.google.com/apis/design/resource_names#full_resource_name). The format is a full resource name of the resource without the prefix double slashes in the API service name part of the full resource name. This allows retrieval of entries using their associated resource name.For example, if the full resource name of a resource is //library.googleapis.com/shelves/shelf1/books/book2, then the suggested entry_id is library.googleapis.com/shelves/shelf1/books/book2.It is also suggested to follow the same convention for entries corresponding to resources from providers or systems other than Google Cloud.The maximum size of the field is 4000 characters. */
@@ -5319,11 +5538,11 @@ declare namespace gapi.client {
5319
5538
  create(
5320
5539
  request: {
5321
5540
  /** V1 error format. */
5322
- '$.xgafv'?: string;
5541
+ '$.xgafv'?: '1' | '2';
5323
5542
  /** OAuth access token. */
5324
5543
  access_token?: string;
5325
5544
  /** Data format for response. */
5326
- alt?: string;
5545
+ alt?: 'json' | 'media' | 'proto';
5327
5546
  /** JSONP */
5328
5547
  callback?: string;
5329
5548
  /** Required. Entry identifier. It has to be unique within an Entry Group.Entries corresponding to Google Cloud resources use an Entry ID format based on full resource names (https://cloud.google.com/apis/design/resource_names#full_resource_name). The format is a full resource name of the resource without the prefix double slashes in the API service name part of the full resource name. This allows retrieval of entries using their associated resource name.For example, if the full resource name of a resource is //library.googleapis.com/shelves/shelf1/books/book2, then the suggested entry_id is library.googleapis.com/shelves/shelf1/books/book2.It is also suggested to follow the same convention for entries corresponding to resources from providers or systems other than Google Cloud.The maximum size of the field is 4000 characters. */
@@ -5350,11 +5569,11 @@ declare namespace gapi.client {
5350
5569
  /** Deletes an Entry. */
5351
5570
  delete(request?: {
5352
5571
  /** V1 error format. */
5353
- '$.xgafv'?: string;
5572
+ '$.xgafv'?: '1' | '2';
5354
5573
  /** OAuth access token. */
5355
5574
  access_token?: string;
5356
5575
  /** Data format for response. */
5357
- alt?: string;
5576
+ alt?: 'json' | 'media' | 'proto';
5358
5577
  /** JSONP */
5359
5578
  callback?: string;
5360
5579
  /** Selector specifying which fields to include in a partial response. */
@@ -5377,11 +5596,11 @@ declare namespace gapi.client {
5377
5596
  /** Gets an Entry. */
5378
5597
  get(request?: {
5379
5598
  /** V1 error format. */
5380
- '$.xgafv'?: string;
5599
+ '$.xgafv'?: '1' | '2';
5381
5600
  /** OAuth access token. */
5382
5601
  access_token?: string;
5383
5602
  /** Data format for response. */
5384
- alt?: string;
5603
+ alt?: 'json' | 'media' | 'proto';
5385
5604
  /** Optional. Limits the aspects returned to the provided aspect types. It only works for CUSTOM view. */
5386
5605
  aspectTypes?: string | string[];
5387
5606
  /** JSONP */
@@ -5405,16 +5624,16 @@ declare namespace gapi.client {
5405
5624
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5406
5625
  uploadType?: string;
5407
5626
  /** Optional. View to control which parts of an entry the service should return. */
5408
- view?: string;
5627
+ view?: 'ENTRY_VIEW_UNSPECIFIED' | 'BASIC' | 'FULL' | 'CUSTOM' | 'ALL';
5409
5628
  }): Request<GoogleCloudDataplexV1Entry>;
5410
5629
  /** Lists Entries within an EntryGroup. */
5411
5630
  list(request?: {
5412
5631
  /** V1 error format. */
5413
- '$.xgafv'?: string;
5632
+ '$.xgafv'?: '1' | '2';
5414
5633
  /** OAuth access token. */
5415
5634
  access_token?: string;
5416
5635
  /** Data format for response. */
5417
- alt?: string;
5636
+ alt?: 'json' | 'media' | 'proto';
5418
5637
  /** JSONP */
5419
5638
  callback?: string;
5420
5639
  /** Selector specifying which fields to include in a partial response. */
@@ -5443,13 +5662,13 @@ declare namespace gapi.client {
5443
5662
  /** Updates an Entry. */
5444
5663
  patch(request: {
5445
5664
  /** V1 error format. */
5446
- '$.xgafv'?: string;
5665
+ '$.xgafv'?: '1' | '2';
5447
5666
  /** OAuth access token. */
5448
5667
  access_token?: string;
5449
5668
  /** Optional. If set to true and the entry doesn't exist, the service will create it. */
5450
5669
  allowMissing?: boolean;
5451
5670
  /** Data format for response. */
5452
- alt?: string;
5671
+ alt?: 'json' | 'media' | 'proto';
5453
5672
  /** Optional. The map keys of the Aspects which the service should modify. It supports the following syntaxes: - matches an aspect of the given type and empty path. @path - matches an aspect of the given type and specified path. For example, to attach an aspect to a field that is specified by the schema aspect, the path should have the format Schema.. @* - matches aspects of the given type for all paths. *@path - matches aspects of all types on the given path.The service will not remove existing aspects matching the syntax unless delete_missing_aspects is set to true.If this field is left empty, the service treats it as specifying exactly those Aspects present in the request. */
5454
5673
  aspectKeys?: string | string[];
5455
5674
  /** JSONP */
@@ -5480,13 +5699,13 @@ declare namespace gapi.client {
5480
5699
  patch(
5481
5700
  request: {
5482
5701
  /** V1 error format. */
5483
- '$.xgafv'?: string;
5702
+ '$.xgafv'?: '1' | '2';
5484
5703
  /** OAuth access token. */
5485
5704
  access_token?: string;
5486
5705
  /** Optional. If set to true and the entry doesn't exist, the service will create it. */
5487
5706
  allowMissing?: boolean;
5488
5707
  /** Data format for response. */
5489
- alt?: string;
5708
+ alt?: 'json' | 'media' | 'proto';
5490
5709
  /** Optional. The map keys of the Aspects which the service should modify. It supports the following syntaxes: - matches an aspect of the given type and empty path. @path - matches an aspect of the given type and specified path. For example, to attach an aspect to a field that is specified by the schema aspect, the path should have the format Schema.. @* - matches aspects of the given type for all paths. *@path - matches aspects of all types on the given path.The service will not remove existing aspects matching the syntax unless delete_missing_aspects is set to true.If this field is left empty, the service treats it as specifying exactly those Aspects present in the request. */
5491
5710
  aspectKeys?: string | string[];
5492
5711
  /** JSONP */
@@ -5519,11 +5738,11 @@ declare namespace gapi.client {
5519
5738
  /** Creates an Entry Link. */
5520
5739
  create(request: {
5521
5740
  /** V1 error format. */
5522
- '$.xgafv'?: string;
5741
+ '$.xgafv'?: '1' | '2';
5523
5742
  /** OAuth access token. */
5524
5743
  access_token?: string;
5525
5744
  /** Data format for response. */
5526
- alt?: string;
5745
+ alt?: 'json' | 'media' | 'proto';
5527
5746
  /** JSONP */
5528
5747
  callback?: string;
5529
5748
  /** Required. Entry Link identifier * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the EntryGroup. */
@@ -5550,11 +5769,11 @@ declare namespace gapi.client {
5550
5769
  create(
5551
5770
  request: {
5552
5771
  /** V1 error format. */
5553
- '$.xgafv'?: string;
5772
+ '$.xgafv'?: '1' | '2';
5554
5773
  /** OAuth access token. */
5555
5774
  access_token?: string;
5556
5775
  /** Data format for response. */
5557
- alt?: string;
5776
+ alt?: 'json' | 'media' | 'proto';
5558
5777
  /** JSONP */
5559
5778
  callback?: string;
5560
5779
  /** Required. Entry Link identifier * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the EntryGroup. */
@@ -5581,11 +5800,11 @@ declare namespace gapi.client {
5581
5800
  /** Deletes an Entry Link. */
5582
5801
  delete(request?: {
5583
5802
  /** V1 error format. */
5584
- '$.xgafv'?: string;
5803
+ '$.xgafv'?: '1' | '2';
5585
5804
  /** OAuth access token. */
5586
5805
  access_token?: string;
5587
5806
  /** Data format for response. */
5588
- alt?: string;
5807
+ alt?: 'json' | 'media' | 'proto';
5589
5808
  /** JSONP */
5590
5809
  callback?: string;
5591
5810
  /** Selector specifying which fields to include in a partial response. */
@@ -5608,11 +5827,11 @@ declare namespace gapi.client {
5608
5827
  /** Gets an Entry Link. */
5609
5828
  get(request?: {
5610
5829
  /** V1 error format. */
5611
- '$.xgafv'?: string;
5830
+ '$.xgafv'?: '1' | '2';
5612
5831
  /** OAuth access token. */
5613
5832
  access_token?: string;
5614
5833
  /** Data format for response. */
5615
- alt?: string;
5834
+ alt?: 'json' | 'media' | 'proto';
5616
5835
  /** JSONP */
5617
5836
  callback?: string;
5618
5837
  /** Selector specifying which fields to include in a partial response. */
@@ -5635,13 +5854,13 @@ declare namespace gapi.client {
5635
5854
  /** Updates an Entry Link. */
5636
5855
  patch(request: {
5637
5856
  /** V1 error format. */
5638
- '$.xgafv'?: string;
5857
+ '$.xgafv'?: '1' | '2';
5639
5858
  /** OAuth access token. */
5640
5859
  access_token?: string;
5641
5860
  /** Optional. If set to true and the entry link doesn't exist, the service will create it. */
5642
5861
  allowMissing?: boolean;
5643
5862
  /** Data format for response. */
5644
- alt?: string;
5863
+ alt?: 'json' | 'media' | 'proto';
5645
5864
  /** Optional. The map keys of the Aspects which the service should modify. It should be the aspect type reference in the format {project_id_or_number}.{location_id}.{aspect_type_id}.If this field is left empty, the service treats it as specifying exactly those Aspects present in the request. */
5646
5865
  aspectKeys?: string | string[];
5647
5866
  /** JSONP */
@@ -5668,13 +5887,13 @@ declare namespace gapi.client {
5668
5887
  patch(
5669
5888
  request: {
5670
5889
  /** V1 error format. */
5671
- '$.xgafv'?: string;
5890
+ '$.xgafv'?: '1' | '2';
5672
5891
  /** OAuth access token. */
5673
5892
  access_token?: string;
5674
5893
  /** Optional. If set to true and the entry link doesn't exist, the service will create it. */
5675
5894
  allowMissing?: boolean;
5676
5895
  /** Data format for response. */
5677
- alt?: string;
5896
+ alt?: 'json' | 'media' | 'proto';
5678
5897
  /** Optional. The map keys of the Aspects which the service should modify. It should be the aspect type reference in the format {project_id_or_number}.{location_id}.{aspect_type_id}.If this field is left empty, the service treats it as specifying exactly those Aspects present in the request. */
5679
5898
  aspectKeys?: string | string[];
5680
5899
  /** JSONP */
@@ -5703,11 +5922,11 @@ declare namespace gapi.client {
5703
5922
  /** Creates an EntryGroup. */
5704
5923
  create(request: {
5705
5924
  /** V1 error format. */
5706
- '$.xgafv'?: string;
5925
+ '$.xgafv'?: '1' | '2';
5707
5926
  /** OAuth access token. */
5708
5927
  access_token?: string;
5709
5928
  /** Data format for response. */
5710
- alt?: string;
5929
+ alt?: 'json' | 'media' | 'proto';
5711
5930
  /** JSONP */
5712
5931
  callback?: string;
5713
5932
  /** Required. EntryGroup identifier. */
@@ -5736,11 +5955,11 @@ declare namespace gapi.client {
5736
5955
  create(
5737
5956
  request: {
5738
5957
  /** V1 error format. */
5739
- '$.xgafv'?: string;
5958
+ '$.xgafv'?: '1' | '2';
5740
5959
  /** OAuth access token. */
5741
5960
  access_token?: string;
5742
5961
  /** Data format for response. */
5743
- alt?: string;
5962
+ alt?: 'json' | 'media' | 'proto';
5744
5963
  /** JSONP */
5745
5964
  callback?: string;
5746
5965
  /** Required. EntryGroup identifier. */
@@ -5769,11 +5988,11 @@ declare namespace gapi.client {
5769
5988
  /** Deletes an EntryGroup. */
5770
5989
  delete(request?: {
5771
5990
  /** V1 error format. */
5772
- '$.xgafv'?: string;
5991
+ '$.xgafv'?: '1' | '2';
5773
5992
  /** OAuth access token. */
5774
5993
  access_token?: string;
5775
5994
  /** Data format for response. */
5776
- alt?: string;
5995
+ alt?: 'json' | 'media' | 'proto';
5777
5996
  /** JSONP */
5778
5997
  callback?: string;
5779
5998
  /** Optional. If the client provided etag value does not match the current etag value, the DeleteEntryGroupRequest method returns an ABORTED error response. */
@@ -5798,11 +6017,11 @@ declare namespace gapi.client {
5798
6017
  /** Gets an EntryGroup. */
5799
6018
  get(request?: {
5800
6019
  /** V1 error format. */
5801
- '$.xgafv'?: string;
6020
+ '$.xgafv'?: '1' | '2';
5802
6021
  /** OAuth access token. */
5803
6022
  access_token?: string;
5804
6023
  /** Data format for response. */
5805
- alt?: string;
6024
+ alt?: 'json' | 'media' | 'proto';
5806
6025
  /** JSONP */
5807
6026
  callback?: string;
5808
6027
  /** Selector specifying which fields to include in a partial response. */
@@ -5825,11 +6044,11 @@ declare namespace gapi.client {
5825
6044
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
5826
6045
  getIamPolicy(request?: {
5827
6046
  /** V1 error format. */
5828
- '$.xgafv'?: string;
6047
+ '$.xgafv'?: '1' | '2';
5829
6048
  /** OAuth access token. */
5830
6049
  access_token?: string;
5831
6050
  /** Data format for response. */
5832
- alt?: string;
6051
+ alt?: 'json' | 'media' | 'proto';
5833
6052
  /** JSONP */
5834
6053
  callback?: string;
5835
6054
  /** Selector specifying which fields to include in a partial response. */
@@ -5854,11 +6073,11 @@ declare namespace gapi.client {
5854
6073
  /** Lists EntryGroup resources in a project and location. */
5855
6074
  list(request?: {
5856
6075
  /** V1 error format. */
5857
- '$.xgafv'?: string;
6076
+ '$.xgafv'?: '1' | '2';
5858
6077
  /** OAuth access token. */
5859
6078
  access_token?: string;
5860
6079
  /** Data format for response. */
5861
- alt?: string;
6080
+ alt?: 'json' | 'media' | 'proto';
5862
6081
  /** JSONP */
5863
6082
  callback?: string;
5864
6083
  /** Selector specifying which fields to include in a partial response. */
@@ -5889,11 +6108,11 @@ declare namespace gapi.client {
5889
6108
  /** Updates an EntryGroup. */
5890
6109
  patch(request: {
5891
6110
  /** V1 error format. */
5892
- '$.xgafv'?: string;
6111
+ '$.xgafv'?: '1' | '2';
5893
6112
  /** OAuth access token. */
5894
6113
  access_token?: string;
5895
6114
  /** Data format for response. */
5896
- alt?: string;
6115
+ alt?: 'json' | 'media' | 'proto';
5897
6116
  /** JSONP */
5898
6117
  callback?: string;
5899
6118
  /** Selector specifying which fields to include in a partial response. */
@@ -5922,11 +6141,11 @@ declare namespace gapi.client {
5922
6141
  patch(
5923
6142
  request: {
5924
6143
  /** V1 error format. */
5925
- '$.xgafv'?: string;
6144
+ '$.xgafv'?: '1' | '2';
5926
6145
  /** OAuth access token. */
5927
6146
  access_token?: string;
5928
6147
  /** Data format for response. */
5929
- alt?: string;
6148
+ alt?: 'json' | 'media' | 'proto';
5930
6149
  /** JSONP */
5931
6150
  callback?: string;
5932
6151
  /** Selector specifying which fields to include in a partial response. */
@@ -5956,11 +6175,11 @@ declare namespace gapi.client {
5956
6175
  setIamPolicy(
5957
6176
  request: {
5958
6177
  /** V1 error format. */
5959
- '$.xgafv'?: string;
6178
+ '$.xgafv'?: '1' | '2';
5960
6179
  /** OAuth access token. */
5961
6180
  access_token?: string;
5962
6181
  /** Data format for response. */
5963
- alt?: string;
6182
+ alt?: 'json' | 'media' | 'proto';
5964
6183
  /** JSONP */
5965
6184
  callback?: string;
5966
6185
  /** Selector specifying which fields to include in a partial response. */
@@ -5986,11 +6205,11 @@ declare namespace gapi.client {
5986
6205
  testIamPermissions(
5987
6206
  request: {
5988
6207
  /** V1 error format. */
5989
- '$.xgafv'?: string;
6208
+ '$.xgafv'?: '1' | '2';
5990
6209
  /** OAuth access token. */
5991
6210
  access_token?: string;
5992
6211
  /** Data format for response. */
5993
- alt?: string;
6212
+ alt?: 'json' | 'media' | 'proto';
5994
6213
  /** JSONP */
5995
6214
  callback?: string;
5996
6215
  /** Selector specifying which fields to include in a partial response. */
@@ -6019,11 +6238,11 @@ declare namespace gapi.client {
6019
6238
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
6020
6239
  getIamPolicy(request?: {
6021
6240
  /** V1 error format. */
6022
- '$.xgafv'?: string;
6241
+ '$.xgafv'?: '1' | '2';
6023
6242
  /** OAuth access token. */
6024
6243
  access_token?: string;
6025
6244
  /** Data format for response. */
6026
- alt?: string;
6245
+ alt?: 'json' | 'media' | 'proto';
6027
6246
  /** JSONP */
6028
6247
  callback?: string;
6029
6248
  /** Selector specifying which fields to include in a partial response. */
@@ -6049,11 +6268,11 @@ declare namespace gapi.client {
6049
6268
  setIamPolicy(
6050
6269
  request: {
6051
6270
  /** V1 error format. */
6052
- '$.xgafv'?: string;
6271
+ '$.xgafv'?: '1' | '2';
6053
6272
  /** OAuth access token. */
6054
6273
  access_token?: string;
6055
6274
  /** Data format for response. */
6056
- alt?: string;
6275
+ alt?: 'json' | 'media' | 'proto';
6057
6276
  /** JSONP */
6058
6277
  callback?: string;
6059
6278
  /** Selector specifying which fields to include in a partial response. */
@@ -6079,11 +6298,11 @@ declare namespace gapi.client {
6079
6298
  testIamPermissions(
6080
6299
  request: {
6081
6300
  /** V1 error format. */
6082
- '$.xgafv'?: string;
6301
+ '$.xgafv'?: '1' | '2';
6083
6302
  /** OAuth access token. */
6084
6303
  access_token?: string;
6085
6304
  /** Data format for response. */
6086
- alt?: string;
6305
+ alt?: 'json' | 'media' | 'proto';
6087
6306
  /** JSONP */
6088
6307
  callback?: string;
6089
6308
  /** Selector specifying which fields to include in a partial response. */
@@ -6110,11 +6329,11 @@ declare namespace gapi.client {
6110
6329
  /** Creates an EntryType. */
6111
6330
  create(request: {
6112
6331
  /** V1 error format. */
6113
- '$.xgafv'?: string;
6332
+ '$.xgafv'?: '1' | '2';
6114
6333
  /** OAuth access token. */
6115
6334
  access_token?: string;
6116
6335
  /** Data format for response. */
6117
- alt?: string;
6336
+ alt?: 'json' | 'media' | 'proto';
6118
6337
  /** JSONP */
6119
6338
  callback?: string;
6120
6339
  /** Required. EntryType identifier. */
@@ -6143,11 +6362,11 @@ declare namespace gapi.client {
6143
6362
  create(
6144
6363
  request: {
6145
6364
  /** V1 error format. */
6146
- '$.xgafv'?: string;
6365
+ '$.xgafv'?: '1' | '2';
6147
6366
  /** OAuth access token. */
6148
6367
  access_token?: string;
6149
6368
  /** Data format for response. */
6150
- alt?: string;
6369
+ alt?: 'json' | 'media' | 'proto';
6151
6370
  /** JSONP */
6152
6371
  callback?: string;
6153
6372
  /** Required. EntryType identifier. */
@@ -6176,11 +6395,11 @@ declare namespace gapi.client {
6176
6395
  /** Deletes an EntryType. */
6177
6396
  delete(request?: {
6178
6397
  /** V1 error format. */
6179
- '$.xgafv'?: string;
6398
+ '$.xgafv'?: '1' | '2';
6180
6399
  /** OAuth access token. */
6181
6400
  access_token?: string;
6182
6401
  /** Data format for response. */
6183
- alt?: string;
6402
+ alt?: 'json' | 'media' | 'proto';
6184
6403
  /** JSONP */
6185
6404
  callback?: string;
6186
6405
  /** Optional. If the client provided etag value does not match the current etag value, the DeleteEntryTypeRequest method returns an ABORTED error response. */
@@ -6205,11 +6424,11 @@ declare namespace gapi.client {
6205
6424
  /** Gets an EntryType. */
6206
6425
  get(request?: {
6207
6426
  /** V1 error format. */
6208
- '$.xgafv'?: string;
6427
+ '$.xgafv'?: '1' | '2';
6209
6428
  /** OAuth access token. */
6210
6429
  access_token?: string;
6211
6430
  /** Data format for response. */
6212
- alt?: string;
6431
+ alt?: 'json' | 'media' | 'proto';
6213
6432
  /** JSONP */
6214
6433
  callback?: string;
6215
6434
  /** Selector specifying which fields to include in a partial response. */
@@ -6232,11 +6451,11 @@ declare namespace gapi.client {
6232
6451
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
6233
6452
  getIamPolicy(request?: {
6234
6453
  /** V1 error format. */
6235
- '$.xgafv'?: string;
6454
+ '$.xgafv'?: '1' | '2';
6236
6455
  /** OAuth access token. */
6237
6456
  access_token?: string;
6238
6457
  /** Data format for response. */
6239
- alt?: string;
6458
+ alt?: 'json' | 'media' | 'proto';
6240
6459
  /** JSONP */
6241
6460
  callback?: string;
6242
6461
  /** Selector specifying which fields to include in a partial response. */
@@ -6261,11 +6480,11 @@ declare namespace gapi.client {
6261
6480
  /** Lists EntryType resources in a project and location. */
6262
6481
  list(request?: {
6263
6482
  /** V1 error format. */
6264
- '$.xgafv'?: string;
6483
+ '$.xgafv'?: '1' | '2';
6265
6484
  /** OAuth access token. */
6266
6485
  access_token?: string;
6267
6486
  /** Data format for response. */
6268
- alt?: string;
6487
+ alt?: 'json' | 'media' | 'proto';
6269
6488
  /** JSONP */
6270
6489
  callback?: string;
6271
6490
  /** Selector specifying which fields to include in a partial response. */
@@ -6296,11 +6515,11 @@ declare namespace gapi.client {
6296
6515
  /** Updates an EntryType. */
6297
6516
  patch(request: {
6298
6517
  /** V1 error format. */
6299
- '$.xgafv'?: string;
6518
+ '$.xgafv'?: '1' | '2';
6300
6519
  /** OAuth access token. */
6301
6520
  access_token?: string;
6302
6521
  /** Data format for response. */
6303
- alt?: string;
6522
+ alt?: 'json' | 'media' | 'proto';
6304
6523
  /** JSONP */
6305
6524
  callback?: string;
6306
6525
  /** Selector specifying which fields to include in a partial response. */
@@ -6329,11 +6548,11 @@ declare namespace gapi.client {
6329
6548
  patch(
6330
6549
  request: {
6331
6550
  /** V1 error format. */
6332
- '$.xgafv'?: string;
6551
+ '$.xgafv'?: '1' | '2';
6333
6552
  /** OAuth access token. */
6334
6553
  access_token?: string;
6335
6554
  /** Data format for response. */
6336
- alt?: string;
6555
+ alt?: 'json' | 'media' | 'proto';
6337
6556
  /** JSONP */
6338
6557
  callback?: string;
6339
6558
  /** Selector specifying which fields to include in a partial response. */
@@ -6363,11 +6582,11 @@ declare namespace gapi.client {
6363
6582
  setIamPolicy(
6364
6583
  request: {
6365
6584
  /** V1 error format. */
6366
- '$.xgafv'?: string;
6585
+ '$.xgafv'?: '1' | '2';
6367
6586
  /** OAuth access token. */
6368
6587
  access_token?: string;
6369
6588
  /** Data format for response. */
6370
- alt?: string;
6589
+ alt?: 'json' | 'media' | 'proto';
6371
6590
  /** JSONP */
6372
6591
  callback?: string;
6373
6592
  /** Selector specifying which fields to include in a partial response. */
@@ -6393,11 +6612,11 @@ declare namespace gapi.client {
6393
6612
  testIamPermissions(
6394
6613
  request: {
6395
6614
  /** V1 error format. */
6396
- '$.xgafv'?: string;
6615
+ '$.xgafv'?: '1' | '2';
6397
6616
  /** OAuth access token. */
6398
6617
  access_token?: string;
6399
6618
  /** Data format for response. */
6400
- alt?: string;
6619
+ alt?: 'json' | 'media' | 'proto';
6401
6620
  /** JSONP */
6402
6621
  callback?: string;
6403
6622
  /** Selector specifying which fields to include in a partial response. */
@@ -6424,11 +6643,11 @@ declare namespace gapi.client {
6424
6643
  /** Creates a new GlossaryCategory resource. */
6425
6644
  create(request: {
6426
6645
  /** V1 error format. */
6427
- '$.xgafv'?: string;
6646
+ '$.xgafv'?: '1' | '2';
6428
6647
  /** OAuth access token. */
6429
6648
  access_token?: string;
6430
6649
  /** Data format for response. */
6431
- alt?: string;
6650
+ alt?: 'json' | 'media' | 'proto';
6432
6651
  /** JSONP */
6433
6652
  callback?: string;
6434
6653
  /** Required. GlossaryCategory identifier. */
@@ -6455,11 +6674,11 @@ declare namespace gapi.client {
6455
6674
  create(
6456
6675
  request: {
6457
6676
  /** V1 error format. */
6458
- '$.xgafv'?: string;
6677
+ '$.xgafv'?: '1' | '2';
6459
6678
  /** OAuth access token. */
6460
6679
  access_token?: string;
6461
6680
  /** Data format for response. */
6462
- alt?: string;
6681
+ alt?: 'json' | 'media' | 'proto';
6463
6682
  /** JSONP */
6464
6683
  callback?: string;
6465
6684
  /** Required. GlossaryCategory identifier. */
@@ -6486,11 +6705,11 @@ declare namespace gapi.client {
6486
6705
  /** Deletes a GlossaryCategory resource. All the GlossaryCategories and GlossaryTerms nested directly under the specified GlossaryCategory will be moved one level up to the parent in the hierarchy. */
6487
6706
  delete(request?: {
6488
6707
  /** V1 error format. */
6489
- '$.xgafv'?: string;
6708
+ '$.xgafv'?: '1' | '2';
6490
6709
  /** OAuth access token. */
6491
6710
  access_token?: string;
6492
6711
  /** Data format for response. */
6493
- alt?: string;
6712
+ alt?: 'json' | 'media' | 'proto';
6494
6713
  /** JSONP */
6495
6714
  callback?: string;
6496
6715
  /** Selector specifying which fields to include in a partial response. */
@@ -6513,11 +6732,11 @@ declare namespace gapi.client {
6513
6732
  /** Gets a GlossaryCategory resource. */
6514
6733
  get(request?: {
6515
6734
  /** V1 error format. */
6516
- '$.xgafv'?: string;
6735
+ '$.xgafv'?: '1' | '2';
6517
6736
  /** OAuth access token. */
6518
6737
  access_token?: string;
6519
6738
  /** Data format for response. */
6520
- alt?: string;
6739
+ alt?: 'json' | 'media' | 'proto';
6521
6740
  /** JSONP */
6522
6741
  callback?: string;
6523
6742
  /** Selector specifying which fields to include in a partial response. */
@@ -6540,11 +6759,11 @@ declare namespace gapi.client {
6540
6759
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
6541
6760
  getIamPolicy(request?: {
6542
6761
  /** V1 error format. */
6543
- '$.xgafv'?: string;
6762
+ '$.xgafv'?: '1' | '2';
6544
6763
  /** OAuth access token. */
6545
6764
  access_token?: string;
6546
6765
  /** Data format for response. */
6547
- alt?: string;
6766
+ alt?: 'json' | 'media' | 'proto';
6548
6767
  /** JSONP */
6549
6768
  callback?: string;
6550
6769
  /** Selector specifying which fields to include in a partial response. */
@@ -6569,11 +6788,11 @@ declare namespace gapi.client {
6569
6788
  /** Lists GlossaryCategory resources in a Glossary. */
6570
6789
  list(request?: {
6571
6790
  /** V1 error format. */
6572
- '$.xgafv'?: string;
6791
+ '$.xgafv'?: '1' | '2';
6573
6792
  /** OAuth access token. */
6574
6793
  access_token?: string;
6575
6794
  /** Data format for response. */
6576
- alt?: string;
6795
+ alt?: 'json' | 'media' | 'proto';
6577
6796
  /** JSONP */
6578
6797
  callback?: string;
6579
6798
  /** Selector specifying which fields to include in a partial response. */
@@ -6604,11 +6823,11 @@ declare namespace gapi.client {
6604
6823
  /** Updates a GlossaryCategory resource. */
6605
6824
  patch(request: {
6606
6825
  /** V1 error format. */
6607
- '$.xgafv'?: string;
6826
+ '$.xgafv'?: '1' | '2';
6608
6827
  /** OAuth access token. */
6609
6828
  access_token?: string;
6610
6829
  /** Data format for response. */
6611
- alt?: string;
6830
+ alt?: 'json' | 'media' | 'proto';
6612
6831
  /** JSONP */
6613
6832
  callback?: string;
6614
6833
  /** Selector specifying which fields to include in a partial response. */
@@ -6635,11 +6854,11 @@ declare namespace gapi.client {
6635
6854
  patch(
6636
6855
  request: {
6637
6856
  /** V1 error format. */
6638
- '$.xgafv'?: string;
6857
+ '$.xgafv'?: '1' | '2';
6639
6858
  /** OAuth access token. */
6640
6859
  access_token?: string;
6641
6860
  /** Data format for response. */
6642
- alt?: string;
6861
+ alt?: 'json' | 'media' | 'proto';
6643
6862
  /** JSONP */
6644
6863
  callback?: string;
6645
6864
  /** Selector specifying which fields to include in a partial response. */
@@ -6667,11 +6886,11 @@ declare namespace gapi.client {
6667
6886
  setIamPolicy(
6668
6887
  request: {
6669
6888
  /** V1 error format. */
6670
- '$.xgafv'?: string;
6889
+ '$.xgafv'?: '1' | '2';
6671
6890
  /** OAuth access token. */
6672
6891
  access_token?: string;
6673
6892
  /** Data format for response. */
6674
- alt?: string;
6893
+ alt?: 'json' | 'media' | 'proto';
6675
6894
  /** JSONP */
6676
6895
  callback?: string;
6677
6896
  /** Selector specifying which fields to include in a partial response. */
@@ -6697,11 +6916,11 @@ declare namespace gapi.client {
6697
6916
  testIamPermissions(
6698
6917
  request: {
6699
6918
  /** V1 error format. */
6700
- '$.xgafv'?: string;
6919
+ '$.xgafv'?: '1' | '2';
6701
6920
  /** OAuth access token. */
6702
6921
  access_token?: string;
6703
6922
  /** Data format for response. */
6704
- alt?: string;
6923
+ alt?: 'json' | 'media' | 'proto';
6705
6924
  /** JSONP */
6706
6925
  callback?: string;
6707
6926
  /** Selector specifying which fields to include in a partial response. */
@@ -6728,11 +6947,11 @@ declare namespace gapi.client {
6728
6947
  /** Creates a new GlossaryTerm resource. */
6729
6948
  create(request: {
6730
6949
  /** V1 error format. */
6731
- '$.xgafv'?: string;
6950
+ '$.xgafv'?: '1' | '2';
6732
6951
  /** OAuth access token. */
6733
6952
  access_token?: string;
6734
6953
  /** Data format for response. */
6735
- alt?: string;
6954
+ alt?: 'json' | 'media' | 'proto';
6736
6955
  /** JSONP */
6737
6956
  callback?: string;
6738
6957
  /** Selector specifying which fields to include in a partial response. */
@@ -6759,11 +6978,11 @@ declare namespace gapi.client {
6759
6978
  create(
6760
6979
  request: {
6761
6980
  /** V1 error format. */
6762
- '$.xgafv'?: string;
6981
+ '$.xgafv'?: '1' | '2';
6763
6982
  /** OAuth access token. */
6764
6983
  access_token?: string;
6765
6984
  /** Data format for response. */
6766
- alt?: string;
6985
+ alt?: 'json' | 'media' | 'proto';
6767
6986
  /** JSONP */
6768
6987
  callback?: string;
6769
6988
  /** Selector specifying which fields to include in a partial response. */
@@ -6790,11 +7009,11 @@ declare namespace gapi.client {
6790
7009
  /** Deletes a GlossaryTerm resource. */
6791
7010
  delete(request?: {
6792
7011
  /** V1 error format. */
6793
- '$.xgafv'?: string;
7012
+ '$.xgafv'?: '1' | '2';
6794
7013
  /** OAuth access token. */
6795
7014
  access_token?: string;
6796
7015
  /** Data format for response. */
6797
- alt?: string;
7016
+ alt?: 'json' | 'media' | 'proto';
6798
7017
  /** JSONP */
6799
7018
  callback?: string;
6800
7019
  /** Selector specifying which fields to include in a partial response. */
@@ -6817,11 +7036,11 @@ declare namespace gapi.client {
6817
7036
  /** Gets a GlossaryTerm resource. */
6818
7037
  get(request?: {
6819
7038
  /** V1 error format. */
6820
- '$.xgafv'?: string;
7039
+ '$.xgafv'?: '1' | '2';
6821
7040
  /** OAuth access token. */
6822
7041
  access_token?: string;
6823
7042
  /** Data format for response. */
6824
- alt?: string;
7043
+ alt?: 'json' | 'media' | 'proto';
6825
7044
  /** JSONP */
6826
7045
  callback?: string;
6827
7046
  /** Selector specifying which fields to include in a partial response. */
@@ -6844,11 +7063,11 @@ declare namespace gapi.client {
6844
7063
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
6845
7064
  getIamPolicy(request?: {
6846
7065
  /** V1 error format. */
6847
- '$.xgafv'?: string;
7066
+ '$.xgafv'?: '1' | '2';
6848
7067
  /** OAuth access token. */
6849
7068
  access_token?: string;
6850
7069
  /** Data format for response. */
6851
- alt?: string;
7070
+ alt?: 'json' | 'media' | 'proto';
6852
7071
  /** JSONP */
6853
7072
  callback?: string;
6854
7073
  /** Selector specifying which fields to include in a partial response. */
@@ -6873,11 +7092,11 @@ declare namespace gapi.client {
6873
7092
  /** Lists GlossaryTerm resources in a Glossary. */
6874
7093
  list(request?: {
6875
7094
  /** V1 error format. */
6876
- '$.xgafv'?: string;
7095
+ '$.xgafv'?: '1' | '2';
6877
7096
  /** OAuth access token. */
6878
7097
  access_token?: string;
6879
7098
  /** Data format for response. */
6880
- alt?: string;
7099
+ alt?: 'json' | 'media' | 'proto';
6881
7100
  /** JSONP */
6882
7101
  callback?: string;
6883
7102
  /** Selector specifying which fields to include in a partial response. */
@@ -6908,11 +7127,11 @@ declare namespace gapi.client {
6908
7127
  /** Updates a GlossaryTerm resource. */
6909
7128
  patch(request: {
6910
7129
  /** V1 error format. */
6911
- '$.xgafv'?: string;
7130
+ '$.xgafv'?: '1' | '2';
6912
7131
  /** OAuth access token. */
6913
7132
  access_token?: string;
6914
7133
  /** Data format for response. */
6915
- alt?: string;
7134
+ alt?: 'json' | 'media' | 'proto';
6916
7135
  /** JSONP */
6917
7136
  callback?: string;
6918
7137
  /** Selector specifying which fields to include in a partial response. */
@@ -6939,11 +7158,11 @@ declare namespace gapi.client {
6939
7158
  patch(
6940
7159
  request: {
6941
7160
  /** V1 error format. */
6942
- '$.xgafv'?: string;
7161
+ '$.xgafv'?: '1' | '2';
6943
7162
  /** OAuth access token. */
6944
7163
  access_token?: string;
6945
7164
  /** Data format for response. */
6946
- alt?: string;
7165
+ alt?: 'json' | 'media' | 'proto';
6947
7166
  /** JSONP */
6948
7167
  callback?: string;
6949
7168
  /** Selector specifying which fields to include in a partial response. */
@@ -6971,11 +7190,11 @@ declare namespace gapi.client {
6971
7190
  setIamPolicy(
6972
7191
  request: {
6973
7192
  /** V1 error format. */
6974
- '$.xgafv'?: string;
7193
+ '$.xgafv'?: '1' | '2';
6975
7194
  /** OAuth access token. */
6976
7195
  access_token?: string;
6977
7196
  /** Data format for response. */
6978
- alt?: string;
7197
+ alt?: 'json' | 'media' | 'proto';
6979
7198
  /** JSONP */
6980
7199
  callback?: string;
6981
7200
  /** Selector specifying which fields to include in a partial response. */
@@ -7001,11 +7220,11 @@ declare namespace gapi.client {
7001
7220
  testIamPermissions(
7002
7221
  request: {
7003
7222
  /** V1 error format. */
7004
- '$.xgafv'?: string;
7223
+ '$.xgafv'?: '1' | '2';
7005
7224
  /** OAuth access token. */
7006
7225
  access_token?: string;
7007
7226
  /** Data format for response. */
7008
- alt?: string;
7227
+ alt?: 'json' | 'media' | 'proto';
7009
7228
  /** JSONP */
7010
7229
  callback?: string;
7011
7230
  /** Selector specifying which fields to include in a partial response. */
@@ -7032,11 +7251,11 @@ declare namespace gapi.client {
7032
7251
  /** Creates a new Glossary resource. */
7033
7252
  create(request: {
7034
7253
  /** V1 error format. */
7035
- '$.xgafv'?: string;
7254
+ '$.xgafv'?: '1' | '2';
7036
7255
  /** OAuth access token. */
7037
7256
  access_token?: string;
7038
7257
  /** Data format for response. */
7039
- alt?: string;
7258
+ alt?: 'json' | 'media' | 'proto';
7040
7259
  /** JSONP */
7041
7260
  callback?: string;
7042
7261
  /** Selector specifying which fields to include in a partial response. */
@@ -7065,11 +7284,11 @@ declare namespace gapi.client {
7065
7284
  create(
7066
7285
  request: {
7067
7286
  /** V1 error format. */
7068
- '$.xgafv'?: string;
7287
+ '$.xgafv'?: '1' | '2';
7069
7288
  /** OAuth access token. */
7070
7289
  access_token?: string;
7071
7290
  /** Data format for response. */
7072
- alt?: string;
7291
+ alt?: 'json' | 'media' | 'proto';
7073
7292
  /** JSONP */
7074
7293
  callback?: string;
7075
7294
  /** Selector specifying which fields to include in a partial response. */
@@ -7098,11 +7317,11 @@ declare namespace gapi.client {
7098
7317
  /** Deletes a Glossary resource. All the categories and terms within the Glossary must be deleted before the Glossary can be deleted. */
7099
7318
  delete(request?: {
7100
7319
  /** V1 error format. */
7101
- '$.xgafv'?: string;
7320
+ '$.xgafv'?: '1' | '2';
7102
7321
  /** OAuth access token. */
7103
7322
  access_token?: string;
7104
7323
  /** Data format for response. */
7105
- alt?: string;
7324
+ alt?: 'json' | 'media' | 'proto';
7106
7325
  /** JSONP */
7107
7326
  callback?: string;
7108
7327
  /** Optional. The etag of the Glossary. If this is provided, it must match the server's etag. If the etag is provided and does not match the server-computed etag, the request must fail with a ABORTED error code. */
@@ -7127,11 +7346,11 @@ declare namespace gapi.client {
7127
7346
  /** Gets a Glossary resource. */
7128
7347
  get(request?: {
7129
7348
  /** V1 error format. */
7130
- '$.xgafv'?: string;
7349
+ '$.xgafv'?: '1' | '2';
7131
7350
  /** OAuth access token. */
7132
7351
  access_token?: string;
7133
7352
  /** Data format for response. */
7134
- alt?: string;
7353
+ alt?: 'json' | 'media' | 'proto';
7135
7354
  /** JSONP */
7136
7355
  callback?: string;
7137
7356
  /** Selector specifying which fields to include in a partial response. */
@@ -7154,11 +7373,11 @@ declare namespace gapi.client {
7154
7373
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
7155
7374
  getIamPolicy(request?: {
7156
7375
  /** V1 error format. */
7157
- '$.xgafv'?: string;
7376
+ '$.xgafv'?: '1' | '2';
7158
7377
  /** OAuth access token. */
7159
7378
  access_token?: string;
7160
7379
  /** Data format for response. */
7161
- alt?: string;
7380
+ alt?: 'json' | 'media' | 'proto';
7162
7381
  /** JSONP */
7163
7382
  callback?: string;
7164
7383
  /** Selector specifying which fields to include in a partial response. */
@@ -7183,11 +7402,11 @@ declare namespace gapi.client {
7183
7402
  /** Lists Glossary resources in a project and location. */
7184
7403
  list(request?: {
7185
7404
  /** V1 error format. */
7186
- '$.xgafv'?: string;
7405
+ '$.xgafv'?: '1' | '2';
7187
7406
  /** OAuth access token. */
7188
7407
  access_token?: string;
7189
7408
  /** Data format for response. */
7190
- alt?: string;
7409
+ alt?: 'json' | 'media' | 'proto';
7191
7410
  /** JSONP */
7192
7411
  callback?: string;
7193
7412
  /** Selector specifying which fields to include in a partial response. */
@@ -7218,11 +7437,11 @@ declare namespace gapi.client {
7218
7437
  /** Updates a Glossary resource. */
7219
7438
  patch(request: {
7220
7439
  /** V1 error format. */
7221
- '$.xgafv'?: string;
7440
+ '$.xgafv'?: '1' | '2';
7222
7441
  /** OAuth access token. */
7223
7442
  access_token?: string;
7224
7443
  /** Data format for response. */
7225
- alt?: string;
7444
+ alt?: 'json' | 'media' | 'proto';
7226
7445
  /** JSONP */
7227
7446
  callback?: string;
7228
7447
  /** Selector specifying which fields to include in a partial response. */
@@ -7251,11 +7470,11 @@ declare namespace gapi.client {
7251
7470
  patch(
7252
7471
  request: {
7253
7472
  /** V1 error format. */
7254
- '$.xgafv'?: string;
7473
+ '$.xgafv'?: '1' | '2';
7255
7474
  /** OAuth access token. */
7256
7475
  access_token?: string;
7257
7476
  /** Data format for response. */
7258
- alt?: string;
7477
+ alt?: 'json' | 'media' | 'proto';
7259
7478
  /** JSONP */
7260
7479
  callback?: string;
7261
7480
  /** Selector specifying which fields to include in a partial response. */
@@ -7285,11 +7504,11 @@ declare namespace gapi.client {
7285
7504
  setIamPolicy(
7286
7505
  request: {
7287
7506
  /** V1 error format. */
7288
- '$.xgafv'?: string;
7507
+ '$.xgafv'?: '1' | '2';
7289
7508
  /** OAuth access token. */
7290
7509
  access_token?: string;
7291
7510
  /** Data format for response. */
7292
- alt?: string;
7511
+ alt?: 'json' | 'media' | 'proto';
7293
7512
  /** JSONP */
7294
7513
  callback?: string;
7295
7514
  /** Selector specifying which fields to include in a partial response. */
@@ -7315,11 +7534,11 @@ declare namespace gapi.client {
7315
7534
  testIamPermissions(
7316
7535
  request: {
7317
7536
  /** V1 error format. */
7318
- '$.xgafv'?: string;
7537
+ '$.xgafv'?: '1' | '2';
7319
7538
  /** OAuth access token. */
7320
7539
  access_token?: string;
7321
7540
  /** Data format for response. */
7322
- alt?: string;
7541
+ alt?: 'json' | 'media' | 'proto';
7323
7542
  /** JSONP */
7324
7543
  callback?: string;
7325
7544
  /** Selector specifying which fields to include in a partial response. */
@@ -7348,11 +7567,11 @@ declare namespace gapi.client {
7348
7567
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
7349
7568
  getIamPolicy(request?: {
7350
7569
  /** V1 error format. */
7351
- '$.xgafv'?: string;
7570
+ '$.xgafv'?: '1' | '2';
7352
7571
  /** OAuth access token. */
7353
7572
  access_token?: string;
7354
7573
  /** Data format for response. */
7355
- alt?: string;
7574
+ alt?: 'json' | 'media' | 'proto';
7356
7575
  /** JSONP */
7357
7576
  callback?: string;
7358
7577
  /** Selector specifying which fields to include in a partial response. */
@@ -7378,11 +7597,11 @@ declare namespace gapi.client {
7378
7597
  setIamPolicy(
7379
7598
  request: {
7380
7599
  /** V1 error format. */
7381
- '$.xgafv'?: string;
7600
+ '$.xgafv'?: '1' | '2';
7382
7601
  /** OAuth access token. */
7383
7602
  access_token?: string;
7384
7603
  /** Data format for response. */
7385
- alt?: string;
7604
+ alt?: 'json' | 'media' | 'proto';
7386
7605
  /** JSONP */
7387
7606
  callback?: string;
7388
7607
  /** Selector specifying which fields to include in a partial response. */
@@ -7408,11 +7627,11 @@ declare namespace gapi.client {
7408
7627
  testIamPermissions(
7409
7628
  request: {
7410
7629
  /** V1 error format. */
7411
- '$.xgafv'?: string;
7630
+ '$.xgafv'?: '1' | '2';
7412
7631
  /** OAuth access token. */
7413
7632
  access_token?: string;
7414
7633
  /** Data format for response. */
7415
- alt?: string;
7634
+ alt?: 'json' | 'media' | 'proto';
7416
7635
  /** JSONP */
7417
7636
  callback?: string;
7418
7637
  /** Selector specifying which fields to include in a partial response. */
@@ -7439,11 +7658,11 @@ declare namespace gapi.client {
7439
7658
  /** Lists action resources in a lake. */
7440
7659
  list(request?: {
7441
7660
  /** V1 error format. */
7442
- '$.xgafv'?: string;
7661
+ '$.xgafv'?: '1' | '2';
7443
7662
  /** OAuth access token. */
7444
7663
  access_token?: string;
7445
7664
  /** Data format for response. */
7446
- alt?: string;
7665
+ alt?: 'json' | 'media' | 'proto';
7447
7666
  /** JSONP */
7448
7667
  callback?: string;
7449
7668
  /** Selector specifying which fields to include in a partial response. */
@@ -7472,11 +7691,11 @@ declare namespace gapi.client {
7472
7691
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
7473
7692
  getIamPolicy(request?: {
7474
7693
  /** V1 error format. */
7475
- '$.xgafv'?: string;
7694
+ '$.xgafv'?: '1' | '2';
7476
7695
  /** OAuth access token. */
7477
7696
  access_token?: string;
7478
7697
  /** Data format for response. */
7479
- alt?: string;
7698
+ alt?: 'json' | 'media' | 'proto';
7480
7699
  /** JSONP */
7481
7700
  callback?: string;
7482
7701
  /** Selector specifying which fields to include in a partial response. */
@@ -7502,11 +7721,11 @@ declare namespace gapi.client {
7502
7721
  setIamPolicy(
7503
7722
  request: {
7504
7723
  /** V1 error format. */
7505
- '$.xgafv'?: string;
7724
+ '$.xgafv'?: '1' | '2';
7506
7725
  /** OAuth access token. */
7507
7726
  access_token?: string;
7508
7727
  /** Data format for response. */
7509
- alt?: string;
7728
+ alt?: 'json' | 'media' | 'proto';
7510
7729
  /** JSONP */
7511
7730
  callback?: string;
7512
7731
  /** Selector specifying which fields to include in a partial response. */
@@ -7532,11 +7751,11 @@ declare namespace gapi.client {
7532
7751
  testIamPermissions(
7533
7752
  request: {
7534
7753
  /** V1 error format. */
7535
- '$.xgafv'?: string;
7754
+ '$.xgafv'?: '1' | '2';
7536
7755
  /** OAuth access token. */
7537
7756
  access_token?: string;
7538
7757
  /** Data format for response. */
7539
- alt?: string;
7758
+ alt?: 'json' | 'media' | 'proto';
7540
7759
  /** JSONP */
7541
7760
  callback?: string;
7542
7761
  /** Selector specifying which fields to include in a partial response. */
@@ -7563,11 +7782,11 @@ declare namespace gapi.client {
7563
7782
  /** Cancel jobs running for the task resource. */
7564
7783
  cancel(request: {
7565
7784
  /** V1 error format. */
7566
- '$.xgafv'?: string;
7785
+ '$.xgafv'?: '1' | '2';
7567
7786
  /** OAuth access token. */
7568
7787
  access_token?: string;
7569
7788
  /** Data format for response. */
7570
- alt?: string;
7789
+ alt?: 'json' | 'media' | 'proto';
7571
7790
  /** JSONP */
7572
7791
  callback?: string;
7573
7792
  /** Selector specifying which fields to include in a partial response. */
@@ -7592,11 +7811,11 @@ declare namespace gapi.client {
7592
7811
  cancel(
7593
7812
  request: {
7594
7813
  /** V1 error format. */
7595
- '$.xgafv'?: string;
7814
+ '$.xgafv'?: '1' | '2';
7596
7815
  /** OAuth access token. */
7597
7816
  access_token?: string;
7598
7817
  /** Data format for response. */
7599
- alt?: string;
7818
+ alt?: 'json' | 'media' | 'proto';
7600
7819
  /** JSONP */
7601
7820
  callback?: string;
7602
7821
  /** Selector specifying which fields to include in a partial response. */
@@ -7621,11 +7840,11 @@ declare namespace gapi.client {
7621
7840
  /** Get job resource. */
7622
7841
  get(request?: {
7623
7842
  /** V1 error format. */
7624
- '$.xgafv'?: string;
7843
+ '$.xgafv'?: '1' | '2';
7625
7844
  /** OAuth access token. */
7626
7845
  access_token?: string;
7627
7846
  /** Data format for response. */
7628
- alt?: string;
7847
+ alt?: 'json' | 'media' | 'proto';
7629
7848
  /** JSONP */
7630
7849
  callback?: string;
7631
7850
  /** Selector specifying which fields to include in a partial response. */
@@ -7648,11 +7867,11 @@ declare namespace gapi.client {
7648
7867
  /** Lists Jobs under the given task. */
7649
7868
  list(request?: {
7650
7869
  /** V1 error format. */
7651
- '$.xgafv'?: string;
7870
+ '$.xgafv'?: '1' | '2';
7652
7871
  /** OAuth access token. */
7653
7872
  access_token?: string;
7654
7873
  /** Data format for response. */
7655
- alt?: string;
7874
+ alt?: 'json' | 'media' | 'proto';
7656
7875
  /** JSONP */
7657
7876
  callback?: string;
7658
7877
  /** Selector specifying which fields to include in a partial response. */
@@ -7681,11 +7900,11 @@ declare namespace gapi.client {
7681
7900
  /** Creates a task resource within a lake. */
7682
7901
  create(request: {
7683
7902
  /** V1 error format. */
7684
- '$.xgafv'?: string;
7903
+ '$.xgafv'?: '1' | '2';
7685
7904
  /** OAuth access token. */
7686
7905
  access_token?: string;
7687
7906
  /** Data format for response. */
7688
- alt?: string;
7907
+ alt?: 'json' | 'media' | 'proto';
7689
7908
  /** JSONP */
7690
7909
  callback?: string;
7691
7910
  /** Selector specifying which fields to include in a partial response. */
@@ -7714,11 +7933,11 @@ declare namespace gapi.client {
7714
7933
  create(
7715
7934
  request: {
7716
7935
  /** V1 error format. */
7717
- '$.xgafv'?: string;
7936
+ '$.xgafv'?: '1' | '2';
7718
7937
  /** OAuth access token. */
7719
7938
  access_token?: string;
7720
7939
  /** Data format for response. */
7721
- alt?: string;
7940
+ alt?: 'json' | 'media' | 'proto';
7722
7941
  /** JSONP */
7723
7942
  callback?: string;
7724
7943
  /** Selector specifying which fields to include in a partial response. */
@@ -7747,11 +7966,11 @@ declare namespace gapi.client {
7747
7966
  /** Delete the task resource. */
7748
7967
  delete(request?: {
7749
7968
  /** V1 error format. */
7750
- '$.xgafv'?: string;
7969
+ '$.xgafv'?: '1' | '2';
7751
7970
  /** OAuth access token. */
7752
7971
  access_token?: string;
7753
7972
  /** Data format for response. */
7754
- alt?: string;
7973
+ alt?: 'json' | 'media' | 'proto';
7755
7974
  /** JSONP */
7756
7975
  callback?: string;
7757
7976
  /** Selector specifying which fields to include in a partial response. */
@@ -7774,11 +7993,11 @@ declare namespace gapi.client {
7774
7993
  /** Get task resource. */
7775
7994
  get(request?: {
7776
7995
  /** V1 error format. */
7777
- '$.xgafv'?: string;
7996
+ '$.xgafv'?: '1' | '2';
7778
7997
  /** OAuth access token. */
7779
7998
  access_token?: string;
7780
7999
  /** Data format for response. */
7781
- alt?: string;
8000
+ alt?: 'json' | 'media' | 'proto';
7782
8001
  /** JSONP */
7783
8002
  callback?: string;
7784
8003
  /** Selector specifying which fields to include in a partial response. */
@@ -7801,11 +8020,11 @@ declare namespace gapi.client {
7801
8020
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
7802
8021
  getIamPolicy(request?: {
7803
8022
  /** V1 error format. */
7804
- '$.xgafv'?: string;
8023
+ '$.xgafv'?: '1' | '2';
7805
8024
  /** OAuth access token. */
7806
8025
  access_token?: string;
7807
8026
  /** Data format for response. */
7808
- alt?: string;
8027
+ alt?: 'json' | 'media' | 'proto';
7809
8028
  /** JSONP */
7810
8029
  callback?: string;
7811
8030
  /** Selector specifying which fields to include in a partial response. */
@@ -7830,11 +8049,11 @@ declare namespace gapi.client {
7830
8049
  /** Lists tasks under the given lake. */
7831
8050
  list(request?: {
7832
8051
  /** V1 error format. */
7833
- '$.xgafv'?: string;
8052
+ '$.xgafv'?: '1' | '2';
7834
8053
  /** OAuth access token. */
7835
8054
  access_token?: string;
7836
8055
  /** Data format for response. */
7837
- alt?: string;
8056
+ alt?: 'json' | 'media' | 'proto';
7838
8057
  /** JSONP */
7839
8058
  callback?: string;
7840
8059
  /** Selector specifying which fields to include in a partial response. */
@@ -7865,11 +8084,11 @@ declare namespace gapi.client {
7865
8084
  /** Update the task resource. */
7866
8085
  patch(request: {
7867
8086
  /** V1 error format. */
7868
- '$.xgafv'?: string;
8087
+ '$.xgafv'?: '1' | '2';
7869
8088
  /** OAuth access token. */
7870
8089
  access_token?: string;
7871
8090
  /** Data format for response. */
7872
- alt?: string;
8091
+ alt?: 'json' | 'media' | 'proto';
7873
8092
  /** JSONP */
7874
8093
  callback?: string;
7875
8094
  /** Selector specifying which fields to include in a partial response. */
@@ -7898,11 +8117,11 @@ declare namespace gapi.client {
7898
8117
  patch(
7899
8118
  request: {
7900
8119
  /** V1 error format. */
7901
- '$.xgafv'?: string;
8120
+ '$.xgafv'?: '1' | '2';
7902
8121
  /** OAuth access token. */
7903
8122
  access_token?: string;
7904
8123
  /** Data format for response. */
7905
- alt?: string;
8124
+ alt?: 'json' | 'media' | 'proto';
7906
8125
  /** JSONP */
7907
8126
  callback?: string;
7908
8127
  /** Selector specifying which fields to include in a partial response. */
@@ -7931,11 +8150,11 @@ declare namespace gapi.client {
7931
8150
  /** Run an on demand execution of a Task. */
7932
8151
  run(request: {
7933
8152
  /** V1 error format. */
7934
- '$.xgafv'?: string;
8153
+ '$.xgafv'?: '1' | '2';
7935
8154
  /** OAuth access token. */
7936
8155
  access_token?: string;
7937
8156
  /** Data format for response. */
7938
- alt?: string;
8157
+ alt?: 'json' | 'media' | 'proto';
7939
8158
  /** JSONP */
7940
8159
  callback?: string;
7941
8160
  /** Selector specifying which fields to include in a partial response. */
@@ -7960,11 +8179,11 @@ declare namespace gapi.client {
7960
8179
  run(
7961
8180
  request: {
7962
8181
  /** V1 error format. */
7963
- '$.xgafv'?: string;
8182
+ '$.xgafv'?: '1' | '2';
7964
8183
  /** OAuth access token. */
7965
8184
  access_token?: string;
7966
8185
  /** Data format for response. */
7967
- alt?: string;
8186
+ alt?: 'json' | 'media' | 'proto';
7968
8187
  /** JSONP */
7969
8188
  callback?: string;
7970
8189
  /** Selector specifying which fields to include in a partial response. */
@@ -7990,11 +8209,11 @@ declare namespace gapi.client {
7990
8209
  setIamPolicy(
7991
8210
  request: {
7992
8211
  /** V1 error format. */
7993
- '$.xgafv'?: string;
8212
+ '$.xgafv'?: '1' | '2';
7994
8213
  /** OAuth access token. */
7995
8214
  access_token?: string;
7996
8215
  /** Data format for response. */
7997
- alt?: string;
8216
+ alt?: 'json' | 'media' | 'proto';
7998
8217
  /** JSONP */
7999
8218
  callback?: string;
8000
8219
  /** Selector specifying which fields to include in a partial response. */
@@ -8020,11 +8239,11 @@ declare namespace gapi.client {
8020
8239
  testIamPermissions(
8021
8240
  request: {
8022
8241
  /** V1 error format. */
8023
- '$.xgafv'?: string;
8242
+ '$.xgafv'?: '1' | '2';
8024
8243
  /** OAuth access token. */
8025
8244
  access_token?: string;
8026
8245
  /** Data format for response. */
8027
- alt?: string;
8246
+ alt?: 'json' | 'media' | 'proto';
8028
8247
  /** JSONP */
8029
8248
  callback?: string;
8030
8249
  /** Selector specifying which fields to include in a partial response. */
@@ -8052,11 +8271,11 @@ declare namespace gapi.client {
8052
8271
  /** Lists action resources in a zone. */
8053
8272
  list(request?: {
8054
8273
  /** V1 error format. */
8055
- '$.xgafv'?: string;
8274
+ '$.xgafv'?: '1' | '2';
8056
8275
  /** OAuth access token. */
8057
8276
  access_token?: string;
8058
8277
  /** Data format for response. */
8059
- alt?: string;
8278
+ alt?: 'json' | 'media' | 'proto';
8060
8279
  /** JSONP */
8061
8280
  callback?: string;
8062
8281
  /** Selector specifying which fields to include in a partial response. */
@@ -8085,11 +8304,11 @@ declare namespace gapi.client {
8085
8304
  /** Lists action resources in an asset. */
8086
8305
  list(request?: {
8087
8306
  /** V1 error format. */
8088
- '$.xgafv'?: string;
8307
+ '$.xgafv'?: '1' | '2';
8089
8308
  /** OAuth access token. */
8090
8309
  access_token?: string;
8091
8310
  /** Data format for response. */
8092
- alt?: string;
8311
+ alt?: 'json' | 'media' | 'proto';
8093
8312
  /** JSONP */
8094
8313
  callback?: string;
8095
8314
  /** Selector specifying which fields to include in a partial response. */
@@ -8118,11 +8337,11 @@ declare namespace gapi.client {
8118
8337
  /** Creates an asset resource. */
8119
8338
  create(request: {
8120
8339
  /** V1 error format. */
8121
- '$.xgafv'?: string;
8340
+ '$.xgafv'?: '1' | '2';
8122
8341
  /** OAuth access token. */
8123
8342
  access_token?: string;
8124
8343
  /** Data format for response. */
8125
- alt?: string;
8344
+ alt?: 'json' | 'media' | 'proto';
8126
8345
  /** Required. Asset identifier. This ID will be used to generate names such as table names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the zone. */
8127
8346
  assetId?: string;
8128
8347
  /** JSONP */
@@ -8151,11 +8370,11 @@ declare namespace gapi.client {
8151
8370
  create(
8152
8371
  request: {
8153
8372
  /** V1 error format. */
8154
- '$.xgafv'?: string;
8373
+ '$.xgafv'?: '1' | '2';
8155
8374
  /** OAuth access token. */
8156
8375
  access_token?: string;
8157
8376
  /** Data format for response. */
8158
- alt?: string;
8377
+ alt?: 'json' | 'media' | 'proto';
8159
8378
  /** Required. Asset identifier. This ID will be used to generate names such as table names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the zone. */
8160
8379
  assetId?: string;
8161
8380
  /** JSONP */
@@ -8184,11 +8403,11 @@ declare namespace gapi.client {
8184
8403
  /** Deletes an asset resource. The referenced storage resource is detached (default) or deleted based on the associated Lifecycle policy. */
8185
8404
  delete(request?: {
8186
8405
  /** V1 error format. */
8187
- '$.xgafv'?: string;
8406
+ '$.xgafv'?: '1' | '2';
8188
8407
  /** OAuth access token. */
8189
8408
  access_token?: string;
8190
8409
  /** Data format for response. */
8191
- alt?: string;
8410
+ alt?: 'json' | 'media' | 'proto';
8192
8411
  /** JSONP */
8193
8412
  callback?: string;
8194
8413
  /** Selector specifying which fields to include in a partial response. */
@@ -8211,11 +8430,11 @@ declare namespace gapi.client {
8211
8430
  /** Retrieves an asset resource. */
8212
8431
  get(request?: {
8213
8432
  /** V1 error format. */
8214
- '$.xgafv'?: string;
8433
+ '$.xgafv'?: '1' | '2';
8215
8434
  /** OAuth access token. */
8216
8435
  access_token?: string;
8217
8436
  /** Data format for response. */
8218
- alt?: string;
8437
+ alt?: 'json' | 'media' | 'proto';
8219
8438
  /** JSONP */
8220
8439
  callback?: string;
8221
8440
  /** Selector specifying which fields to include in a partial response. */
@@ -8238,11 +8457,11 @@ declare namespace gapi.client {
8238
8457
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
8239
8458
  getIamPolicy(request?: {
8240
8459
  /** V1 error format. */
8241
- '$.xgafv'?: string;
8460
+ '$.xgafv'?: '1' | '2';
8242
8461
  /** OAuth access token. */
8243
8462
  access_token?: string;
8244
8463
  /** Data format for response. */
8245
- alt?: string;
8464
+ alt?: 'json' | 'media' | 'proto';
8246
8465
  /** JSONP */
8247
8466
  callback?: string;
8248
8467
  /** Selector specifying which fields to include in a partial response. */
@@ -8267,11 +8486,11 @@ declare namespace gapi.client {
8267
8486
  /** Lists asset resources in a zone. */
8268
8487
  list(request?: {
8269
8488
  /** V1 error format. */
8270
- '$.xgafv'?: string;
8489
+ '$.xgafv'?: '1' | '2';
8271
8490
  /** OAuth access token. */
8272
8491
  access_token?: string;
8273
8492
  /** Data format for response. */
8274
- alt?: string;
8493
+ alt?: 'json' | 'media' | 'proto';
8275
8494
  /** JSONP */
8276
8495
  callback?: string;
8277
8496
  /** Selector specifying which fields to include in a partial response. */
@@ -8302,11 +8521,11 @@ declare namespace gapi.client {
8302
8521
  /** Updates an asset resource. */
8303
8522
  patch(request: {
8304
8523
  /** V1 error format. */
8305
- '$.xgafv'?: string;
8524
+ '$.xgafv'?: '1' | '2';
8306
8525
  /** OAuth access token. */
8307
8526
  access_token?: string;
8308
8527
  /** Data format for response. */
8309
- alt?: string;
8528
+ alt?: 'json' | 'media' | 'proto';
8310
8529
  /** JSONP */
8311
8530
  callback?: string;
8312
8531
  /** Selector specifying which fields to include in a partial response. */
@@ -8335,11 +8554,11 @@ declare namespace gapi.client {
8335
8554
  patch(
8336
8555
  request: {
8337
8556
  /** V1 error format. */
8338
- '$.xgafv'?: string;
8557
+ '$.xgafv'?: '1' | '2';
8339
8558
  /** OAuth access token. */
8340
8559
  access_token?: string;
8341
8560
  /** Data format for response. */
8342
- alt?: string;
8561
+ alt?: 'json' | 'media' | 'proto';
8343
8562
  /** JSONP */
8344
8563
  callback?: string;
8345
8564
  /** Selector specifying which fields to include in a partial response. */
@@ -8369,11 +8588,11 @@ declare namespace gapi.client {
8369
8588
  setIamPolicy(
8370
8589
  request: {
8371
8590
  /** V1 error format. */
8372
- '$.xgafv'?: string;
8591
+ '$.xgafv'?: '1' | '2';
8373
8592
  /** OAuth access token. */
8374
8593
  access_token?: string;
8375
8594
  /** Data format for response. */
8376
- alt?: string;
8595
+ alt?: 'json' | 'media' | 'proto';
8377
8596
  /** JSONP */
8378
8597
  callback?: string;
8379
8598
  /** Selector specifying which fields to include in a partial response. */
@@ -8399,11 +8618,11 @@ declare namespace gapi.client {
8399
8618
  testIamPermissions(
8400
8619
  request: {
8401
8620
  /** V1 error format. */
8402
- '$.xgafv'?: string;
8621
+ '$.xgafv'?: '1' | '2';
8403
8622
  /** OAuth access token. */
8404
8623
  access_token?: string;
8405
8624
  /** Data format for response. */
8406
- alt?: string;
8625
+ alt?: 'json' | 'media' | 'proto';
8407
8626
  /** JSONP */
8408
8627
  callback?: string;
8409
8628
  /** Selector specifying which fields to include in a partial response. */
@@ -8431,11 +8650,11 @@ declare namespace gapi.client {
8431
8650
  /** Create a metadata partition. */
8432
8651
  create(request: {
8433
8652
  /** V1 error format. */
8434
- '$.xgafv'?: string;
8653
+ '$.xgafv'?: '1' | '2';
8435
8654
  /** OAuth access token. */
8436
8655
  access_token?: string;
8437
8656
  /** Data format for response. */
8438
- alt?: string;
8657
+ alt?: 'json' | 'media' | 'proto';
8439
8658
  /** JSONP */
8440
8659
  callback?: string;
8441
8660
  /** Selector specifying which fields to include in a partial response. */
@@ -8462,11 +8681,11 @@ declare namespace gapi.client {
8462
8681
  create(
8463
8682
  request: {
8464
8683
  /** V1 error format. */
8465
- '$.xgafv'?: string;
8684
+ '$.xgafv'?: '1' | '2';
8466
8685
  /** OAuth access token. */
8467
8686
  access_token?: string;
8468
8687
  /** Data format for response. */
8469
- alt?: string;
8688
+ alt?: 'json' | 'media' | 'proto';
8470
8689
  /** JSONP */
8471
8690
  callback?: string;
8472
8691
  /** Selector specifying which fields to include in a partial response. */
@@ -8493,11 +8712,11 @@ declare namespace gapi.client {
8493
8712
  /** Delete a metadata partition. */
8494
8713
  delete(request?: {
8495
8714
  /** V1 error format. */
8496
- '$.xgafv'?: string;
8715
+ '$.xgafv'?: '1' | '2';
8497
8716
  /** OAuth access token. */
8498
8717
  access_token?: string;
8499
8718
  /** Data format for response. */
8500
- alt?: string;
8719
+ alt?: 'json' | 'media' | 'proto';
8501
8720
  /** JSONP */
8502
8721
  callback?: string;
8503
8722
  /** Optional. The etag associated with the partition. */
@@ -8522,11 +8741,11 @@ declare namespace gapi.client {
8522
8741
  /** Get a metadata partition of an entity. */
8523
8742
  get(request?: {
8524
8743
  /** V1 error format. */
8525
- '$.xgafv'?: string;
8744
+ '$.xgafv'?: '1' | '2';
8526
8745
  /** OAuth access token. */
8527
8746
  access_token?: string;
8528
8747
  /** Data format for response. */
8529
- alt?: string;
8748
+ alt?: 'json' | 'media' | 'proto';
8530
8749
  /** JSONP */
8531
8750
  callback?: string;
8532
8751
  /** Selector specifying which fields to include in a partial response. */
@@ -8549,11 +8768,11 @@ declare namespace gapi.client {
8549
8768
  /** List metadata partitions of an entity. */
8550
8769
  list(request?: {
8551
8770
  /** V1 error format. */
8552
- '$.xgafv'?: string;
8771
+ '$.xgafv'?: '1' | '2';
8553
8772
  /** OAuth access token. */
8554
8773
  access_token?: string;
8555
8774
  /** Data format for response. */
8556
- alt?: string;
8775
+ alt?: 'json' | 'media' | 'proto';
8557
8776
  /** JSONP */
8558
8777
  callback?: string;
8559
8778
  /** Selector specifying which fields to include in a partial response. */
@@ -8584,11 +8803,11 @@ declare namespace gapi.client {
8584
8803
  /** Create a metadata entity. */
8585
8804
  create(request: {
8586
8805
  /** V1 error format. */
8587
- '$.xgafv'?: string;
8806
+ '$.xgafv'?: '1' | '2';
8588
8807
  /** OAuth access token. */
8589
8808
  access_token?: string;
8590
8809
  /** Data format for response. */
8591
- alt?: string;
8810
+ alt?: 'json' | 'media' | 'proto';
8592
8811
  /** JSONP */
8593
8812
  callback?: string;
8594
8813
  /** Selector specifying which fields to include in a partial response. */
@@ -8615,11 +8834,11 @@ declare namespace gapi.client {
8615
8834
  create(
8616
8835
  request: {
8617
8836
  /** V1 error format. */
8618
- '$.xgafv'?: string;
8837
+ '$.xgafv'?: '1' | '2';
8619
8838
  /** OAuth access token. */
8620
8839
  access_token?: string;
8621
8840
  /** Data format for response. */
8622
- alt?: string;
8841
+ alt?: 'json' | 'media' | 'proto';
8623
8842
  /** JSONP */
8624
8843
  callback?: string;
8625
8844
  /** Selector specifying which fields to include in a partial response. */
@@ -8646,11 +8865,11 @@ declare namespace gapi.client {
8646
8865
  /** Delete a metadata entity. */
8647
8866
  delete(request?: {
8648
8867
  /** V1 error format. */
8649
- '$.xgafv'?: string;
8868
+ '$.xgafv'?: '1' | '2';
8650
8869
  /** OAuth access token. */
8651
8870
  access_token?: string;
8652
8871
  /** Data format for response. */
8653
- alt?: string;
8872
+ alt?: 'json' | 'media' | 'proto';
8654
8873
  /** JSONP */
8655
8874
  callback?: string;
8656
8875
  /** Required. The etag associated with the entity, which can be retrieved with a GetEntity request. */
@@ -8675,11 +8894,11 @@ declare namespace gapi.client {
8675
8894
  /** Get a metadata entity. */
8676
8895
  get(request?: {
8677
8896
  /** V1 error format. */
8678
- '$.xgafv'?: string;
8897
+ '$.xgafv'?: '1' | '2';
8679
8898
  /** OAuth access token. */
8680
8899
  access_token?: string;
8681
8900
  /** Data format for response. */
8682
- alt?: string;
8901
+ alt?: 'json' | 'media' | 'proto';
8683
8902
  /** JSONP */
8684
8903
  callback?: string;
8685
8904
  /** Selector specifying which fields to include in a partial response. */
@@ -8699,16 +8918,16 @@ declare namespace gapi.client {
8699
8918
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8700
8919
  uploadType?: string;
8701
8920
  /** Optional. Used to select the subset of entity information to return. Defaults to BASIC. */
8702
- view?: string;
8921
+ view?: 'ENTITY_VIEW_UNSPECIFIED' | 'BASIC' | 'SCHEMA' | 'FULL';
8703
8922
  }): Request<GoogleCloudDataplexV1Entity>;
8704
8923
  /** List metadata entities in a zone. */
8705
8924
  list(request?: {
8706
8925
  /** V1 error format. */
8707
- '$.xgafv'?: string;
8926
+ '$.xgafv'?: '1' | '2';
8708
8927
  /** OAuth access token. */
8709
8928
  access_token?: string;
8710
8929
  /** Data format for response. */
8711
- alt?: string;
8930
+ alt?: 'json' | 'media' | 'proto';
8712
8931
  /** JSONP */
8713
8932
  callback?: string;
8714
8933
  /** Selector specifying which fields to include in a partial response. */
@@ -8734,16 +8953,16 @@ declare namespace gapi.client {
8734
8953
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8735
8954
  uploadType?: string;
8736
8955
  /** Required. Specify the entity view to make a partial list request. */
8737
- view?: string;
8956
+ view?: 'ENTITY_VIEW_UNSPECIFIED' | 'TABLES' | 'FILESETS';
8738
8957
  }): Request<GoogleCloudDataplexV1ListEntitiesResponse>;
8739
8958
  /** Update a metadata entity. Only supports full resource update. */
8740
8959
  update(request: {
8741
8960
  /** V1 error format. */
8742
- '$.xgafv'?: string;
8961
+ '$.xgafv'?: '1' | '2';
8743
8962
  /** OAuth access token. */
8744
8963
  access_token?: string;
8745
8964
  /** Data format for response. */
8746
- alt?: string;
8965
+ alt?: 'json' | 'media' | 'proto';
8747
8966
  /** JSONP */
8748
8967
  callback?: string;
8749
8968
  /** Selector specifying which fields to include in a partial response. */
@@ -8770,11 +8989,11 @@ declare namespace gapi.client {
8770
8989
  update(
8771
8990
  request: {
8772
8991
  /** V1 error format. */
8773
- '$.xgafv'?: string;
8992
+ '$.xgafv'?: '1' | '2';
8774
8993
  /** OAuth access token. */
8775
8994
  access_token?: string;
8776
8995
  /** Data format for response. */
8777
- alt?: string;
8996
+ alt?: 'json' | 'media' | 'proto';
8778
8997
  /** JSONP */
8779
8998
  callback?: string;
8780
8999
  /** Selector specifying which fields to include in a partial response. */
@@ -8804,11 +9023,11 @@ declare namespace gapi.client {
8804
9023
  /** Creates a zone resource within a lake. */
8805
9024
  create(request: {
8806
9025
  /** V1 error format. */
8807
- '$.xgafv'?: string;
9026
+ '$.xgafv'?: '1' | '2';
8808
9027
  /** OAuth access token. */
8809
9028
  access_token?: string;
8810
9029
  /** Data format for response. */
8811
- alt?: string;
9030
+ alt?: 'json' | 'media' | 'proto';
8812
9031
  /** JSONP */
8813
9032
  callback?: string;
8814
9033
  /** Selector specifying which fields to include in a partial response. */
@@ -8837,11 +9056,11 @@ declare namespace gapi.client {
8837
9056
  create(
8838
9057
  request: {
8839
9058
  /** V1 error format. */
8840
- '$.xgafv'?: string;
9059
+ '$.xgafv'?: '1' | '2';
8841
9060
  /** OAuth access token. */
8842
9061
  access_token?: string;
8843
9062
  /** Data format for response. */
8844
- alt?: string;
9063
+ alt?: 'json' | 'media' | 'proto';
8845
9064
  /** JSONP */
8846
9065
  callback?: string;
8847
9066
  /** Selector specifying which fields to include in a partial response. */
@@ -8870,11 +9089,11 @@ declare namespace gapi.client {
8870
9089
  /** Deletes a zone resource. All assets within a zone must be deleted before the zone can be deleted. */
8871
9090
  delete(request?: {
8872
9091
  /** V1 error format. */
8873
- '$.xgafv'?: string;
9092
+ '$.xgafv'?: '1' | '2';
8874
9093
  /** OAuth access token. */
8875
9094
  access_token?: string;
8876
9095
  /** Data format for response. */
8877
- alt?: string;
9096
+ alt?: 'json' | 'media' | 'proto';
8878
9097
  /** JSONP */
8879
9098
  callback?: string;
8880
9099
  /** Selector specifying which fields to include in a partial response. */
@@ -8897,11 +9116,11 @@ declare namespace gapi.client {
8897
9116
  /** Retrieves a zone resource. */
8898
9117
  get(request?: {
8899
9118
  /** V1 error format. */
8900
- '$.xgafv'?: string;
9119
+ '$.xgafv'?: '1' | '2';
8901
9120
  /** OAuth access token. */
8902
9121
  access_token?: string;
8903
9122
  /** Data format for response. */
8904
- alt?: string;
9123
+ alt?: 'json' | 'media' | 'proto';
8905
9124
  /** JSONP */
8906
9125
  callback?: string;
8907
9126
  /** Selector specifying which fields to include in a partial response. */
@@ -8924,11 +9143,11 @@ declare namespace gapi.client {
8924
9143
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
8925
9144
  getIamPolicy(request?: {
8926
9145
  /** V1 error format. */
8927
- '$.xgafv'?: string;
9146
+ '$.xgafv'?: '1' | '2';
8928
9147
  /** OAuth access token. */
8929
9148
  access_token?: string;
8930
9149
  /** Data format for response. */
8931
- alt?: string;
9150
+ alt?: 'json' | 'media' | 'proto';
8932
9151
  /** JSONP */
8933
9152
  callback?: string;
8934
9153
  /** Selector specifying which fields to include in a partial response. */
@@ -8953,11 +9172,11 @@ declare namespace gapi.client {
8953
9172
  /** Lists zone resources in a lake. */
8954
9173
  list(request?: {
8955
9174
  /** V1 error format. */
8956
- '$.xgafv'?: string;
9175
+ '$.xgafv'?: '1' | '2';
8957
9176
  /** OAuth access token. */
8958
9177
  access_token?: string;
8959
9178
  /** Data format for response. */
8960
- alt?: string;
9179
+ alt?: 'json' | 'media' | 'proto';
8961
9180
  /** JSONP */
8962
9181
  callback?: string;
8963
9182
  /** Selector specifying which fields to include in a partial response. */
@@ -8988,11 +9207,11 @@ declare namespace gapi.client {
8988
9207
  /** Updates a zone resource. */
8989
9208
  patch(request: {
8990
9209
  /** V1 error format. */
8991
- '$.xgafv'?: string;
9210
+ '$.xgafv'?: '1' | '2';
8992
9211
  /** OAuth access token. */
8993
9212
  access_token?: string;
8994
9213
  /** Data format for response. */
8995
- alt?: string;
9214
+ alt?: 'json' | 'media' | 'proto';
8996
9215
  /** JSONP */
8997
9216
  callback?: string;
8998
9217
  /** Selector specifying which fields to include in a partial response. */
@@ -9021,11 +9240,11 @@ declare namespace gapi.client {
9021
9240
  patch(
9022
9241
  request: {
9023
9242
  /** V1 error format. */
9024
- '$.xgafv'?: string;
9243
+ '$.xgafv'?: '1' | '2';
9025
9244
  /** OAuth access token. */
9026
9245
  access_token?: string;
9027
9246
  /** Data format for response. */
9028
- alt?: string;
9247
+ alt?: 'json' | 'media' | 'proto';
9029
9248
  /** JSONP */
9030
9249
  callback?: string;
9031
9250
  /** Selector specifying which fields to include in a partial response. */
@@ -9055,11 +9274,11 @@ declare namespace gapi.client {
9055
9274
  setIamPolicy(
9056
9275
  request: {
9057
9276
  /** V1 error format. */
9058
- '$.xgafv'?: string;
9277
+ '$.xgafv'?: '1' | '2';
9059
9278
  /** OAuth access token. */
9060
9279
  access_token?: string;
9061
9280
  /** Data format for response. */
9062
- alt?: string;
9281
+ alt?: 'json' | 'media' | 'proto';
9063
9282
  /** JSONP */
9064
9283
  callback?: string;
9065
9284
  /** Selector specifying which fields to include in a partial response. */
@@ -9085,11 +9304,11 @@ declare namespace gapi.client {
9085
9304
  testIamPermissions(
9086
9305
  request: {
9087
9306
  /** V1 error format. */
9088
- '$.xgafv'?: string;
9307
+ '$.xgafv'?: '1' | '2';
9089
9308
  /** OAuth access token. */
9090
9309
  access_token?: string;
9091
9310
  /** Data format for response. */
9092
- alt?: string;
9311
+ alt?: 'json' | 'media' | 'proto';
9093
9312
  /** JSONP */
9094
9313
  callback?: string;
9095
9314
  /** Selector specifying which fields to include in a partial response. */
@@ -9119,11 +9338,11 @@ declare namespace gapi.client {
9119
9338
  /** Creates a lake resource. */
9120
9339
  create(request: {
9121
9340
  /** V1 error format. */
9122
- '$.xgafv'?: string;
9341
+ '$.xgafv'?: '1' | '2';
9123
9342
  /** OAuth access token. */
9124
9343
  access_token?: string;
9125
9344
  /** Data format for response. */
9126
- alt?: string;
9345
+ alt?: 'json' | 'media' | 'proto';
9127
9346
  /** JSONP */
9128
9347
  callback?: string;
9129
9348
  /** Selector specifying which fields to include in a partial response. */
@@ -9152,11 +9371,11 @@ declare namespace gapi.client {
9152
9371
  create(
9153
9372
  request: {
9154
9373
  /** V1 error format. */
9155
- '$.xgafv'?: string;
9374
+ '$.xgafv'?: '1' | '2';
9156
9375
  /** OAuth access token. */
9157
9376
  access_token?: string;
9158
9377
  /** Data format for response. */
9159
- alt?: string;
9378
+ alt?: 'json' | 'media' | 'proto';
9160
9379
  /** JSONP */
9161
9380
  callback?: string;
9162
9381
  /** Selector specifying which fields to include in a partial response. */
@@ -9185,11 +9404,11 @@ declare namespace gapi.client {
9185
9404
  /** Deletes a lake resource. All zones within the lake must be deleted before the lake can be deleted. */
9186
9405
  delete(request?: {
9187
9406
  /** V1 error format. */
9188
- '$.xgafv'?: string;
9407
+ '$.xgafv'?: '1' | '2';
9189
9408
  /** OAuth access token. */
9190
9409
  access_token?: string;
9191
9410
  /** Data format for response. */
9192
- alt?: string;
9411
+ alt?: 'json' | 'media' | 'proto';
9193
9412
  /** JSONP */
9194
9413
  callback?: string;
9195
9414
  /** Selector specifying which fields to include in a partial response. */
@@ -9212,11 +9431,11 @@ declare namespace gapi.client {
9212
9431
  /** Retrieves a lake resource. */
9213
9432
  get(request?: {
9214
9433
  /** V1 error format. */
9215
- '$.xgafv'?: string;
9434
+ '$.xgafv'?: '1' | '2';
9216
9435
  /** OAuth access token. */
9217
9436
  access_token?: string;
9218
9437
  /** Data format for response. */
9219
- alt?: string;
9438
+ alt?: 'json' | 'media' | 'proto';
9220
9439
  /** JSONP */
9221
9440
  callback?: string;
9222
9441
  /** Selector specifying which fields to include in a partial response. */
@@ -9239,11 +9458,11 @@ declare namespace gapi.client {
9239
9458
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
9240
9459
  getIamPolicy(request?: {
9241
9460
  /** V1 error format. */
9242
- '$.xgafv'?: string;
9461
+ '$.xgafv'?: '1' | '2';
9243
9462
  /** OAuth access token. */
9244
9463
  access_token?: string;
9245
9464
  /** Data format for response. */
9246
- alt?: string;
9465
+ alt?: 'json' | 'media' | 'proto';
9247
9466
  /** JSONP */
9248
9467
  callback?: string;
9249
9468
  /** Selector specifying which fields to include in a partial response. */
@@ -9268,11 +9487,11 @@ declare namespace gapi.client {
9268
9487
  /** Lists lake resources in a project and location. */
9269
9488
  list(request?: {
9270
9489
  /** V1 error format. */
9271
- '$.xgafv'?: string;
9490
+ '$.xgafv'?: '1' | '2';
9272
9491
  /** OAuth access token. */
9273
9492
  access_token?: string;
9274
9493
  /** Data format for response. */
9275
- alt?: string;
9494
+ alt?: 'json' | 'media' | 'proto';
9276
9495
  /** JSONP */
9277
9496
  callback?: string;
9278
9497
  /** Selector specifying which fields to include in a partial response. */
@@ -9303,11 +9522,11 @@ declare namespace gapi.client {
9303
9522
  /** Updates a lake resource. */
9304
9523
  patch(request: {
9305
9524
  /** V1 error format. */
9306
- '$.xgafv'?: string;
9525
+ '$.xgafv'?: '1' | '2';
9307
9526
  /** OAuth access token. */
9308
9527
  access_token?: string;
9309
9528
  /** Data format for response. */
9310
- alt?: string;
9529
+ alt?: 'json' | 'media' | 'proto';
9311
9530
  /** JSONP */
9312
9531
  callback?: string;
9313
9532
  /** Selector specifying which fields to include in a partial response. */
@@ -9336,11 +9555,11 @@ declare namespace gapi.client {
9336
9555
  patch(
9337
9556
  request: {
9338
9557
  /** V1 error format. */
9339
- '$.xgafv'?: string;
9558
+ '$.xgafv'?: '1' | '2';
9340
9559
  /** OAuth access token. */
9341
9560
  access_token?: string;
9342
9561
  /** Data format for response. */
9343
- alt?: string;
9562
+ alt?: 'json' | 'media' | 'proto';
9344
9563
  /** JSONP */
9345
9564
  callback?: string;
9346
9565
  /** Selector specifying which fields to include in a partial response. */
@@ -9370,11 +9589,11 @@ declare namespace gapi.client {
9370
9589
  setIamPolicy(
9371
9590
  request: {
9372
9591
  /** V1 error format. */
9373
- '$.xgafv'?: string;
9592
+ '$.xgafv'?: '1' | '2';
9374
9593
  /** OAuth access token. */
9375
9594
  access_token?: string;
9376
9595
  /** Data format for response. */
9377
- alt?: string;
9596
+ alt?: 'json' | 'media' | 'proto';
9378
9597
  /** JSONP */
9379
9598
  callback?: string;
9380
9599
  /** Selector specifying which fields to include in a partial response. */
@@ -9400,11 +9619,11 @@ declare namespace gapi.client {
9400
9619
  testIamPermissions(
9401
9620
  request: {
9402
9621
  /** V1 error format. */
9403
- '$.xgafv'?: string;
9622
+ '$.xgafv'?: '1' | '2';
9404
9623
  /** OAuth access token. */
9405
9624
  access_token?: string;
9406
9625
  /** Data format for response. */
9407
- alt?: string;
9626
+ alt?: 'json' | 'media' | 'proto';
9408
9627
  /** JSONP */
9409
9628
  callback?: string;
9410
9629
  /** Selector specifying which fields to include in a partial response. */
@@ -9435,11 +9654,11 @@ declare namespace gapi.client {
9435
9654
  /** Creates a MetadataFeed. */
9436
9655
  create(request: {
9437
9656
  /** V1 error format. */
9438
- '$.xgafv'?: string;
9657
+ '$.xgafv'?: '1' | '2';
9439
9658
  /** OAuth access token. */
9440
9659
  access_token?: string;
9441
9660
  /** Data format for response. */
9442
- alt?: string;
9661
+ alt?: 'json' | 'media' | 'proto';
9443
9662
  /** JSONP */
9444
9663
  callback?: string;
9445
9664
  /** Selector specifying which fields to include in a partial response. */
@@ -9468,11 +9687,11 @@ declare namespace gapi.client {
9468
9687
  create(
9469
9688
  request: {
9470
9689
  /** V1 error format. */
9471
- '$.xgafv'?: string;
9690
+ '$.xgafv'?: '1' | '2';
9472
9691
  /** OAuth access token. */
9473
9692
  access_token?: string;
9474
9693
  /** Data format for response. */
9475
- alt?: string;
9694
+ alt?: 'json' | 'media' | 'proto';
9476
9695
  /** JSONP */
9477
9696
  callback?: string;
9478
9697
  /** Selector specifying which fields to include in a partial response. */
@@ -9501,11 +9720,11 @@ declare namespace gapi.client {
9501
9720
  /** Deletes a MetadataFeed. */
9502
9721
  delete(request?: {
9503
9722
  /** V1 error format. */
9504
- '$.xgafv'?: string;
9723
+ '$.xgafv'?: '1' | '2';
9505
9724
  /** OAuth access token. */
9506
9725
  access_token?: string;
9507
9726
  /** Data format for response. */
9508
- alt?: string;
9727
+ alt?: 'json' | 'media' | 'proto';
9509
9728
  /** JSONP */
9510
9729
  callback?: string;
9511
9730
  /** Selector specifying which fields to include in a partial response. */
@@ -9528,11 +9747,11 @@ declare namespace gapi.client {
9528
9747
  /** Gets a MetadataFeed. */
9529
9748
  get(request?: {
9530
9749
  /** V1 error format. */
9531
- '$.xgafv'?: string;
9750
+ '$.xgafv'?: '1' | '2';
9532
9751
  /** OAuth access token. */
9533
9752
  access_token?: string;
9534
9753
  /** Data format for response. */
9535
- alt?: string;
9754
+ alt?: 'json' | 'media' | 'proto';
9536
9755
  /** JSONP */
9537
9756
  callback?: string;
9538
9757
  /** Selector specifying which fields to include in a partial response. */
@@ -9555,11 +9774,11 @@ declare namespace gapi.client {
9555
9774
  /** Retrieve a list of MetadataFeeds. */
9556
9775
  list(request?: {
9557
9776
  /** V1 error format. */
9558
- '$.xgafv'?: string;
9777
+ '$.xgafv'?: '1' | '2';
9559
9778
  /** OAuth access token. */
9560
9779
  access_token?: string;
9561
9780
  /** Data format for response. */
9562
- alt?: string;
9781
+ alt?: 'json' | 'media' | 'proto';
9563
9782
  /** JSONP */
9564
9783
  callback?: string;
9565
9784
  /** Selector specifying which fields to include in a partial response. */
@@ -9590,11 +9809,11 @@ declare namespace gapi.client {
9590
9809
  /** Updates a MetadataFeed. */
9591
9810
  patch(request: {
9592
9811
  /** V1 error format. */
9593
- '$.xgafv'?: string;
9812
+ '$.xgafv'?: '1' | '2';
9594
9813
  /** OAuth access token. */
9595
9814
  access_token?: string;
9596
9815
  /** Data format for response. */
9597
- alt?: string;
9816
+ alt?: 'json' | 'media' | 'proto';
9598
9817
  /** JSONP */
9599
9818
  callback?: string;
9600
9819
  /** Selector specifying which fields to include in a partial response. */
@@ -9623,11 +9842,11 @@ declare namespace gapi.client {
9623
9842
  patch(
9624
9843
  request: {
9625
9844
  /** V1 error format. */
9626
- '$.xgafv'?: string;
9845
+ '$.xgafv'?: '1' | '2';
9627
9846
  /** OAuth access token. */
9628
9847
  access_token?: string;
9629
9848
  /** Data format for response. */
9630
- alt?: string;
9849
+ alt?: 'json' | 'media' | 'proto';
9631
9850
  /** JSONP */
9632
9851
  callback?: string;
9633
9852
  /** Selector specifying which fields to include in a partial response. */
@@ -9658,11 +9877,11 @@ declare namespace gapi.client {
9658
9877
  /** Cancels a metadata job.If you cancel a metadata import job that is in progress, the changes in the job might be partially applied. We recommend that you reset the state of the entry groups in your project by running another metadata job that reverts the changes from the canceled job. */
9659
9878
  cancel(request: {
9660
9879
  /** V1 error format. */
9661
- '$.xgafv'?: string;
9880
+ '$.xgafv'?: '1' | '2';
9662
9881
  /** OAuth access token. */
9663
9882
  access_token?: string;
9664
9883
  /** Data format for response. */
9665
- alt?: string;
9884
+ alt?: 'json' | 'media' | 'proto';
9666
9885
  /** JSONP */
9667
9886
  callback?: string;
9668
9887
  /** Selector specifying which fields to include in a partial response. */
@@ -9687,11 +9906,11 @@ declare namespace gapi.client {
9687
9906
  cancel(
9688
9907
  request: {
9689
9908
  /** V1 error format. */
9690
- '$.xgafv'?: string;
9909
+ '$.xgafv'?: '1' | '2';
9691
9910
  /** OAuth access token. */
9692
9911
  access_token?: string;
9693
9912
  /** Data format for response. */
9694
- alt?: string;
9913
+ alt?: 'json' | 'media' | 'proto';
9695
9914
  /** JSONP */
9696
9915
  callback?: string;
9697
9916
  /** Selector specifying which fields to include in a partial response. */
@@ -9716,11 +9935,11 @@ declare namespace gapi.client {
9716
9935
  /** Creates a metadata job. For example, use a metadata job to import metadata from a third-party system into Dataplex Universal Catalog. */
9717
9936
  create(request: {
9718
9937
  /** V1 error format. */
9719
- '$.xgafv'?: string;
9938
+ '$.xgafv'?: '1' | '2';
9720
9939
  /** OAuth access token. */
9721
9940
  access_token?: string;
9722
9941
  /** Data format for response. */
9723
- alt?: string;
9942
+ alt?: 'json' | 'media' | 'proto';
9724
9943
  /** JSONP */
9725
9944
  callback?: string;
9726
9945
  /** Selector specifying which fields to include in a partial response. */
@@ -9749,11 +9968,11 @@ declare namespace gapi.client {
9749
9968
  create(
9750
9969
  request: {
9751
9970
  /** V1 error format. */
9752
- '$.xgafv'?: string;
9971
+ '$.xgafv'?: '1' | '2';
9753
9972
  /** OAuth access token. */
9754
9973
  access_token?: string;
9755
9974
  /** Data format for response. */
9756
- alt?: string;
9975
+ alt?: 'json' | 'media' | 'proto';
9757
9976
  /** JSONP */
9758
9977
  callback?: string;
9759
9978
  /** Selector specifying which fields to include in a partial response. */
@@ -9782,11 +10001,11 @@ declare namespace gapi.client {
9782
10001
  /** Gets a metadata job. */
9783
10002
  get(request?: {
9784
10003
  /** V1 error format. */
9785
- '$.xgafv'?: string;
10004
+ '$.xgafv'?: '1' | '2';
9786
10005
  /** OAuth access token. */
9787
10006
  access_token?: string;
9788
10007
  /** Data format for response. */
9789
- alt?: string;
10008
+ alt?: 'json' | 'media' | 'proto';
9790
10009
  /** JSONP */
9791
10010
  callback?: string;
9792
10011
  /** Selector specifying which fields to include in a partial response. */
@@ -9809,11 +10028,11 @@ declare namespace gapi.client {
9809
10028
  /** Lists metadata jobs. */
9810
10029
  list(request?: {
9811
10030
  /** V1 error format. */
9812
- '$.xgafv'?: string;
10031
+ '$.xgafv'?: '1' | '2';
9813
10032
  /** OAuth access token. */
9814
10033
  access_token?: string;
9815
10034
  /** Data format for response. */
9816
- alt?: string;
10035
+ alt?: 'json' | 'media' | 'proto';
9817
10036
  /** JSONP */
9818
10037
  callback?: string;
9819
10038
  /** Selector specifying which fields to include in a partial response. */
@@ -9846,11 +10065,11 @@ declare namespace gapi.client {
9846
10065
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to Code.CANCELLED. */
9847
10066
  cancel(request: {
9848
10067
  /** V1 error format. */
9849
- '$.xgafv'?: string;
10068
+ '$.xgafv'?: '1' | '2';
9850
10069
  /** OAuth access token. */
9851
10070
  access_token?: string;
9852
10071
  /** Data format for response. */
9853
- alt?: string;
10072
+ alt?: 'json' | 'media' | 'proto';
9854
10073
  /** JSONP */
9855
10074
  callback?: string;
9856
10075
  /** Selector specifying which fields to include in a partial response. */
@@ -9875,11 +10094,11 @@ declare namespace gapi.client {
9875
10094
  cancel(
9876
10095
  request: {
9877
10096
  /** V1 error format. */
9878
- '$.xgafv'?: string;
10097
+ '$.xgafv'?: '1' | '2';
9879
10098
  /** OAuth access token. */
9880
10099
  access_token?: string;
9881
10100
  /** Data format for response. */
9882
- alt?: string;
10101
+ alt?: 'json' | 'media' | 'proto';
9883
10102
  /** JSONP */
9884
10103
  callback?: string;
9885
10104
  /** Selector specifying which fields to include in a partial response. */
@@ -9904,11 +10123,11 @@ declare namespace gapi.client {
9904
10123
  /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. */
9905
10124
  delete(request?: {
9906
10125
  /** V1 error format. */
9907
- '$.xgafv'?: string;
10126
+ '$.xgafv'?: '1' | '2';
9908
10127
  /** OAuth access token. */
9909
10128
  access_token?: string;
9910
10129
  /** Data format for response. */
9911
- alt?: string;
10130
+ alt?: 'json' | 'media' | 'proto';
9912
10131
  /** JSONP */
9913
10132
  callback?: string;
9914
10133
  /** Selector specifying which fields to include in a partial response. */
@@ -9931,11 +10150,11 @@ declare namespace gapi.client {
9931
10150
  /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
9932
10151
  get(request?: {
9933
10152
  /** V1 error format. */
9934
- '$.xgafv'?: string;
10153
+ '$.xgafv'?: '1' | '2';
9935
10154
  /** OAuth access token. */
9936
10155
  access_token?: string;
9937
10156
  /** Data format for response. */
9938
- alt?: string;
10157
+ alt?: 'json' | 'media' | 'proto';
9939
10158
  /** JSONP */
9940
10159
  callback?: string;
9941
10160
  /** Selector specifying which fields to include in a partial response. */
@@ -9958,11 +10177,11 @@ declare namespace gapi.client {
9958
10177
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. */
9959
10178
  list(request?: {
9960
10179
  /** V1 error format. */
9961
- '$.xgafv'?: string;
10180
+ '$.xgafv'?: '1' | '2';
9962
10181
  /** OAuth access token. */
9963
10182
  access_token?: string;
9964
10183
  /** Data format for response. */
9965
- alt?: string;
10184
+ alt?: 'json' | 'media' | 'proto';
9966
10185
  /** JSONP */
9967
10186
  callback?: string;
9968
10187
  /** Selector specifying which fields to include in a partial response. */
@@ -9995,11 +10214,11 @@ declare namespace gapi.client {
9995
10214
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
9996
10215
  getIamPolicy(request?: {
9997
10216
  /** V1 error format. */
9998
- '$.xgafv'?: string;
10217
+ '$.xgafv'?: '1' | '2';
9999
10218
  /** OAuth access token. */
10000
10219
  access_token?: string;
10001
10220
  /** Data format for response. */
10002
- alt?: string;
10221
+ alt?: 'json' | 'media' | 'proto';
10003
10222
  /** JSONP */
10004
10223
  callback?: string;
10005
10224
  /** Selector specifying which fields to include in a partial response. */
@@ -10025,11 +10244,11 @@ declare namespace gapi.client {
10025
10244
  setIamPolicy(
10026
10245
  request: {
10027
10246
  /** V1 error format. */
10028
- '$.xgafv'?: string;
10247
+ '$.xgafv'?: '1' | '2';
10029
10248
  /** OAuth access token. */
10030
10249
  access_token?: string;
10031
10250
  /** Data format for response. */
10032
- alt?: string;
10251
+ alt?: 'json' | 'media' | 'proto';
10033
10252
  /** JSONP */
10034
10253
  callback?: string;
10035
10254
  /** Selector specifying which fields to include in a partial response. */
@@ -10055,11 +10274,11 @@ declare namespace gapi.client {
10055
10274
  testIamPermissions(
10056
10275
  request: {
10057
10276
  /** V1 error format. */
10058
- '$.xgafv'?: string;
10277
+ '$.xgafv'?: '1' | '2';
10059
10278
  /** OAuth access token. */
10060
10279
  access_token?: string;
10061
10280
  /** Data format for response. */
10062
- alt?: string;
10281
+ alt?: 'json' | 'media' | 'proto';
10063
10282
  /** JSONP */
10064
10283
  callback?: string;
10065
10284
  /** Selector specifying which fields to include in a partial response. */
@@ -10086,11 +10305,11 @@ declare namespace gapi.client {
10086
10305
  /** Gets information about a location. */
10087
10306
  get(request?: {
10088
10307
  /** V1 error format. */
10089
- '$.xgafv'?: string;
10308
+ '$.xgafv'?: '1' | '2';
10090
10309
  /** OAuth access token. */
10091
10310
  access_token?: string;
10092
10311
  /** Data format for response. */
10093
- alt?: string;
10312
+ alt?: 'json' | 'media' | 'proto';
10094
10313
  /** JSONP */
10095
10314
  callback?: string;
10096
10315
  /** Selector specifying which fields to include in a partial response. */
@@ -10113,11 +10332,11 @@ declare namespace gapi.client {
10113
10332
  /** Lists information about the supported locations for this service. This method can be called in two ways: List all public locations: Use the path GET /v1/locations. List project-visible locations: Use the path GET /v1/projects/{project_id}/locations. This may include public locations as well as private or other locations specifically visible to the project. */
10114
10333
  list(request?: {
10115
10334
  /** V1 error format. */
10116
- '$.xgafv'?: string;
10335
+ '$.xgafv'?: '1' | '2';
10117
10336
  /** OAuth access token. */
10118
10337
  access_token?: string;
10119
10338
  /** Data format for response. */
10120
- alt?: string;
10339
+ alt?: 'json' | 'media' | 'proto';
10121
10340
  /** JSONP */
10122
10341
  callback?: string;
10123
10342
  /** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
@@ -10148,11 +10367,11 @@ declare namespace gapi.client {
10148
10367
  /** Looks up LLM Context for the specified resources. */
10149
10368
  lookupContext(request: {
10150
10369
  /** V1 error format. */
10151
- '$.xgafv'?: string;
10370
+ '$.xgafv'?: '1' | '2';
10152
10371
  /** OAuth access token. */
10153
10372
  access_token?: string;
10154
10373
  /** Data format for response. */
10155
- alt?: string;
10374
+ alt?: 'json' | 'media' | 'proto';
10156
10375
  /** JSONP */
10157
10376
  callback?: string;
10158
10377
  /** Selector specifying which fields to include in a partial response. */
@@ -10177,11 +10396,11 @@ declare namespace gapi.client {
10177
10396
  lookupContext(
10178
10397
  request: {
10179
10398
  /** V1 error format. */
10180
- '$.xgafv'?: string;
10399
+ '$.xgafv'?: '1' | '2';
10181
10400
  /** OAuth access token. */
10182
10401
  access_token?: string;
10183
10402
  /** Data format for response. */
10184
- alt?: string;
10403
+ alt?: 'json' | 'media' | 'proto';
10185
10404
  /** JSONP */
10186
10405
  callback?: string;
10187
10406
  /** Selector specifying which fields to include in a partial response. */
@@ -10206,11 +10425,11 @@ declare namespace gapi.client {
10206
10425
  /** Looks up an entry by name using the permission on the source system. */
10207
10426
  lookupEntry(request?: {
10208
10427
  /** V1 error format. */
10209
- '$.xgafv'?: string;
10428
+ '$.xgafv'?: '1' | '2';
10210
10429
  /** OAuth access token. */
10211
10430
  access_token?: string;
10212
10431
  /** Data format for response. */
10213
- alt?: string;
10432
+ alt?: 'json' | 'media' | 'proto';
10214
10433
  /** Optional. Limits the aspects returned to the provided aspect types. It only works for CUSTOM view. */
10215
10434
  aspectTypes?: string | string[];
10216
10435
  /** JSONP */
@@ -10236,16 +10455,16 @@ declare namespace gapi.client {
10236
10455
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10237
10456
  uploadType?: string;
10238
10457
  /** Optional. View to control which parts of an entry the service should return. */
10239
- view?: string;
10458
+ view?: 'ENTRY_VIEW_UNSPECIFIED' | 'BASIC' | 'FULL' | 'CUSTOM' | 'ALL';
10240
10459
  }): Request<GoogleCloudDataplexV1Entry>;
10241
10460
  /** Looks up Entry Links referencing the specified Entry. */
10242
10461
  lookupEntryLinks(request?: {
10243
10462
  /** V1 error format. */
10244
- '$.xgafv'?: string;
10463
+ '$.xgafv'?: '1' | '2';
10245
10464
  /** OAuth access token. */
10246
10465
  access_token?: string;
10247
10466
  /** Data format for response. */
10248
- alt?: string;
10467
+ alt?: 'json' | 'media' | 'proto';
10249
10468
  /** JSONP */
10250
10469
  callback?: string;
10251
10470
  /** Required. The resource name of the referred Entry. Format: projects/{project_id_or_number}/locations/{location_id}/entryGroups/{entry_group_id}/entries/{entry_id}. Entry Links which references this entry will be returned in the response. */
@@ -10253,7 +10472,7 @@ declare namespace gapi.client {
10253
10472
  /** Entry link types to filter the response by. If empty, all entry link types will be returned. At most 10 entry link types can be specified. */
10254
10473
  entryLinkTypes?: string | string[];
10255
10474
  /** Mode of entry reference. */
10256
- entryMode?: string;
10475
+ entryMode?: 'ENTRY_MODE_UNSPECIFIED' | 'SOURCE' | 'TARGET';
10257
10476
  /** Selector specifying which fields to include in a partial response. */
10258
10477
  fields?: string;
10259
10478
  /** 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. */
@@ -10278,11 +10497,11 @@ declare namespace gapi.client {
10278
10497
  /** Searches for Entries matching the given query and scope. */
10279
10498
  searchEntries(request?: {
10280
10499
  /** V1 error format. */
10281
- '$.xgafv'?: string;
10500
+ '$.xgafv'?: '1' | '2';
10282
10501
  /** OAuth access token. */
10283
10502
  access_token?: string;
10284
10503
  /** Data format for response. */
10285
- alt?: string;
10504
+ alt?: 'json' | 'media' | 'proto';
10286
10505
  /** JSONP */
10287
10506
  callback?: string;
10288
10507
  /** Selector specifying which fields to include in a partial response. */