@maxim_mazurok/gapi.client.dataform-v1beta1 0.1.20260304 → 0.2.20260304

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 +272 -241
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -221,7 +221,11 @@ declare namespace gapi.client {
221
221
  }
222
222
  interface ComputeRepositoryAccessTokenStatusResponse {
223
223
  /** Indicates the status of the Git access token. */
224
- tokenStatus?: string;
224
+ tokenStatus?:
225
+ | 'TOKEN_STATUS_UNSPECIFIED'
226
+ | 'NOT_FOUND'
227
+ | 'INVALID'
228
+ | 'VALID';
225
229
  }
226
230
  interface Config {
227
231
  /** Optional. The default KMS key that is used if no encryption key is provided when a repository is created. */
@@ -355,7 +359,11 @@ declare namespace gapi.client {
355
359
  /** Optional. Authentication fields for remote uris using SSH protocol. */
356
360
  sshAuthenticationConfig?: SshAuthenticationConfig;
357
361
  /** Output only. Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus */
358
- tokenStatus?: string;
362
+ tokenStatus?:
363
+ | 'TOKEN_STATUS_UNSPECIFIED'
364
+ | 'NOT_FOUND'
365
+ | 'INVALID'
366
+ | 'VALID';
359
367
  /** Required. The Git remote's URL. */
360
368
  url?: string;
361
369
  }
@@ -399,7 +407,7 @@ declare namespace gapi.client {
399
407
  /** Optional. The set of action identifiers to include. */
400
408
  includedTargets?: Target[];
401
409
  /** Optional. Specifies the priority for query execution in BigQuery. More information can be found at https://cloud.google.com/bigquery/docs/running-queries#queries. */
402
- queryPriority?: string;
410
+ queryPriority?: 'QUERY_PRIORITY_UNSPECIFIED' | 'INTERACTIVE' | 'BATCH';
403
411
  /** Optional. The service account to run workflow invocations under. */
404
412
  serviceAccount?: string;
405
413
  /** Optional. When set to true, transitive dependencies of included actions will be executed. */
@@ -676,7 +684,7 @@ declare namespace gapi.client {
676
684
  /** Whether this action is disabled (i.e. should not be run). */
677
685
  disabled?: boolean;
678
686
  /** Optional. The file format for the BigQuery table. */
679
- fileFormat?: string;
687
+ fileFormat?: 'FILE_FORMAT_UNSPECIFIED' | 'PARQUET';
680
688
  /** Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is `INCREMENTAL_TABLE`. */
681
689
  incrementalTableConfig?: IncrementalTableConfig;
682
690
  /** Sets the partition expiration in days. */
@@ -690,7 +698,12 @@ declare namespace gapi.client {
690
698
  /** Descriptor for the relation and its columns. */
691
699
  relationDescriptor?: RelationDescriptor;
692
700
  /** The type of this relation. */
693
- relationType?: string;
701
+ relationType?:
702
+ | 'RELATION_TYPE_UNSPECIFIED'
703
+ | 'TABLE'
704
+ | 'VIEW'
705
+ | 'INCREMENTAL_TABLE'
706
+ | 'MATERIALIZED_VIEW';
694
707
  /** Specifies whether queries on this table must include a predicate filter that filters on the partitioning column. */
695
708
  requirePartitionFilter?: boolean;
696
709
  /** The SELECT query which returns rows which this relation should contain. */
@@ -698,7 +711,7 @@ declare namespace gapi.client {
698
711
  /** Optional. The fully qualified location prefix of the external folder where table data is stored. The URI should be in the format `gs://bucket/path_to_table/`. */
699
712
  storageUri?: string;
700
713
  /** Optional. The table format for the BigQuery table. */
701
- tableFormat?: string;
714
+ tableFormat?: 'TABLE_FORMAT_UNSPECIFIED' | 'ICEBERG';
702
715
  /** Arbitrary, user-defined tags on this action. */
703
716
  tags?: string[];
704
717
  }
@@ -888,7 +901,12 @@ declare namespace gapi.client {
888
901
  /** The file's full path including filename, relative to the workspace root. */
889
902
  path?: string;
890
903
  /** Output only. Indicates the status of the file. */
891
- state?: string;
904
+ state?:
905
+ | 'STATE_UNSPECIFIED'
906
+ | 'ADDED'
907
+ | 'DELETED'
908
+ | 'MODIFIED'
909
+ | 'HAS_CONFLICTS';
892
910
  }
893
911
  interface WorkflowConfig {
894
912
  /** Output only. The timestamp of when the WorkflowConfig was created. */
@@ -930,7 +948,13 @@ declare namespace gapi.client {
930
948
  /** Output only. The resolved compilation result that was used to create this invocation. Will be in the format `projects/*‍/locations/*‍/repositories/*‍/compilationResults/*`. */
931
949
  resolvedCompilationResult?: string;
932
950
  /** Output only. This workflow invocation's current state. */
933
- state?: string;
951
+ state?:
952
+ | 'STATE_UNSPECIFIED'
953
+ | 'RUNNING'
954
+ | 'SUCCEEDED'
955
+ | 'CANCELLED'
956
+ | 'FAILED'
957
+ | 'CANCELING';
934
958
  /** Immutable. The name of the workflow config to invoke. Must be in the format `projects/*‍/locations/*‍/repositories/*‍/workflowConfigs/*`. */
935
959
  workflowConfig?: string;
936
960
  }
@@ -950,7 +974,14 @@ declare namespace gapi.client {
950
974
  /** Output only. The workflow action's notebook action details. */
951
975
  notebookAction?: NotebookAction;
952
976
  /** Output only. This action's current state. */
953
- state?: string;
977
+ state?:
978
+ | 'PENDING'
979
+ | 'RUNNING'
980
+ | 'SKIPPED'
981
+ | 'DISABLED'
982
+ | 'SUCCEEDED'
983
+ | 'CANCELLED'
984
+ | 'FAILED';
954
985
  /** Output only. This action's identifier. Unique within the workflow invocation. */
955
986
  target?: Target;
956
987
  }
@@ -991,11 +1022,11 @@ declare namespace gapi.client {
991
1022
  /** Creates a new Folder in a given project and location. */
992
1023
  create(request: {
993
1024
  /** V1 error format. */
994
- '$.xgafv'?: string;
1025
+ '$.xgafv'?: '1' | '2';
995
1026
  /** OAuth access token. */
996
1027
  access_token?: string;
997
1028
  /** Data format for response. */
998
- alt?: string;
1029
+ alt?: 'json' | 'media' | 'proto';
999
1030
  /** JSONP */
1000
1031
  callback?: string;
1001
1032
  /** Selector specifying which fields to include in a partial response. */
@@ -1022,11 +1053,11 @@ declare namespace gapi.client {
1022
1053
  create(
1023
1054
  request: {
1024
1055
  /** V1 error format. */
1025
- '$.xgafv'?: string;
1056
+ '$.xgafv'?: '1' | '2';
1026
1057
  /** OAuth access token. */
1027
1058
  access_token?: string;
1028
1059
  /** Data format for response. */
1029
- alt?: string;
1060
+ alt?: 'json' | 'media' | 'proto';
1030
1061
  /** JSONP */
1031
1062
  callback?: string;
1032
1063
  /** Selector specifying which fields to include in a partial response. */
@@ -1053,11 +1084,11 @@ declare namespace gapi.client {
1053
1084
  /** Deletes a single Folder. */
1054
1085
  delete(request?: {
1055
1086
  /** V1 error format. */
1056
- '$.xgafv'?: string;
1087
+ '$.xgafv'?: '1' | '2';
1057
1088
  /** OAuth access token. */
1058
1089
  access_token?: string;
1059
1090
  /** Data format for response. */
1060
- alt?: string;
1091
+ alt?: 'json' | 'media' | 'proto';
1061
1092
  /** JSONP */
1062
1093
  callback?: string;
1063
1094
  /** Selector specifying which fields to include in a partial response. */
@@ -1080,11 +1111,11 @@ declare namespace gapi.client {
1080
1111
  /** Fetches a single Folder. */
1081
1112
  get(request?: {
1082
1113
  /** V1 error format. */
1083
- '$.xgafv'?: string;
1114
+ '$.xgafv'?: '1' | '2';
1084
1115
  /** OAuth access token. */
1085
1116
  access_token?: string;
1086
1117
  /** Data format for response. */
1087
- alt?: string;
1118
+ alt?: 'json' | 'media' | 'proto';
1088
1119
  /** JSONP */
1089
1120
  callback?: string;
1090
1121
  /** Selector specifying which fields to include in a partial response. */
@@ -1107,11 +1138,11 @@ declare namespace gapi.client {
1107
1138
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
1108
1139
  getIamPolicy(request?: {
1109
1140
  /** V1 error format. */
1110
- '$.xgafv'?: string;
1141
+ '$.xgafv'?: '1' | '2';
1111
1142
  /** OAuth access token. */
1112
1143
  access_token?: string;
1113
1144
  /** Data format for response. */
1114
- alt?: string;
1145
+ alt?: 'json' | 'media' | 'proto';
1115
1146
  /** JSONP */
1116
1147
  callback?: string;
1117
1148
  /** Selector specifying which fields to include in a partial response. */
@@ -1136,11 +1167,11 @@ declare namespace gapi.client {
1136
1167
  /** Moves a Folder to a new Folder, TeamFolder, or the root location. */
1137
1168
  move(request: {
1138
1169
  /** V1 error format. */
1139
- '$.xgafv'?: string;
1170
+ '$.xgafv'?: '1' | '2';
1140
1171
  /** OAuth access token. */
1141
1172
  access_token?: string;
1142
1173
  /** Data format for response. */
1143
- alt?: string;
1174
+ alt?: 'json' | 'media' | 'proto';
1144
1175
  /** JSONP */
1145
1176
  callback?: string;
1146
1177
  /** Selector specifying which fields to include in a partial response. */
@@ -1165,11 +1196,11 @@ declare namespace gapi.client {
1165
1196
  move(
1166
1197
  request: {
1167
1198
  /** V1 error format. */
1168
- '$.xgafv'?: string;
1199
+ '$.xgafv'?: '1' | '2';
1169
1200
  /** OAuth access token. */
1170
1201
  access_token?: string;
1171
1202
  /** Data format for response. */
1172
- alt?: string;
1203
+ alt?: 'json' | 'media' | 'proto';
1173
1204
  /** JSONP */
1174
1205
  callback?: string;
1175
1206
  /** Selector specifying which fields to include in a partial response. */
@@ -1194,11 +1225,11 @@ declare namespace gapi.client {
1194
1225
  /** Updates a single Folder. */
1195
1226
  patch(request: {
1196
1227
  /** V1 error format. */
1197
- '$.xgafv'?: string;
1228
+ '$.xgafv'?: '1' | '2';
1198
1229
  /** OAuth access token. */
1199
1230
  access_token?: string;
1200
1231
  /** Data format for response. */
1201
- alt?: string;
1232
+ alt?: 'json' | 'media' | 'proto';
1202
1233
  /** JSONP */
1203
1234
  callback?: string;
1204
1235
  /** Selector specifying which fields to include in a partial response. */
@@ -1225,11 +1256,11 @@ declare namespace gapi.client {
1225
1256
  patch(
1226
1257
  request: {
1227
1258
  /** V1 error format. */
1228
- '$.xgafv'?: string;
1259
+ '$.xgafv'?: '1' | '2';
1229
1260
  /** OAuth access token. */
1230
1261
  access_token?: string;
1231
1262
  /** Data format for response. */
1232
- alt?: string;
1263
+ alt?: 'json' | 'media' | 'proto';
1233
1264
  /** JSONP */
1234
1265
  callback?: string;
1235
1266
  /** Selector specifying which fields to include in a partial response. */
@@ -1256,11 +1287,11 @@ declare namespace gapi.client {
1256
1287
  /** Returns the contents of a given Folder. */
1257
1288
  queryFolderContents(request?: {
1258
1289
  /** V1 error format. */
1259
- '$.xgafv'?: string;
1290
+ '$.xgafv'?: '1' | '2';
1260
1291
  /** OAuth access token. */
1261
1292
  access_token?: string;
1262
1293
  /** Data format for response. */
1263
- alt?: string;
1294
+ alt?: 'json' | 'media' | 'proto';
1264
1295
  /** JSONP */
1265
1296
  callback?: string;
1266
1297
  /** Selector specifying which fields to include in a partial response. */
@@ -1292,11 +1323,11 @@ declare namespace gapi.client {
1292
1323
  setIamPolicy(
1293
1324
  request: {
1294
1325
  /** V1 error format. */
1295
- '$.xgafv'?: string;
1326
+ '$.xgafv'?: '1' | '2';
1296
1327
  /** OAuth access token. */
1297
1328
  access_token?: string;
1298
1329
  /** Data format for response. */
1299
- alt?: string;
1330
+ alt?: 'json' | 'media' | 'proto';
1300
1331
  /** JSONP */
1301
1332
  callback?: string;
1302
1333
  /** Selector specifying which fields to include in a partial response. */
@@ -1322,11 +1353,11 @@ declare namespace gapi.client {
1322
1353
  testIamPermissions(
1323
1354
  request: {
1324
1355
  /** V1 error format. */
1325
- '$.xgafv'?: string;
1356
+ '$.xgafv'?: '1' | '2';
1326
1357
  /** OAuth access token. */
1327
1358
  access_token?: string;
1328
1359
  /** Data format for response. */
1329
- alt?: string;
1360
+ alt?: 'json' | 'media' | 'proto';
1330
1361
  /** JSONP */
1331
1362
  callback?: string;
1332
1363
  /** Selector specifying which fields to include in a partial response. */
@@ -1353,11 +1384,11 @@ declare namespace gapi.client {
1353
1384
  /** 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`. */
1354
1385
  cancel(request: {
1355
1386
  /** V1 error format. */
1356
- '$.xgafv'?: string;
1387
+ '$.xgafv'?: '1' | '2';
1357
1388
  /** OAuth access token. */
1358
1389
  access_token?: string;
1359
1390
  /** Data format for response. */
1360
- alt?: string;
1391
+ alt?: 'json' | 'media' | 'proto';
1361
1392
  /** JSONP */
1362
1393
  callback?: string;
1363
1394
  /** Selector specifying which fields to include in a partial response. */
@@ -1382,11 +1413,11 @@ declare namespace gapi.client {
1382
1413
  cancel(
1383
1414
  request: {
1384
1415
  /** V1 error format. */
1385
- '$.xgafv'?: string;
1416
+ '$.xgafv'?: '1' | '2';
1386
1417
  /** OAuth access token. */
1387
1418
  access_token?: string;
1388
1419
  /** Data format for response. */
1389
- alt?: string;
1420
+ alt?: 'json' | 'media' | 'proto';
1390
1421
  /** JSONP */
1391
1422
  callback?: string;
1392
1423
  /** Selector specifying which fields to include in a partial response. */
@@ -1411,11 +1442,11 @@ declare namespace gapi.client {
1411
1442
  /** 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`. */
1412
1443
  delete(request?: {
1413
1444
  /** V1 error format. */
1414
- '$.xgafv'?: string;
1445
+ '$.xgafv'?: '1' | '2';
1415
1446
  /** OAuth access token. */
1416
1447
  access_token?: string;
1417
1448
  /** Data format for response. */
1418
- alt?: string;
1449
+ alt?: 'json' | 'media' | 'proto';
1419
1450
  /** JSONP */
1420
1451
  callback?: string;
1421
1452
  /** Selector specifying which fields to include in a partial response. */
@@ -1438,11 +1469,11 @@ declare namespace gapi.client {
1438
1469
  /** 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. */
1439
1470
  get(request?: {
1440
1471
  /** V1 error format. */
1441
- '$.xgafv'?: string;
1472
+ '$.xgafv'?: '1' | '2';
1442
1473
  /** OAuth access token. */
1443
1474
  access_token?: string;
1444
1475
  /** Data format for response. */
1445
- alt?: string;
1476
+ alt?: 'json' | 'media' | 'proto';
1446
1477
  /** JSONP */
1447
1478
  callback?: string;
1448
1479
  /** Selector specifying which fields to include in a partial response. */
@@ -1465,11 +1496,11 @@ declare namespace gapi.client {
1465
1496
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
1466
1497
  list(request?: {
1467
1498
  /** V1 error format. */
1468
- '$.xgafv'?: string;
1499
+ '$.xgafv'?: '1' | '2';
1469
1500
  /** OAuth access token. */
1470
1501
  access_token?: string;
1471
1502
  /** Data format for response. */
1472
- alt?: string;
1503
+ alt?: 'json' | 'media' | 'proto';
1473
1504
  /** JSONP */
1474
1505
  callback?: string;
1475
1506
  /** Selector specifying which fields to include in a partial response. */
@@ -1502,11 +1533,11 @@ declare namespace gapi.client {
1502
1533
  /** Creates a new CompilationResult in a given project and location. */
1503
1534
  create(request: {
1504
1535
  /** V1 error format. */
1505
- '$.xgafv'?: string;
1536
+ '$.xgafv'?: '1' | '2';
1506
1537
  /** OAuth access token. */
1507
1538
  access_token?: string;
1508
1539
  /** Data format for response. */
1509
- alt?: string;
1540
+ alt?: 'json' | 'media' | 'proto';
1510
1541
  /** JSONP */
1511
1542
  callback?: string;
1512
1543
  /** Selector specifying which fields to include in a partial response. */
@@ -1531,11 +1562,11 @@ declare namespace gapi.client {
1531
1562
  create(
1532
1563
  request: {
1533
1564
  /** V1 error format. */
1534
- '$.xgafv'?: string;
1565
+ '$.xgafv'?: '1' | '2';
1535
1566
  /** OAuth access token. */
1536
1567
  access_token?: string;
1537
1568
  /** Data format for response. */
1538
- alt?: string;
1569
+ alt?: 'json' | 'media' | 'proto';
1539
1570
  /** JSONP */
1540
1571
  callback?: string;
1541
1572
  /** Selector specifying which fields to include in a partial response. */
@@ -1560,11 +1591,11 @@ declare namespace gapi.client {
1560
1591
  /** Fetches a single CompilationResult. */
1561
1592
  get(request?: {
1562
1593
  /** V1 error format. */
1563
- '$.xgafv'?: string;
1594
+ '$.xgafv'?: '1' | '2';
1564
1595
  /** OAuth access token. */
1565
1596
  access_token?: string;
1566
1597
  /** Data format for response. */
1567
- alt?: string;
1598
+ alt?: 'json' | 'media' | 'proto';
1568
1599
  /** JSONP */
1569
1600
  callback?: string;
1570
1601
  /** Selector specifying which fields to include in a partial response. */
@@ -1587,11 +1618,11 @@ declare namespace gapi.client {
1587
1618
  /** Lists CompilationResults in a given Repository. */
1588
1619
  list(request?: {
1589
1620
  /** V1 error format. */
1590
- '$.xgafv'?: string;
1621
+ '$.xgafv'?: '1' | '2';
1591
1622
  /** OAuth access token. */
1592
1623
  access_token?: string;
1593
1624
  /** Data format for response. */
1594
- alt?: string;
1625
+ alt?: 'json' | 'media' | 'proto';
1595
1626
  /** JSONP */
1596
1627
  callback?: string;
1597
1628
  /** Selector specifying which fields to include in a partial response. */
@@ -1622,11 +1653,11 @@ declare namespace gapi.client {
1622
1653
  /** Returns CompilationResultActions in a given CompilationResult. */
1623
1654
  query(request?: {
1624
1655
  /** V1 error format. */
1625
- '$.xgafv'?: string;
1656
+ '$.xgafv'?: '1' | '2';
1626
1657
  /** OAuth access token. */
1627
1658
  access_token?: string;
1628
1659
  /** Data format for response. */
1629
- alt?: string;
1660
+ alt?: 'json' | 'media' | 'proto';
1630
1661
  /** JSONP */
1631
1662
  callback?: string;
1632
1663
  /** Selector specifying which fields to include in a partial response. */
@@ -1657,11 +1688,11 @@ declare namespace gapi.client {
1657
1688
  /** Creates a new ReleaseConfig in a given Repository. */
1658
1689
  create(request: {
1659
1690
  /** V1 error format. */
1660
- '$.xgafv'?: string;
1691
+ '$.xgafv'?: '1' | '2';
1661
1692
  /** OAuth access token. */
1662
1693
  access_token?: string;
1663
1694
  /** Data format for response. */
1664
- alt?: string;
1695
+ alt?: 'json' | 'media' | 'proto';
1665
1696
  /** JSONP */
1666
1697
  callback?: string;
1667
1698
  /** Selector specifying which fields to include in a partial response. */
@@ -1688,11 +1719,11 @@ declare namespace gapi.client {
1688
1719
  create(
1689
1720
  request: {
1690
1721
  /** V1 error format. */
1691
- '$.xgafv'?: string;
1722
+ '$.xgafv'?: '1' | '2';
1692
1723
  /** OAuth access token. */
1693
1724
  access_token?: string;
1694
1725
  /** Data format for response. */
1695
- alt?: string;
1726
+ alt?: 'json' | 'media' | 'proto';
1696
1727
  /** JSONP */
1697
1728
  callback?: string;
1698
1729
  /** Selector specifying which fields to include in a partial response. */
@@ -1719,11 +1750,11 @@ declare namespace gapi.client {
1719
1750
  /** Deletes a single ReleaseConfig. */
1720
1751
  delete(request?: {
1721
1752
  /** V1 error format. */
1722
- '$.xgafv'?: string;
1753
+ '$.xgafv'?: '1' | '2';
1723
1754
  /** OAuth access token. */
1724
1755
  access_token?: string;
1725
1756
  /** Data format for response. */
1726
- alt?: string;
1757
+ alt?: 'json' | 'media' | 'proto';
1727
1758
  /** JSONP */
1728
1759
  callback?: string;
1729
1760
  /** Selector specifying which fields to include in a partial response. */
@@ -1746,11 +1777,11 @@ declare namespace gapi.client {
1746
1777
  /** Fetches a single ReleaseConfig. */
1747
1778
  get(request?: {
1748
1779
  /** V1 error format. */
1749
- '$.xgafv'?: string;
1780
+ '$.xgafv'?: '1' | '2';
1750
1781
  /** OAuth access token. */
1751
1782
  access_token?: string;
1752
1783
  /** Data format for response. */
1753
- alt?: string;
1784
+ alt?: 'json' | 'media' | 'proto';
1754
1785
  /** JSONP */
1755
1786
  callback?: string;
1756
1787
  /** Selector specifying which fields to include in a partial response. */
@@ -1773,11 +1804,11 @@ declare namespace gapi.client {
1773
1804
  /** Lists ReleaseConfigs in a given Repository. */
1774
1805
  list(request?: {
1775
1806
  /** V1 error format. */
1776
- '$.xgafv'?: string;
1807
+ '$.xgafv'?: '1' | '2';
1777
1808
  /** OAuth access token. */
1778
1809
  access_token?: string;
1779
1810
  /** Data format for response. */
1780
- alt?: string;
1811
+ alt?: 'json' | 'media' | 'proto';
1781
1812
  /** JSONP */
1782
1813
  callback?: string;
1783
1814
  /** Selector specifying which fields to include in a partial response. */
@@ -1804,11 +1835,11 @@ declare namespace gapi.client {
1804
1835
  /** Updates a single ReleaseConfig. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.* */
1805
1836
  patch(request: {
1806
1837
  /** V1 error format. */
1807
- '$.xgafv'?: string;
1838
+ '$.xgafv'?: '1' | '2';
1808
1839
  /** OAuth access token. */
1809
1840
  access_token?: string;
1810
1841
  /** Data format for response. */
1811
- alt?: string;
1842
+ alt?: 'json' | 'media' | 'proto';
1812
1843
  /** JSONP */
1813
1844
  callback?: string;
1814
1845
  /** Selector specifying which fields to include in a partial response. */
@@ -1835,11 +1866,11 @@ declare namespace gapi.client {
1835
1866
  patch(
1836
1867
  request: {
1837
1868
  /** V1 error format. */
1838
- '$.xgafv'?: string;
1869
+ '$.xgafv'?: '1' | '2';
1839
1870
  /** OAuth access token. */
1840
1871
  access_token?: string;
1841
1872
  /** Data format for response. */
1842
- alt?: string;
1873
+ alt?: 'json' | 'media' | 'proto';
1843
1874
  /** JSONP */
1844
1875
  callback?: string;
1845
1876
  /** Selector specifying which fields to include in a partial response. */
@@ -1868,11 +1899,11 @@ declare namespace gapi.client {
1868
1899
  /** Creates a new WorkflowConfig in a given Repository. */
1869
1900
  create(request: {
1870
1901
  /** V1 error format. */
1871
- '$.xgafv'?: string;
1902
+ '$.xgafv'?: '1' | '2';
1872
1903
  /** OAuth access token. */
1873
1904
  access_token?: string;
1874
1905
  /** Data format for response. */
1875
- alt?: string;
1906
+ alt?: 'json' | 'media' | 'proto';
1876
1907
  /** JSONP */
1877
1908
  callback?: string;
1878
1909
  /** Selector specifying which fields to include in a partial response. */
@@ -1899,11 +1930,11 @@ declare namespace gapi.client {
1899
1930
  create(
1900
1931
  request: {
1901
1932
  /** V1 error format. */
1902
- '$.xgafv'?: string;
1933
+ '$.xgafv'?: '1' | '2';
1903
1934
  /** OAuth access token. */
1904
1935
  access_token?: string;
1905
1936
  /** Data format for response. */
1906
- alt?: string;
1937
+ alt?: 'json' | 'media' | 'proto';
1907
1938
  /** JSONP */
1908
1939
  callback?: string;
1909
1940
  /** Selector specifying which fields to include in a partial response. */
@@ -1930,11 +1961,11 @@ declare namespace gapi.client {
1930
1961
  /** Deletes a single WorkflowConfig. */
1931
1962
  delete(request?: {
1932
1963
  /** V1 error format. */
1933
- '$.xgafv'?: string;
1964
+ '$.xgafv'?: '1' | '2';
1934
1965
  /** OAuth access token. */
1935
1966
  access_token?: string;
1936
1967
  /** Data format for response. */
1937
- alt?: string;
1968
+ alt?: 'json' | 'media' | 'proto';
1938
1969
  /** JSONP */
1939
1970
  callback?: string;
1940
1971
  /** Selector specifying which fields to include in a partial response. */
@@ -1957,11 +1988,11 @@ declare namespace gapi.client {
1957
1988
  /** Fetches a single WorkflowConfig. */
1958
1989
  get(request?: {
1959
1990
  /** V1 error format. */
1960
- '$.xgafv'?: string;
1991
+ '$.xgafv'?: '1' | '2';
1961
1992
  /** OAuth access token. */
1962
1993
  access_token?: string;
1963
1994
  /** Data format for response. */
1964
- alt?: string;
1995
+ alt?: 'json' | 'media' | 'proto';
1965
1996
  /** JSONP */
1966
1997
  callback?: string;
1967
1998
  /** Selector specifying which fields to include in a partial response. */
@@ -1984,11 +2015,11 @@ declare namespace gapi.client {
1984
2015
  /** Lists WorkflowConfigs in a given Repository. */
1985
2016
  list(request?: {
1986
2017
  /** V1 error format. */
1987
- '$.xgafv'?: string;
2018
+ '$.xgafv'?: '1' | '2';
1988
2019
  /** OAuth access token. */
1989
2020
  access_token?: string;
1990
2021
  /** Data format for response. */
1991
- alt?: string;
2022
+ alt?: 'json' | 'media' | 'proto';
1992
2023
  /** JSONP */
1993
2024
  callback?: string;
1994
2025
  /** Selector specifying which fields to include in a partial response. */
@@ -2015,11 +2046,11 @@ declare namespace gapi.client {
2015
2046
  /** Updates a single WorkflowConfig. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.* */
2016
2047
  patch(request: {
2017
2048
  /** V1 error format. */
2018
- '$.xgafv'?: string;
2049
+ '$.xgafv'?: '1' | '2';
2019
2050
  /** OAuth access token. */
2020
2051
  access_token?: string;
2021
2052
  /** Data format for response. */
2022
- alt?: string;
2053
+ alt?: 'json' | 'media' | 'proto';
2023
2054
  /** JSONP */
2024
2055
  callback?: string;
2025
2056
  /** Selector specifying which fields to include in a partial response. */
@@ -2046,11 +2077,11 @@ declare namespace gapi.client {
2046
2077
  patch(
2047
2078
  request: {
2048
2079
  /** V1 error format. */
2049
- '$.xgafv'?: string;
2080
+ '$.xgafv'?: '1' | '2';
2050
2081
  /** OAuth access token. */
2051
2082
  access_token?: string;
2052
2083
  /** Data format for response. */
2053
- alt?: string;
2084
+ alt?: 'json' | 'media' | 'proto';
2054
2085
  /** JSONP */
2055
2086
  callback?: string;
2056
2087
  /** Selector specifying which fields to include in a partial response. */
@@ -2079,11 +2110,11 @@ declare namespace gapi.client {
2079
2110
  /** Requests cancellation of a running WorkflowInvocation. */
2080
2111
  cancel(request: {
2081
2112
  /** V1 error format. */
2082
- '$.xgafv'?: string;
2113
+ '$.xgafv'?: '1' | '2';
2083
2114
  /** OAuth access token. */
2084
2115
  access_token?: string;
2085
2116
  /** Data format for response. */
2086
- alt?: string;
2117
+ alt?: 'json' | 'media' | 'proto';
2087
2118
  /** JSONP */
2088
2119
  callback?: string;
2089
2120
  /** Selector specifying which fields to include in a partial response. */
@@ -2108,11 +2139,11 @@ declare namespace gapi.client {
2108
2139
  cancel(
2109
2140
  request: {
2110
2141
  /** V1 error format. */
2111
- '$.xgafv'?: string;
2142
+ '$.xgafv'?: '1' | '2';
2112
2143
  /** OAuth access token. */
2113
2144
  access_token?: string;
2114
2145
  /** Data format for response. */
2115
- alt?: string;
2146
+ alt?: 'json' | 'media' | 'proto';
2116
2147
  /** JSONP */
2117
2148
  callback?: string;
2118
2149
  /** Selector specifying which fields to include in a partial response. */
@@ -2137,11 +2168,11 @@ declare namespace gapi.client {
2137
2168
  /** Creates a new WorkflowInvocation in a given Repository. */
2138
2169
  create(request: {
2139
2170
  /** V1 error format. */
2140
- '$.xgafv'?: string;
2171
+ '$.xgafv'?: '1' | '2';
2141
2172
  /** OAuth access token. */
2142
2173
  access_token?: string;
2143
2174
  /** Data format for response. */
2144
- alt?: string;
2175
+ alt?: 'json' | 'media' | 'proto';
2145
2176
  /** JSONP */
2146
2177
  callback?: string;
2147
2178
  /** Selector specifying which fields to include in a partial response. */
@@ -2166,11 +2197,11 @@ declare namespace gapi.client {
2166
2197
  create(
2167
2198
  request: {
2168
2199
  /** V1 error format. */
2169
- '$.xgafv'?: string;
2200
+ '$.xgafv'?: '1' | '2';
2170
2201
  /** OAuth access token. */
2171
2202
  access_token?: string;
2172
2203
  /** Data format for response. */
2173
- alt?: string;
2204
+ alt?: 'json' | 'media' | 'proto';
2174
2205
  /** JSONP */
2175
2206
  callback?: string;
2176
2207
  /** Selector specifying which fields to include in a partial response. */
@@ -2195,11 +2226,11 @@ declare namespace gapi.client {
2195
2226
  /** Deletes a single WorkflowInvocation. */
2196
2227
  delete(request?: {
2197
2228
  /** V1 error format. */
2198
- '$.xgafv'?: string;
2229
+ '$.xgafv'?: '1' | '2';
2199
2230
  /** OAuth access token. */
2200
2231
  access_token?: string;
2201
2232
  /** Data format for response. */
2202
- alt?: string;
2233
+ alt?: 'json' | 'media' | 'proto';
2203
2234
  /** JSONP */
2204
2235
  callback?: string;
2205
2236
  /** Selector specifying which fields to include in a partial response. */
@@ -2222,11 +2253,11 @@ declare namespace gapi.client {
2222
2253
  /** Fetches a single WorkflowInvocation. */
2223
2254
  get(request?: {
2224
2255
  /** V1 error format. */
2225
- '$.xgafv'?: string;
2256
+ '$.xgafv'?: '1' | '2';
2226
2257
  /** OAuth access token. */
2227
2258
  access_token?: string;
2228
2259
  /** Data format for response. */
2229
- alt?: string;
2260
+ alt?: 'json' | 'media' | 'proto';
2230
2261
  /** JSONP */
2231
2262
  callback?: string;
2232
2263
  /** Selector specifying which fields to include in a partial response. */
@@ -2249,11 +2280,11 @@ declare namespace gapi.client {
2249
2280
  /** Lists WorkflowInvocations in a given Repository. */
2250
2281
  list(request?: {
2251
2282
  /** V1 error format. */
2252
- '$.xgafv'?: string;
2283
+ '$.xgafv'?: '1' | '2';
2253
2284
  /** OAuth access token. */
2254
2285
  access_token?: string;
2255
2286
  /** Data format for response. */
2256
- alt?: string;
2287
+ alt?: 'json' | 'media' | 'proto';
2257
2288
  /** JSONP */
2258
2289
  callback?: string;
2259
2290
  /** Selector specifying which fields to include in a partial response. */
@@ -2284,11 +2315,11 @@ declare namespace gapi.client {
2284
2315
  /** Returns WorkflowInvocationActions in a given WorkflowInvocation. */
2285
2316
  query(request?: {
2286
2317
  /** V1 error format. */
2287
- '$.xgafv'?: string;
2318
+ '$.xgafv'?: '1' | '2';
2288
2319
  /** OAuth access token. */
2289
2320
  access_token?: string;
2290
2321
  /** Data format for response. */
2291
- alt?: string;
2322
+ alt?: 'json' | 'media' | 'proto';
2292
2323
  /** JSONP */
2293
2324
  callback?: string;
2294
2325
  /** Selector specifying which fields to include in a partial response. */
@@ -2317,11 +2348,11 @@ declare namespace gapi.client {
2317
2348
  /** Applies a Git commit for uncommitted files in a Workspace. */
2318
2349
  commit(request: {
2319
2350
  /** V1 error format. */
2320
- '$.xgafv'?: string;
2351
+ '$.xgafv'?: '1' | '2';
2321
2352
  /** OAuth access token. */
2322
2353
  access_token?: string;
2323
2354
  /** Data format for response. */
2324
- alt?: string;
2355
+ alt?: 'json' | 'media' | 'proto';
2325
2356
  /** JSONP */
2326
2357
  callback?: string;
2327
2358
  /** Selector specifying which fields to include in a partial response. */
@@ -2346,11 +2377,11 @@ declare namespace gapi.client {
2346
2377
  commit(
2347
2378
  request: {
2348
2379
  /** V1 error format. */
2349
- '$.xgafv'?: string;
2380
+ '$.xgafv'?: '1' | '2';
2350
2381
  /** OAuth access token. */
2351
2382
  access_token?: string;
2352
2383
  /** Data format for response. */
2353
- alt?: string;
2384
+ alt?: 'json' | 'media' | 'proto';
2354
2385
  /** JSONP */
2355
2386
  callback?: string;
2356
2387
  /** Selector specifying which fields to include in a partial response. */
@@ -2375,11 +2406,11 @@ declare namespace gapi.client {
2375
2406
  /** Creates a new Workspace in a given Repository. */
2376
2407
  create(request: {
2377
2408
  /** V1 error format. */
2378
- '$.xgafv'?: string;
2409
+ '$.xgafv'?: '1' | '2';
2379
2410
  /** OAuth access token. */
2380
2411
  access_token?: string;
2381
2412
  /** Data format for response. */
2382
- alt?: string;
2413
+ alt?: 'json' | 'media' | 'proto';
2383
2414
  /** JSONP */
2384
2415
  callback?: string;
2385
2416
  /** Selector specifying which fields to include in a partial response. */
@@ -2406,11 +2437,11 @@ declare namespace gapi.client {
2406
2437
  create(
2407
2438
  request: {
2408
2439
  /** V1 error format. */
2409
- '$.xgafv'?: string;
2440
+ '$.xgafv'?: '1' | '2';
2410
2441
  /** OAuth access token. */
2411
2442
  access_token?: string;
2412
2443
  /** Data format for response. */
2413
- alt?: string;
2444
+ alt?: 'json' | 'media' | 'proto';
2414
2445
  /** JSONP */
2415
2446
  callback?: string;
2416
2447
  /** Selector specifying which fields to include in a partial response. */
@@ -2437,11 +2468,11 @@ declare namespace gapi.client {
2437
2468
  /** Deletes a single Workspace. */
2438
2469
  delete(request?: {
2439
2470
  /** V1 error format. */
2440
- '$.xgafv'?: string;
2471
+ '$.xgafv'?: '1' | '2';
2441
2472
  /** OAuth access token. */
2442
2473
  access_token?: string;
2443
2474
  /** Data format for response. */
2444
- alt?: string;
2475
+ alt?: 'json' | 'media' | 'proto';
2445
2476
  /** JSONP */
2446
2477
  callback?: string;
2447
2478
  /** Selector specifying which fields to include in a partial response. */
@@ -2464,11 +2495,11 @@ declare namespace gapi.client {
2464
2495
  /** Fetches Git diff for an uncommitted file in a Workspace. */
2465
2496
  fetchFileDiff(request?: {
2466
2497
  /** V1 error format. */
2467
- '$.xgafv'?: string;
2498
+ '$.xgafv'?: '1' | '2';
2468
2499
  /** OAuth access token. */
2469
2500
  access_token?: string;
2470
2501
  /** Data format for response. */
2471
- alt?: string;
2502
+ alt?: 'json' | 'media' | 'proto';
2472
2503
  /** JSONP */
2473
2504
  callback?: string;
2474
2505
  /** Selector specifying which fields to include in a partial response. */
@@ -2493,11 +2524,11 @@ declare namespace gapi.client {
2493
2524
  /** Fetches Git statuses for the files in a Workspace. */
2494
2525
  fetchFileGitStatuses(request?: {
2495
2526
  /** V1 error format. */
2496
- '$.xgafv'?: string;
2527
+ '$.xgafv'?: '1' | '2';
2497
2528
  /** OAuth access token. */
2498
2529
  access_token?: string;
2499
2530
  /** Data format for response. */
2500
- alt?: string;
2531
+ alt?: 'json' | 'media' | 'proto';
2501
2532
  /** JSONP */
2502
2533
  callback?: string;
2503
2534
  /** Selector specifying which fields to include in a partial response. */
@@ -2520,11 +2551,11 @@ declare namespace gapi.client {
2520
2551
  /** Fetches Git ahead/behind against a remote branch. */
2521
2552
  fetchGitAheadBehind(request?: {
2522
2553
  /** V1 error format. */
2523
- '$.xgafv'?: string;
2554
+ '$.xgafv'?: '1' | '2';
2524
2555
  /** OAuth access token. */
2525
2556
  access_token?: string;
2526
2557
  /** Data format for response. */
2527
- alt?: string;
2558
+ alt?: 'json' | 'media' | 'proto';
2528
2559
  /** JSONP */
2529
2560
  callback?: string;
2530
2561
  /** Selector specifying which fields to include in a partial response. */
@@ -2549,11 +2580,11 @@ declare namespace gapi.client {
2549
2580
  /** Fetches a single Workspace. */
2550
2581
  get(request?: {
2551
2582
  /** V1 error format. */
2552
- '$.xgafv'?: string;
2583
+ '$.xgafv'?: '1' | '2';
2553
2584
  /** OAuth access token. */
2554
2585
  access_token?: string;
2555
2586
  /** Data format for response. */
2556
- alt?: string;
2587
+ alt?: 'json' | 'media' | 'proto';
2557
2588
  /** JSONP */
2558
2589
  callback?: string;
2559
2590
  /** Selector specifying which fields to include in a partial response. */
@@ -2576,11 +2607,11 @@ declare namespace gapi.client {
2576
2607
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2577
2608
  getIamPolicy(request?: {
2578
2609
  /** V1 error format. */
2579
- '$.xgafv'?: string;
2610
+ '$.xgafv'?: '1' | '2';
2580
2611
  /** OAuth access token. */
2581
2612
  access_token?: string;
2582
2613
  /** Data format for response. */
2583
- alt?: string;
2614
+ alt?: 'json' | 'media' | 'proto';
2584
2615
  /** JSONP */
2585
2616
  callback?: string;
2586
2617
  /** Selector specifying which fields to include in a partial response. */
@@ -2605,11 +2636,11 @@ declare namespace gapi.client {
2605
2636
  /** Installs dependency NPM packages (inside a Workspace). */
2606
2637
  installNpmPackages(request: {
2607
2638
  /** V1 error format. */
2608
- '$.xgafv'?: string;
2639
+ '$.xgafv'?: '1' | '2';
2609
2640
  /** OAuth access token. */
2610
2641
  access_token?: string;
2611
2642
  /** Data format for response. */
2612
- alt?: string;
2643
+ alt?: 'json' | 'media' | 'proto';
2613
2644
  /** JSONP */
2614
2645
  callback?: string;
2615
2646
  /** Selector specifying which fields to include in a partial response. */
@@ -2634,11 +2665,11 @@ declare namespace gapi.client {
2634
2665
  installNpmPackages(
2635
2666
  request: {
2636
2667
  /** V1 error format. */
2637
- '$.xgafv'?: string;
2668
+ '$.xgafv'?: '1' | '2';
2638
2669
  /** OAuth access token. */
2639
2670
  access_token?: string;
2640
2671
  /** Data format for response. */
2641
- alt?: string;
2672
+ alt?: 'json' | 'media' | 'proto';
2642
2673
  /** JSONP */
2643
2674
  callback?: string;
2644
2675
  /** Selector specifying which fields to include in a partial response. */
@@ -2663,11 +2694,11 @@ declare namespace gapi.client {
2663
2694
  /** Lists Workspaces in a given Repository. */
2664
2695
  list(request?: {
2665
2696
  /** V1 error format. */
2666
- '$.xgafv'?: string;
2697
+ '$.xgafv'?: '1' | '2';
2667
2698
  /** OAuth access token. */
2668
2699
  access_token?: string;
2669
2700
  /** Data format for response. */
2670
- alt?: string;
2701
+ alt?: 'json' | 'media' | 'proto';
2671
2702
  /** JSONP */
2672
2703
  callback?: string;
2673
2704
  /** Selector specifying which fields to include in a partial response. */
@@ -2698,11 +2729,11 @@ declare namespace gapi.client {
2698
2729
  /** Creates a directory inside a Workspace. */
2699
2730
  makeDirectory(request: {
2700
2731
  /** V1 error format. */
2701
- '$.xgafv'?: string;
2732
+ '$.xgafv'?: '1' | '2';
2702
2733
  /** OAuth access token. */
2703
2734
  access_token?: string;
2704
2735
  /** Data format for response. */
2705
- alt?: string;
2736
+ alt?: 'json' | 'media' | 'proto';
2706
2737
  /** JSONP */
2707
2738
  callback?: string;
2708
2739
  /** Selector specifying which fields to include in a partial response. */
@@ -2727,11 +2758,11 @@ declare namespace gapi.client {
2727
2758
  makeDirectory(
2728
2759
  request: {
2729
2760
  /** V1 error format. */
2730
- '$.xgafv'?: string;
2761
+ '$.xgafv'?: '1' | '2';
2731
2762
  /** OAuth access token. */
2732
2763
  access_token?: string;
2733
2764
  /** Data format for response. */
2734
- alt?: string;
2765
+ alt?: 'json' | 'media' | 'proto';
2735
2766
  /** JSONP */
2736
2767
  callback?: string;
2737
2768
  /** Selector specifying which fields to include in a partial response. */
@@ -2756,11 +2787,11 @@ declare namespace gapi.client {
2756
2787
  /** Moves a directory (inside a Workspace), and all of its contents, to a new location. */
2757
2788
  moveDirectory(request: {
2758
2789
  /** V1 error format. */
2759
- '$.xgafv'?: string;
2790
+ '$.xgafv'?: '1' | '2';
2760
2791
  /** OAuth access token. */
2761
2792
  access_token?: string;
2762
2793
  /** Data format for response. */
2763
- alt?: string;
2794
+ alt?: 'json' | 'media' | 'proto';
2764
2795
  /** JSONP */
2765
2796
  callback?: string;
2766
2797
  /** Selector specifying which fields to include in a partial response. */
@@ -2785,11 +2816,11 @@ declare namespace gapi.client {
2785
2816
  moveDirectory(
2786
2817
  request: {
2787
2818
  /** V1 error format. */
2788
- '$.xgafv'?: string;
2819
+ '$.xgafv'?: '1' | '2';
2789
2820
  /** OAuth access token. */
2790
2821
  access_token?: string;
2791
2822
  /** Data format for response. */
2792
- alt?: string;
2823
+ alt?: 'json' | 'media' | 'proto';
2793
2824
  /** JSONP */
2794
2825
  callback?: string;
2795
2826
  /** Selector specifying which fields to include in a partial response. */
@@ -2814,11 +2845,11 @@ declare namespace gapi.client {
2814
2845
  /** Moves a file (inside a Workspace) to a new location. */
2815
2846
  moveFile(request: {
2816
2847
  /** V1 error format. */
2817
- '$.xgafv'?: string;
2848
+ '$.xgafv'?: '1' | '2';
2818
2849
  /** OAuth access token. */
2819
2850
  access_token?: string;
2820
2851
  /** Data format for response. */
2821
- alt?: string;
2852
+ alt?: 'json' | 'media' | 'proto';
2822
2853
  /** JSONP */
2823
2854
  callback?: string;
2824
2855
  /** Selector specifying which fields to include in a partial response. */
@@ -2843,11 +2874,11 @@ declare namespace gapi.client {
2843
2874
  moveFile(
2844
2875
  request: {
2845
2876
  /** V1 error format. */
2846
- '$.xgafv'?: string;
2877
+ '$.xgafv'?: '1' | '2';
2847
2878
  /** OAuth access token. */
2848
2879
  access_token?: string;
2849
2880
  /** Data format for response. */
2850
- alt?: string;
2881
+ alt?: 'json' | 'media' | 'proto';
2851
2882
  /** JSONP */
2852
2883
  callback?: string;
2853
2884
  /** Selector specifying which fields to include in a partial response. */
@@ -2872,11 +2903,11 @@ declare namespace gapi.client {
2872
2903
  /** Pulls Git commits from the Repository's remote into a Workspace. */
2873
2904
  pull(request: {
2874
2905
  /** V1 error format. */
2875
- '$.xgafv'?: string;
2906
+ '$.xgafv'?: '1' | '2';
2876
2907
  /** OAuth access token. */
2877
2908
  access_token?: string;
2878
2909
  /** Data format for response. */
2879
- alt?: string;
2910
+ alt?: 'json' | 'media' | 'proto';
2880
2911
  /** JSONP */
2881
2912
  callback?: string;
2882
2913
  /** Selector specifying which fields to include in a partial response. */
@@ -2901,11 +2932,11 @@ declare namespace gapi.client {
2901
2932
  pull(
2902
2933
  request: {
2903
2934
  /** V1 error format. */
2904
- '$.xgafv'?: string;
2935
+ '$.xgafv'?: '1' | '2';
2905
2936
  /** OAuth access token. */
2906
2937
  access_token?: string;
2907
2938
  /** Data format for response. */
2908
- alt?: string;
2939
+ alt?: 'json' | 'media' | 'proto';
2909
2940
  /** JSONP */
2910
2941
  callback?: string;
2911
2942
  /** Selector specifying which fields to include in a partial response. */
@@ -2930,11 +2961,11 @@ declare namespace gapi.client {
2930
2961
  /** Pushes Git commits from a Workspace to the Repository's remote. */
2931
2962
  push(request: {
2932
2963
  /** V1 error format. */
2933
- '$.xgafv'?: string;
2964
+ '$.xgafv'?: '1' | '2';
2934
2965
  /** OAuth access token. */
2935
2966
  access_token?: string;
2936
2967
  /** Data format for response. */
2937
- alt?: string;
2968
+ alt?: 'json' | 'media' | 'proto';
2938
2969
  /** JSONP */
2939
2970
  callback?: string;
2940
2971
  /** Selector specifying which fields to include in a partial response. */
@@ -2959,11 +2990,11 @@ declare namespace gapi.client {
2959
2990
  push(
2960
2991
  request: {
2961
2992
  /** V1 error format. */
2962
- '$.xgafv'?: string;
2993
+ '$.xgafv'?: '1' | '2';
2963
2994
  /** OAuth access token. */
2964
2995
  access_token?: string;
2965
2996
  /** Data format for response. */
2966
- alt?: string;
2997
+ alt?: 'json' | 'media' | 'proto';
2967
2998
  /** JSONP */
2968
2999
  callback?: string;
2969
3000
  /** Selector specifying which fields to include in a partial response. */
@@ -2988,11 +3019,11 @@ declare namespace gapi.client {
2988
3019
  /** Returns the contents of a given Workspace directory. */
2989
3020
  queryDirectoryContents(request?: {
2990
3021
  /** V1 error format. */
2991
- '$.xgafv'?: string;
3022
+ '$.xgafv'?: '1' | '2';
2992
3023
  /** OAuth access token. */
2993
3024
  access_token?: string;
2994
3025
  /** Data format for response. */
2995
- alt?: string;
3026
+ alt?: 'json' | 'media' | 'proto';
2996
3027
  /** JSONP */
2997
3028
  callback?: string;
2998
3029
  /** Selector specifying which fields to include in a partial response. */
@@ -3021,11 +3052,11 @@ declare namespace gapi.client {
3021
3052
  /** Returns the contents of a file (inside a Workspace). */
3022
3053
  readFile(request?: {
3023
3054
  /** V1 error format. */
3024
- '$.xgafv'?: string;
3055
+ '$.xgafv'?: '1' | '2';
3025
3056
  /** OAuth access token. */
3026
3057
  access_token?: string;
3027
3058
  /** Data format for response. */
3028
- alt?: string;
3059
+ alt?: 'json' | 'media' | 'proto';
3029
3060
  /** JSONP */
3030
3061
  callback?: string;
3031
3062
  /** Selector specifying which fields to include in a partial response. */
@@ -3052,11 +3083,11 @@ declare namespace gapi.client {
3052
3083
  /** Deletes a directory (inside a Workspace) and all of its contents. */
3053
3084
  removeDirectory(request: {
3054
3085
  /** V1 error format. */
3055
- '$.xgafv'?: string;
3086
+ '$.xgafv'?: '1' | '2';
3056
3087
  /** OAuth access token. */
3057
3088
  access_token?: string;
3058
3089
  /** Data format for response. */
3059
- alt?: string;
3090
+ alt?: 'json' | 'media' | 'proto';
3060
3091
  /** JSONP */
3061
3092
  callback?: string;
3062
3093
  /** Selector specifying which fields to include in a partial response. */
@@ -3081,11 +3112,11 @@ declare namespace gapi.client {
3081
3112
  removeDirectory(
3082
3113
  request: {
3083
3114
  /** V1 error format. */
3084
- '$.xgafv'?: string;
3115
+ '$.xgafv'?: '1' | '2';
3085
3116
  /** OAuth access token. */
3086
3117
  access_token?: string;
3087
3118
  /** Data format for response. */
3088
- alt?: string;
3119
+ alt?: 'json' | 'media' | 'proto';
3089
3120
  /** JSONP */
3090
3121
  callback?: string;
3091
3122
  /** Selector specifying which fields to include in a partial response. */
@@ -3110,11 +3141,11 @@ declare namespace gapi.client {
3110
3141
  /** Deletes a file (inside a Workspace). */
3111
3142
  removeFile(request: {
3112
3143
  /** V1 error format. */
3113
- '$.xgafv'?: string;
3144
+ '$.xgafv'?: '1' | '2';
3114
3145
  /** OAuth access token. */
3115
3146
  access_token?: string;
3116
3147
  /** Data format for response. */
3117
- alt?: string;
3148
+ alt?: 'json' | 'media' | 'proto';
3118
3149
  /** JSONP */
3119
3150
  callback?: string;
3120
3151
  /** Selector specifying which fields to include in a partial response. */
@@ -3139,11 +3170,11 @@ declare namespace gapi.client {
3139
3170
  removeFile(
3140
3171
  request: {
3141
3172
  /** V1 error format. */
3142
- '$.xgafv'?: string;
3173
+ '$.xgafv'?: '1' | '2';
3143
3174
  /** OAuth access token. */
3144
3175
  access_token?: string;
3145
3176
  /** Data format for response. */
3146
- alt?: string;
3177
+ alt?: 'json' | 'media' | 'proto';
3147
3178
  /** JSONP */
3148
3179
  callback?: string;
3149
3180
  /** Selector specifying which fields to include in a partial response. */
@@ -3168,11 +3199,11 @@ declare namespace gapi.client {
3168
3199
  /** Performs a Git reset for uncommitted files in a Workspace. */
3169
3200
  reset(request: {
3170
3201
  /** V1 error format. */
3171
- '$.xgafv'?: string;
3202
+ '$.xgafv'?: '1' | '2';
3172
3203
  /** OAuth access token. */
3173
3204
  access_token?: string;
3174
3205
  /** Data format for response. */
3175
- alt?: string;
3206
+ alt?: 'json' | 'media' | 'proto';
3176
3207
  /** JSONP */
3177
3208
  callback?: string;
3178
3209
  /** Selector specifying which fields to include in a partial response. */
@@ -3197,11 +3228,11 @@ declare namespace gapi.client {
3197
3228
  reset(
3198
3229
  request: {
3199
3230
  /** V1 error format. */
3200
- '$.xgafv'?: string;
3231
+ '$.xgafv'?: '1' | '2';
3201
3232
  /** OAuth access token. */
3202
3233
  access_token?: string;
3203
3234
  /** Data format for response. */
3204
- alt?: string;
3235
+ alt?: 'json' | 'media' | 'proto';
3205
3236
  /** JSONP */
3206
3237
  callback?: string;
3207
3238
  /** Selector specifying which fields to include in a partial response. */
@@ -3226,11 +3257,11 @@ declare namespace gapi.client {
3226
3257
  /** Finds the contents of a given Workspace directory by filter. */
3227
3258
  searchFiles(request?: {
3228
3259
  /** V1 error format. */
3229
- '$.xgafv'?: string;
3260
+ '$.xgafv'?: '1' | '2';
3230
3261
  /** OAuth access token. */
3231
3262
  access_token?: string;
3232
3263
  /** Data format for response. */
3233
- alt?: string;
3264
+ alt?: 'json' | 'media' | 'proto';
3234
3265
  /** JSONP */
3235
3266
  callback?: string;
3236
3267
  /** Selector specifying which fields to include in a partial response. */
@@ -3260,11 +3291,11 @@ declare namespace gapi.client {
3260
3291
  setIamPolicy(
3261
3292
  request: {
3262
3293
  /** V1 error format. */
3263
- '$.xgafv'?: string;
3294
+ '$.xgafv'?: '1' | '2';
3264
3295
  /** OAuth access token. */
3265
3296
  access_token?: string;
3266
3297
  /** Data format for response. */
3267
- alt?: string;
3298
+ alt?: 'json' | 'media' | 'proto';
3268
3299
  /** JSONP */
3269
3300
  callback?: string;
3270
3301
  /** Selector specifying which fields to include in a partial response. */
@@ -3290,11 +3321,11 @@ declare namespace gapi.client {
3290
3321
  testIamPermissions(
3291
3322
  request: {
3292
3323
  /** V1 error format. */
3293
- '$.xgafv'?: string;
3324
+ '$.xgafv'?: '1' | '2';
3294
3325
  /** OAuth access token. */
3295
3326
  access_token?: string;
3296
3327
  /** Data format for response. */
3297
- alt?: string;
3328
+ alt?: 'json' | 'media' | 'proto';
3298
3329
  /** JSONP */
3299
3330
  callback?: string;
3300
3331
  /** Selector specifying which fields to include in a partial response. */
@@ -3319,11 +3350,11 @@ declare namespace gapi.client {
3319
3350
  /** Writes to a file (inside a Workspace). */
3320
3351
  writeFile(request: {
3321
3352
  /** V1 error format. */
3322
- '$.xgafv'?: string;
3353
+ '$.xgafv'?: '1' | '2';
3323
3354
  /** OAuth access token. */
3324
3355
  access_token?: string;
3325
3356
  /** Data format for response. */
3326
- alt?: string;
3357
+ alt?: 'json' | 'media' | 'proto';
3327
3358
  /** JSONP */
3328
3359
  callback?: string;
3329
3360
  /** Selector specifying which fields to include in a partial response. */
@@ -3348,11 +3379,11 @@ declare namespace gapi.client {
3348
3379
  writeFile(
3349
3380
  request: {
3350
3381
  /** V1 error format. */
3351
- '$.xgafv'?: string;
3382
+ '$.xgafv'?: '1' | '2';
3352
3383
  /** OAuth access token. */
3353
3384
  access_token?: string;
3354
3385
  /** Data format for response. */
3355
- alt?: string;
3386
+ alt?: 'json' | 'media' | 'proto';
3356
3387
  /** JSONP */
3357
3388
  callback?: string;
3358
3389
  /** Selector specifying which fields to include in a partial response. */
@@ -3379,11 +3410,11 @@ declare namespace gapi.client {
3379
3410
  /** Applies a Git commit to a Repository. The Repository must not have a value for `git_remote_settings.url`. */
3380
3411
  commit(request: {
3381
3412
  /** V1 error format. */
3382
- '$.xgafv'?: string;
3413
+ '$.xgafv'?: '1' | '2';
3383
3414
  /** OAuth access token. */
3384
3415
  access_token?: string;
3385
3416
  /** Data format for response. */
3386
- alt?: string;
3417
+ alt?: 'json' | 'media' | 'proto';
3387
3418
  /** JSONP */
3388
3419
  callback?: string;
3389
3420
  /** Selector specifying which fields to include in a partial response. */
@@ -3408,11 +3439,11 @@ declare namespace gapi.client {
3408
3439
  commit(
3409
3440
  request: {
3410
3441
  /** V1 error format. */
3411
- '$.xgafv'?: string;
3442
+ '$.xgafv'?: '1' | '2';
3412
3443
  /** OAuth access token. */
3413
3444
  access_token?: string;
3414
3445
  /** Data format for response. */
3415
- alt?: string;
3446
+ alt?: 'json' | 'media' | 'proto';
3416
3447
  /** JSONP */
3417
3448
  callback?: string;
3418
3449
  /** Selector specifying which fields to include in a partial response. */
@@ -3437,11 +3468,11 @@ declare namespace gapi.client {
3437
3468
  /** Computes a Repository's Git access token status. */
3438
3469
  computeAccessTokenStatus(request?: {
3439
3470
  /** V1 error format. */
3440
- '$.xgafv'?: string;
3471
+ '$.xgafv'?: '1' | '2';
3441
3472
  /** OAuth access token. */
3442
3473
  access_token?: string;
3443
3474
  /** Data format for response. */
3444
- alt?: string;
3475
+ alt?: 'json' | 'media' | 'proto';
3445
3476
  /** JSONP */
3446
3477
  callback?: string;
3447
3478
  /** Selector specifying which fields to include in a partial response. */
@@ -3464,11 +3495,11 @@ declare namespace gapi.client {
3464
3495
  /** Creates a new Repository in a given project and location. */
3465
3496
  create(request: {
3466
3497
  /** V1 error format. */
3467
- '$.xgafv'?: string;
3498
+ '$.xgafv'?: '1' | '2';
3468
3499
  /** OAuth access token. */
3469
3500
  access_token?: string;
3470
3501
  /** Data format for response. */
3471
- alt?: string;
3502
+ alt?: 'json' | 'media' | 'proto';
3472
3503
  /** JSONP */
3473
3504
  callback?: string;
3474
3505
  /** Selector specifying which fields to include in a partial response. */
@@ -3495,11 +3526,11 @@ declare namespace gapi.client {
3495
3526
  create(
3496
3527
  request: {
3497
3528
  /** V1 error format. */
3498
- '$.xgafv'?: string;
3529
+ '$.xgafv'?: '1' | '2';
3499
3530
  /** OAuth access token. */
3500
3531
  access_token?: string;
3501
3532
  /** Data format for response. */
3502
- alt?: string;
3533
+ alt?: 'json' | 'media' | 'proto';
3503
3534
  /** JSONP */
3504
3535
  callback?: string;
3505
3536
  /** Selector specifying which fields to include in a partial response. */
@@ -3526,11 +3557,11 @@ declare namespace gapi.client {
3526
3557
  /** Deletes a single Repository. */
3527
3558
  delete(request?: {
3528
3559
  /** V1 error format. */
3529
- '$.xgafv'?: string;
3560
+ '$.xgafv'?: '1' | '2';
3530
3561
  /** OAuth access token. */
3531
3562
  access_token?: string;
3532
3563
  /** Data format for response. */
3533
- alt?: string;
3564
+ alt?: 'json' | 'media' | 'proto';
3534
3565
  /** JSONP */
3535
3566
  callback?: string;
3536
3567
  /** Selector specifying which fields to include in a partial response. */
@@ -3555,11 +3586,11 @@ declare namespace gapi.client {
3555
3586
  /** Fetches a Repository's history of commits. The Repository must not have a value for `git_remote_settings.url`. */
3556
3587
  fetchHistory(request?: {
3557
3588
  /** V1 error format. */
3558
- '$.xgafv'?: string;
3589
+ '$.xgafv'?: '1' | '2';
3559
3590
  /** OAuth access token. */
3560
3591
  access_token?: string;
3561
3592
  /** Data format for response. */
3562
- alt?: string;
3593
+ alt?: 'json' | 'media' | 'proto';
3563
3594
  /** JSONP */
3564
3595
  callback?: string;
3565
3596
  /** Selector specifying which fields to include in a partial response. */
@@ -3586,11 +3617,11 @@ declare namespace gapi.client {
3586
3617
  /** Fetches a Repository's remote branches. */
3587
3618
  fetchRemoteBranches(request?: {
3588
3619
  /** V1 error format. */
3589
- '$.xgafv'?: string;
3620
+ '$.xgafv'?: '1' | '2';
3590
3621
  /** OAuth access token. */
3591
3622
  access_token?: string;
3592
3623
  /** Data format for response. */
3593
- alt?: string;
3624
+ alt?: 'json' | 'media' | 'proto';
3594
3625
  /** JSONP */
3595
3626
  callback?: string;
3596
3627
  /** Selector specifying which fields to include in a partial response. */
@@ -3613,11 +3644,11 @@ declare namespace gapi.client {
3613
3644
  /** Fetches a single Repository. */
3614
3645
  get(request?: {
3615
3646
  /** V1 error format. */
3616
- '$.xgafv'?: string;
3647
+ '$.xgafv'?: '1' | '2';
3617
3648
  /** OAuth access token. */
3618
3649
  access_token?: string;
3619
3650
  /** Data format for response. */
3620
- alt?: string;
3651
+ alt?: 'json' | 'media' | 'proto';
3621
3652
  /** JSONP */
3622
3653
  callback?: string;
3623
3654
  /** Selector specifying which fields to include in a partial response. */
@@ -3640,11 +3671,11 @@ declare namespace gapi.client {
3640
3671
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3641
3672
  getIamPolicy(request?: {
3642
3673
  /** V1 error format. */
3643
- '$.xgafv'?: string;
3674
+ '$.xgafv'?: '1' | '2';
3644
3675
  /** OAuth access token. */
3645
3676
  access_token?: string;
3646
3677
  /** Data format for response. */
3647
- alt?: string;
3678
+ alt?: 'json' | 'media' | 'proto';
3648
3679
  /** JSONP */
3649
3680
  callback?: string;
3650
3681
  /** Selector specifying which fields to include in a partial response. */
@@ -3669,11 +3700,11 @@ declare namespace gapi.client {
3669
3700
  /** Lists Repositories in a given project and location. **Note:** *This method can return repositories not shown in the [Dataform UI](https://console.cloud.google.com/bigquery/dataform)*. */
3670
3701
  list(request?: {
3671
3702
  /** V1 error format. */
3672
- '$.xgafv'?: string;
3703
+ '$.xgafv'?: '1' | '2';
3673
3704
  /** OAuth access token. */
3674
3705
  access_token?: string;
3675
3706
  /** Data format for response. */
3676
- alt?: string;
3707
+ alt?: 'json' | 'media' | 'proto';
3677
3708
  /** JSONP */
3678
3709
  callback?: string;
3679
3710
  /** Selector specifying which fields to include in a partial response. */
@@ -3704,11 +3735,11 @@ declare namespace gapi.client {
3704
3735
  /** Moves a Repository to a new location. */
3705
3736
  move(request: {
3706
3737
  /** V1 error format. */
3707
- '$.xgafv'?: string;
3738
+ '$.xgafv'?: '1' | '2';
3708
3739
  /** OAuth access token. */
3709
3740
  access_token?: string;
3710
3741
  /** Data format for response. */
3711
- alt?: string;
3742
+ alt?: 'json' | 'media' | 'proto';
3712
3743
  /** JSONP */
3713
3744
  callback?: string;
3714
3745
  /** Selector specifying which fields to include in a partial response. */
@@ -3733,11 +3764,11 @@ declare namespace gapi.client {
3733
3764
  move(
3734
3765
  request: {
3735
3766
  /** V1 error format. */
3736
- '$.xgafv'?: string;
3767
+ '$.xgafv'?: '1' | '2';
3737
3768
  /** OAuth access token. */
3738
3769
  access_token?: string;
3739
3770
  /** Data format for response. */
3740
- alt?: string;
3771
+ alt?: 'json' | 'media' | 'proto';
3741
3772
  /** JSONP */
3742
3773
  callback?: string;
3743
3774
  /** Selector specifying which fields to include in a partial response. */
@@ -3762,11 +3793,11 @@ declare namespace gapi.client {
3762
3793
  /** Updates a single Repository. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.* */
3763
3794
  patch(request: {
3764
3795
  /** V1 error format. */
3765
- '$.xgafv'?: string;
3796
+ '$.xgafv'?: '1' | '2';
3766
3797
  /** OAuth access token. */
3767
3798
  access_token?: string;
3768
3799
  /** Data format for response. */
3769
- alt?: string;
3800
+ alt?: 'json' | 'media' | 'proto';
3770
3801
  /** JSONP */
3771
3802
  callback?: string;
3772
3803
  /** Selector specifying which fields to include in a partial response. */
@@ -3793,11 +3824,11 @@ declare namespace gapi.client {
3793
3824
  patch(
3794
3825
  request: {
3795
3826
  /** V1 error format. */
3796
- '$.xgafv'?: string;
3827
+ '$.xgafv'?: '1' | '2';
3797
3828
  /** OAuth access token. */
3798
3829
  access_token?: string;
3799
3830
  /** Data format for response. */
3800
- alt?: string;
3831
+ alt?: 'json' | 'media' | 'proto';
3801
3832
  /** JSONP */
3802
3833
  callback?: string;
3803
3834
  /** Selector specifying which fields to include in a partial response. */
@@ -3824,11 +3855,11 @@ declare namespace gapi.client {
3824
3855
  /** Returns the contents of a given Repository directory. The Repository must not have a value for `git_remote_settings.url`. */
3825
3856
  queryDirectoryContents(request?: {
3826
3857
  /** V1 error format. */
3827
- '$.xgafv'?: string;
3858
+ '$.xgafv'?: '1' | '2';
3828
3859
  /** OAuth access token. */
3829
3860
  access_token?: string;
3830
3861
  /** Data format for response. */
3831
- alt?: string;
3862
+ alt?: 'json' | 'media' | 'proto';
3832
3863
  /** JSONP */
3833
3864
  callback?: string;
3834
3865
  /** Optional. The Commit SHA for the commit to query from. If unset, the directory will be queried from HEAD. */
@@ -3859,11 +3890,11 @@ declare namespace gapi.client {
3859
3890
  /** Returns the contents of a file (inside a Repository). The Repository must not have a value for `git_remote_settings.url`. */
3860
3891
  readFile(request?: {
3861
3892
  /** V1 error format. */
3862
- '$.xgafv'?: string;
3893
+ '$.xgafv'?: '1' | '2';
3863
3894
  /** OAuth access token. */
3864
3895
  access_token?: string;
3865
3896
  /** Data format for response. */
3866
- alt?: string;
3897
+ alt?: 'json' | 'media' | 'proto';
3867
3898
  /** JSONP */
3868
3899
  callback?: string;
3869
3900
  /** Optional. The commit SHA for the commit to read from. If unset, the file will be read from HEAD. */
@@ -3891,11 +3922,11 @@ declare namespace gapi.client {
3891
3922
  setIamPolicy(
3892
3923
  request: {
3893
3924
  /** V1 error format. */
3894
- '$.xgafv'?: string;
3925
+ '$.xgafv'?: '1' | '2';
3895
3926
  /** OAuth access token. */
3896
3927
  access_token?: string;
3897
3928
  /** Data format for response. */
3898
- alt?: string;
3929
+ alt?: 'json' | 'media' | 'proto';
3899
3930
  /** JSONP */
3900
3931
  callback?: string;
3901
3932
  /** Selector specifying which fields to include in a partial response. */
@@ -3921,11 +3952,11 @@ declare namespace gapi.client {
3921
3952
  testIamPermissions(
3922
3953
  request: {
3923
3954
  /** V1 error format. */
3924
- '$.xgafv'?: string;
3955
+ '$.xgafv'?: '1' | '2';
3925
3956
  /** OAuth access token. */
3926
3957
  access_token?: string;
3927
3958
  /** Data format for response. */
3928
- alt?: string;
3959
+ alt?: 'json' | 'media' | 'proto';
3929
3960
  /** JSONP */
3930
3961
  callback?: string;
3931
3962
  /** Selector specifying which fields to include in a partial response. */
@@ -3957,11 +3988,11 @@ declare namespace gapi.client {
3957
3988
  /** Creates a new TeamFolder in a given project and location. */
3958
3989
  create(request: {
3959
3990
  /** V1 error format. */
3960
- '$.xgafv'?: string;
3991
+ '$.xgafv'?: '1' | '2';
3961
3992
  /** OAuth access token. */
3962
3993
  access_token?: string;
3963
3994
  /** Data format for response. */
3964
- alt?: string;
3995
+ alt?: 'json' | 'media' | 'proto';
3965
3996
  /** JSONP */
3966
3997
  callback?: string;
3967
3998
  /** Selector specifying which fields to include in a partial response. */
@@ -3988,11 +4019,11 @@ declare namespace gapi.client {
3988
4019
  create(
3989
4020
  request: {
3990
4021
  /** V1 error format. */
3991
- '$.xgafv'?: string;
4022
+ '$.xgafv'?: '1' | '2';
3992
4023
  /** OAuth access token. */
3993
4024
  access_token?: string;
3994
4025
  /** Data format for response. */
3995
- alt?: string;
4026
+ alt?: 'json' | 'media' | 'proto';
3996
4027
  /** JSONP */
3997
4028
  callback?: string;
3998
4029
  /** Selector specifying which fields to include in a partial response. */
@@ -4019,11 +4050,11 @@ declare namespace gapi.client {
4019
4050
  /** Deletes a single TeamFolder. */
4020
4051
  delete(request?: {
4021
4052
  /** V1 error format. */
4022
- '$.xgafv'?: string;
4053
+ '$.xgafv'?: '1' | '2';
4023
4054
  /** OAuth access token. */
4024
4055
  access_token?: string;
4025
4056
  /** Data format for response. */
4026
- alt?: string;
4057
+ alt?: 'json' | 'media' | 'proto';
4027
4058
  /** JSONP */
4028
4059
  callback?: string;
4029
4060
  /** Selector specifying which fields to include in a partial response. */
@@ -4046,11 +4077,11 @@ declare namespace gapi.client {
4046
4077
  /** Fetches a single TeamFolder. */
4047
4078
  get(request?: {
4048
4079
  /** V1 error format. */
4049
- '$.xgafv'?: string;
4080
+ '$.xgafv'?: '1' | '2';
4050
4081
  /** OAuth access token. */
4051
4082
  access_token?: string;
4052
4083
  /** Data format for response. */
4053
- alt?: string;
4084
+ alt?: 'json' | 'media' | 'proto';
4054
4085
  /** JSONP */
4055
4086
  callback?: string;
4056
4087
  /** Selector specifying which fields to include in a partial response. */
@@ -4073,11 +4104,11 @@ declare namespace gapi.client {
4073
4104
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
4074
4105
  getIamPolicy(request?: {
4075
4106
  /** V1 error format. */
4076
- '$.xgafv'?: string;
4107
+ '$.xgafv'?: '1' | '2';
4077
4108
  /** OAuth access token. */
4078
4109
  access_token?: string;
4079
4110
  /** Data format for response. */
4080
- alt?: string;
4111
+ alt?: 'json' | 'media' | 'proto';
4081
4112
  /** JSONP */
4082
4113
  callback?: string;
4083
4114
  /** Selector specifying which fields to include in a partial response. */
@@ -4102,11 +4133,11 @@ declare namespace gapi.client {
4102
4133
  /** Updates a single TeamFolder. */
4103
4134
  patch(request: {
4104
4135
  /** V1 error format. */
4105
- '$.xgafv'?: string;
4136
+ '$.xgafv'?: '1' | '2';
4106
4137
  /** OAuth access token. */
4107
4138
  access_token?: string;
4108
4139
  /** Data format for response. */
4109
- alt?: string;
4140
+ alt?: 'json' | 'media' | 'proto';
4110
4141
  /** JSONP */
4111
4142
  callback?: string;
4112
4143
  /** Selector specifying which fields to include in a partial response. */
@@ -4133,11 +4164,11 @@ declare namespace gapi.client {
4133
4164
  patch(
4134
4165
  request: {
4135
4166
  /** V1 error format. */
4136
- '$.xgafv'?: string;
4167
+ '$.xgafv'?: '1' | '2';
4137
4168
  /** OAuth access token. */
4138
4169
  access_token?: string;
4139
4170
  /** Data format for response. */
4140
- alt?: string;
4171
+ alt?: 'json' | 'media' | 'proto';
4141
4172
  /** JSONP */
4142
4173
  callback?: string;
4143
4174
  /** Selector specifying which fields to include in a partial response. */
@@ -4164,11 +4195,11 @@ declare namespace gapi.client {
4164
4195
  /** Returns the contents of a given TeamFolder. */
4165
4196
  queryContents(request?: {
4166
4197
  /** V1 error format. */
4167
- '$.xgafv'?: string;
4198
+ '$.xgafv'?: '1' | '2';
4168
4199
  /** OAuth access token. */
4169
4200
  access_token?: string;
4170
4201
  /** Data format for response. */
4171
- alt?: string;
4202
+ alt?: 'json' | 'media' | 'proto';
4172
4203
  /** JSONP */
4173
4204
  callback?: string;
4174
4205
  /** Selector specifying which fields to include in a partial response. */
@@ -4199,11 +4230,11 @@ declare namespace gapi.client {
4199
4230
  /** Returns all TeamFolders in a given location that the caller has access to and match the provided filter. */
4200
4231
  search(request?: {
4201
4232
  /** V1 error format. */
4202
- '$.xgafv'?: string;
4233
+ '$.xgafv'?: '1' | '2';
4203
4234
  /** OAuth access token. */
4204
4235
  access_token?: string;
4205
4236
  /** Data format for response. */
4206
- alt?: string;
4237
+ alt?: 'json' | 'media' | 'proto';
4207
4238
  /** JSONP */
4208
4239
  callback?: string;
4209
4240
  /** Selector specifying which fields to include in a partial response. */
@@ -4235,11 +4266,11 @@ declare namespace gapi.client {
4235
4266
  setIamPolicy(
4236
4267
  request: {
4237
4268
  /** V1 error format. */
4238
- '$.xgafv'?: string;
4269
+ '$.xgafv'?: '1' | '2';
4239
4270
  /** OAuth access token. */
4240
4271
  access_token?: string;
4241
4272
  /** Data format for response. */
4242
- alt?: string;
4273
+ alt?: 'json' | 'media' | 'proto';
4243
4274
  /** JSONP */
4244
4275
  callback?: string;
4245
4276
  /** Selector specifying which fields to include in a partial response. */
@@ -4265,11 +4296,11 @@ declare namespace gapi.client {
4265
4296
  testIamPermissions(
4266
4297
  request: {
4267
4298
  /** V1 error format. */
4268
- '$.xgafv'?: string;
4299
+ '$.xgafv'?: '1' | '2';
4269
4300
  /** OAuth access token. */
4270
4301
  access_token?: string;
4271
4302
  /** Data format for response. */
4272
- alt?: string;
4303
+ alt?: 'json' | 'media' | 'proto';
4273
4304
  /** JSONP */
4274
4305
  callback?: string;
4275
4306
  /** Selector specifying which fields to include in a partial response. */
@@ -4296,11 +4327,11 @@ declare namespace gapi.client {
4296
4327
  /** Gets information about a location. */
4297
4328
  get(request?: {
4298
4329
  /** V1 error format. */
4299
- '$.xgafv'?: string;
4330
+ '$.xgafv'?: '1' | '2';
4300
4331
  /** OAuth access token. */
4301
4332
  access_token?: string;
4302
4333
  /** Data format for response. */
4303
- alt?: string;
4334
+ alt?: 'json' | 'media' | 'proto';
4304
4335
  /** JSONP */
4305
4336
  callback?: string;
4306
4337
  /** Selector specifying which fields to include in a partial response. */
@@ -4323,11 +4354,11 @@ declare namespace gapi.client {
4323
4354
  /** Get default config for a given project and location. */
4324
4355
  getConfig(request?: {
4325
4356
  /** V1 error format. */
4326
- '$.xgafv'?: string;
4357
+ '$.xgafv'?: '1' | '2';
4327
4358
  /** OAuth access token. */
4328
4359
  access_token?: string;
4329
4360
  /** Data format for response. */
4330
- alt?: string;
4361
+ alt?: 'json' | 'media' | 'proto';
4331
4362
  /** JSONP */
4332
4363
  callback?: string;
4333
4364
  /** Selector specifying which fields to include in a partial response. */
@@ -4350,11 +4381,11 @@ declare namespace gapi.client {
4350
4381
  /** 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. */
4351
4382
  list(request?: {
4352
4383
  /** V1 error format. */
4353
- '$.xgafv'?: string;
4384
+ '$.xgafv'?: '1' | '2';
4354
4385
  /** OAuth access token. */
4355
4386
  access_token?: string;
4356
4387
  /** Data format for response. */
4357
- alt?: string;
4388
+ alt?: 'json' | 'media' | 'proto';
4358
4389
  /** JSONP */
4359
4390
  callback?: string;
4360
4391
  /** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
@@ -4385,11 +4416,11 @@ declare namespace gapi.client {
4385
4416
  /** Returns the contents of a caller's root folder in a given location. The root folder contains all resources that are created by the user and not contained in any other folder. */
4386
4417
  queryUserRootContents(request?: {
4387
4418
  /** V1 error format. */
4388
- '$.xgafv'?: string;
4419
+ '$.xgafv'?: '1' | '2';
4389
4420
  /** OAuth access token. */
4390
4421
  access_token?: string;
4391
4422
  /** Data format for response. */
4392
- alt?: string;
4423
+ alt?: 'json' | 'media' | 'proto';
4393
4424
  /** JSONP */
4394
4425
  callback?: string;
4395
4426
  /** Selector specifying which fields to include in a partial response. */
@@ -4420,11 +4451,11 @@ declare namespace gapi.client {
4420
4451
  /** Update default config for a given project and location. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.* */
4421
4452
  updateConfig(request: {
4422
4453
  /** V1 error format. */
4423
- '$.xgafv'?: string;
4454
+ '$.xgafv'?: '1' | '2';
4424
4455
  /** OAuth access token. */
4425
4456
  access_token?: string;
4426
4457
  /** Data format for response. */
4427
- alt?: string;
4458
+ alt?: 'json' | 'media' | 'proto';
4428
4459
  /** JSONP */
4429
4460
  callback?: string;
4430
4461
  /** Selector specifying which fields to include in a partial response. */
@@ -4451,11 +4482,11 @@ declare namespace gapi.client {
4451
4482
  updateConfig(
4452
4483
  request: {
4453
4484
  /** V1 error format. */
4454
- '$.xgafv'?: string;
4485
+ '$.xgafv'?: '1' | '2';
4455
4486
  /** OAuth access token. */
4456
4487
  access_token?: string;
4457
4488
  /** Data format for response. */
4458
- alt?: string;
4489
+ alt?: 'json' | 'media' | 'proto';
4459
4490
  /** JSONP */
4460
4491
  callback?: string;
4461
4492
  /** Selector specifying which fields to include in a partial response. */