@googleapis/storage 0.2.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/v1.d.ts CHANGED
@@ -34,6 +34,10 @@ export declare namespace storage_v1 {
34
34
  * An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
35
35
  */
36
36
  quotaUser?: string;
37
+ /**
38
+ * Upload protocol for media (e.g. "media", "multipart", "resumable").
39
+ */
40
+ uploadType?: string;
37
41
  /**
38
42
  * Deprecated. Please use quotaUser instead.
39
43
  */
@@ -70,6 +74,13 @@ export declare namespace storage_v1 {
70
74
  * Access controls on the bucket.
71
75
  */
72
76
  acl?: Schema$BucketAccessControl[];
77
+ /**
78
+ * The bucket's Autoclass configuration.
79
+ */
80
+ autoclass?: {
81
+ enabled?: boolean;
82
+ toggleTime?: string;
83
+ } | null;
73
84
  /**
74
85
  * The bucket's billing configuration.
75
86
  */
@@ -196,6 +207,10 @@ export declare namespace storage_v1 {
196
207
  isLocked?: boolean;
197
208
  retentionPeriod?: string;
198
209
  } | null;
210
+ /**
211
+ * The Recovery Point Objective (RPO) of this bucket. Set to ASYNC_TURBO to turn on Turbo Replication on a bucket.
212
+ */
213
+ rpo?: string | null;
199
214
  /**
200
215
  * Reserved for future use.
201
216
  */
@@ -229,10 +244,6 @@ export declare namespace storage_v1 {
229
244
  mainPageSuffix?: string;
230
245
  notFoundPage?: string;
231
246
  } | null;
232
- /**
233
- * The zone or zones from which the bucket is intended to use zonal quota. Requests for data from outside the specified affinities are still allowed but won't be able to use zonal quota. The zone or zones need to be within the bucket location otherwise the requests will fail with a 400 Bad Request response.
234
- */
235
- zoneAffinity?: string[] | null;
236
247
  }
237
248
  /**
238
249
  * An access-control entry.
@@ -934,8 +945,6 @@ export declare namespace storage_v1 {
934
945
  * bucket: 'placeholder-value',
935
946
  * // The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
936
947
  * entity: 'placeholder-value',
937
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
938
- * provisionalUserProject: 'placeholder-value',
939
948
  * // The project to be billed for this request. Required for Requester Pays buckets.
940
949
  * userProject: 'placeholder-value',
941
950
  * });
@@ -994,8 +1003,6 @@ export declare namespace storage_v1 {
994
1003
  * bucket: 'placeholder-value',
995
1004
  * // The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
996
1005
  * entity: 'placeholder-value',
997
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
998
- * provisionalUserProject: 'placeholder-value',
999
1006
  * // The project to be billed for this request. Required for Requester Pays buckets.
1000
1007
  * userProject: 'placeholder-value',
1001
1008
  * });
@@ -1067,8 +1074,6 @@ export declare namespace storage_v1 {
1067
1074
  * const res = await storage.bucketAccessControls.insert({
1068
1075
  * // Name of a bucket.
1069
1076
  * bucket: 'placeholder-value',
1070
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1071
- * provisionalUserProject: 'placeholder-value',
1072
1077
  * // The project to be billed for this request. Required for Requester Pays buckets.
1073
1078
  * userProject: 'placeholder-value',
1074
1079
  *
@@ -1158,8 +1163,6 @@ export declare namespace storage_v1 {
1158
1163
  * const res = await storage.bucketAccessControls.list({
1159
1164
  * // Name of a bucket.
1160
1165
  * bucket: 'placeholder-value',
1161
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1162
- * provisionalUserProject: 'placeholder-value',
1163
1166
  * // The project to be billed for this request. Required for Requester Pays buckets.
1164
1167
  * userProject: 'placeholder-value',
1165
1168
  * });
@@ -1224,8 +1227,6 @@ export declare namespace storage_v1 {
1224
1227
  * bucket: 'placeholder-value',
1225
1228
  * // The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
1226
1229
  * entity: 'placeholder-value',
1227
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1228
- * provisionalUserProject: 'placeholder-value',
1229
1230
  * // The project to be billed for this request. Required for Requester Pays buckets.
1230
1231
  * userProject: 'placeholder-value',
1231
1232
  *
@@ -1317,8 +1318,6 @@ export declare namespace storage_v1 {
1317
1318
  * bucket: 'placeholder-value',
1318
1319
  * // The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
1319
1320
  * entity: 'placeholder-value',
1320
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1321
- * provisionalUserProject: 'placeholder-value',
1322
1321
  * // The project to be billed for this request. Required for Requester Pays buckets.
1323
1322
  * userProject: 'placeholder-value',
1324
1323
  *
@@ -1386,10 +1385,6 @@ export declare namespace storage_v1 {
1386
1385
  * The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
1387
1386
  */
1388
1387
  entity?: string;
1389
- /**
1390
- * The project to be billed for this request if the target bucket is requester-pays bucket.
1391
- */
1392
- provisionalUserProject?: string;
1393
1388
  /**
1394
1389
  * The project to be billed for this request. Required for Requester Pays buckets.
1395
1390
  */
@@ -1404,10 +1399,6 @@ export declare namespace storage_v1 {
1404
1399
  * The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
1405
1400
  */
1406
1401
  entity?: string;
1407
- /**
1408
- * The project to be billed for this request if the target bucket is requester-pays bucket.
1409
- */
1410
- provisionalUserProject?: string;
1411
1402
  /**
1412
1403
  * The project to be billed for this request. Required for Requester Pays buckets.
1413
1404
  */
@@ -1418,10 +1409,6 @@ export declare namespace storage_v1 {
1418
1409
  * Name of a bucket.
1419
1410
  */
1420
1411
  bucket?: string;
1421
- /**
1422
- * The project to be billed for this request if the target bucket is requester-pays bucket.
1423
- */
1424
- provisionalUserProject?: string;
1425
1412
  /**
1426
1413
  * The project to be billed for this request. Required for Requester Pays buckets.
1427
1414
  */
@@ -1436,10 +1423,6 @@ export declare namespace storage_v1 {
1436
1423
  * Name of a bucket.
1437
1424
  */
1438
1425
  bucket?: string;
1439
- /**
1440
- * The project to be billed for this request if the target bucket is requester-pays bucket.
1441
- */
1442
- provisionalUserProject?: string;
1443
1426
  /**
1444
1427
  * The project to be billed for this request. Required for Requester Pays buckets.
1445
1428
  */
@@ -1454,10 +1437,6 @@ export declare namespace storage_v1 {
1454
1437
  * The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
1455
1438
  */
1456
1439
  entity?: string;
1457
- /**
1458
- * The project to be billed for this request if the target bucket is requester-pays bucket.
1459
- */
1460
- provisionalUserProject?: string;
1461
1440
  /**
1462
1441
  * The project to be billed for this request. Required for Requester Pays buckets.
1463
1442
  */
@@ -1476,10 +1455,6 @@ export declare namespace storage_v1 {
1476
1455
  * The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
1477
1456
  */
1478
1457
  entity?: string;
1479
- /**
1480
- * The project to be billed for this request if the target bucket is requester-pays bucket.
1481
- */
1482
- provisionalUserProject?: string;
1483
1458
  /**
1484
1459
  * The project to be billed for this request. Required for Requester Pays buckets.
1485
1460
  */
@@ -1529,8 +1504,6 @@ export declare namespace storage_v1 {
1529
1504
  * ifMetagenerationMatch: 'placeholder-value',
1530
1505
  * // If set, only deletes the bucket if its metageneration does not match this value.
1531
1506
  * ifMetagenerationNotMatch: 'placeholder-value',
1532
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1533
- * provisionalUserProject: 'placeholder-value',
1534
1507
  * // The project to be billed for this request. Required for Requester Pays buckets.
1535
1508
  * userProject: 'placeholder-value',
1536
1509
  * });
@@ -1596,8 +1569,6 @@ export declare namespace storage_v1 {
1596
1569
  * ifMetagenerationNotMatch: 'placeholder-value',
1597
1570
  * // Set of properties to return. Defaults to noAcl.
1598
1571
  * projection: 'placeholder-value',
1599
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1600
- * provisionalUserProject: 'placeholder-value',
1601
1572
  * // The project to be billed for this request. Required for Requester Pays buckets.
1602
1573
  * userProject: 'placeholder-value',
1603
1574
  * });
@@ -1606,6 +1577,7 @@ export declare namespace storage_v1 {
1606
1577
  * // Example response
1607
1578
  * // {
1608
1579
  * // "acl": [],
1580
+ * // "autoclass": {},
1609
1581
  * // "billing": {},
1610
1582
  * // "cors": [],
1611
1583
  * // "defaultEventBasedHold": false,
@@ -1625,14 +1597,14 @@ export declare namespace storage_v1 {
1625
1597
  * // "owner": {},
1626
1598
  * // "projectNumber": "my_projectNumber",
1627
1599
  * // "retentionPolicy": {},
1600
+ * // "rpo": "my_rpo",
1628
1601
  * // "satisfiesPZS": false,
1629
1602
  * // "selfLink": "my_selfLink",
1630
1603
  * // "storageClass": "my_storageClass",
1631
1604
  * // "timeCreated": "my_timeCreated",
1632
1605
  * // "updated": "my_updated",
1633
1606
  * // "versioning": {},
1634
- * // "website": {},
1635
- * // "zoneAffinity": []
1607
+ * // "website": {}
1636
1608
  * // }
1637
1609
  * }
1638
1610
  *
@@ -1688,8 +1660,6 @@ export declare namespace storage_v1 {
1688
1660
  * bucket: 'placeholder-value',
1689
1661
  * // The IAM policy format version to be returned. If the optionsRequestedPolicyVersion is for an older version that doesn't support part of the requested IAM policy, the request fails.
1690
1662
  * optionsRequestedPolicyVersion: 'placeholder-value',
1691
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1692
- * provisionalUserProject: 'placeholder-value',
1693
1663
  * // The project to be billed for this request. Required for Requester Pays buckets.
1694
1664
  * userProject: 'placeholder-value',
1695
1665
  * });
@@ -1762,8 +1732,6 @@ export declare namespace storage_v1 {
1762
1732
  * project: 'placeholder-value',
1763
1733
  * // Set of properties to return. Defaults to noAcl, unless the bucket resource specifies acl or defaultObjectAcl properties, when it defaults to full.
1764
1734
  * projection: 'placeholder-value',
1765
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1766
- * provisionalUserProject: 'placeholder-value',
1767
1735
  * // The project to be billed for this request.
1768
1736
  * userProject: 'placeholder-value',
1769
1737
  *
@@ -1772,6 +1740,7 @@ export declare namespace storage_v1 {
1772
1740
  * // request body parameters
1773
1741
  * // {
1774
1742
  * // "acl": [],
1743
+ * // "autoclass": {},
1775
1744
  * // "billing": {},
1776
1745
  * // "cors": [],
1777
1746
  * // "defaultEventBasedHold": false,
@@ -1791,14 +1760,14 @@ export declare namespace storage_v1 {
1791
1760
  * // "owner": {},
1792
1761
  * // "projectNumber": "my_projectNumber",
1793
1762
  * // "retentionPolicy": {},
1763
+ * // "rpo": "my_rpo",
1794
1764
  * // "satisfiesPZS": false,
1795
1765
  * // "selfLink": "my_selfLink",
1796
1766
  * // "storageClass": "my_storageClass",
1797
1767
  * // "timeCreated": "my_timeCreated",
1798
1768
  * // "updated": "my_updated",
1799
1769
  * // "versioning": {},
1800
- * // "website": {},
1801
- * // "zoneAffinity": []
1770
+ * // "website": {}
1802
1771
  * // }
1803
1772
  * },
1804
1773
  * });
@@ -1807,6 +1776,7 @@ export declare namespace storage_v1 {
1807
1776
  * // Example response
1808
1777
  * // {
1809
1778
  * // "acl": [],
1779
+ * // "autoclass": {},
1810
1780
  * // "billing": {},
1811
1781
  * // "cors": [],
1812
1782
  * // "defaultEventBasedHold": false,
@@ -1826,14 +1796,14 @@ export declare namespace storage_v1 {
1826
1796
  * // "owner": {},
1827
1797
  * // "projectNumber": "my_projectNumber",
1828
1798
  * // "retentionPolicy": {},
1799
+ * // "rpo": "my_rpo",
1829
1800
  * // "satisfiesPZS": false,
1830
1801
  * // "selfLink": "my_selfLink",
1831
1802
  * // "storageClass": "my_storageClass",
1832
1803
  * // "timeCreated": "my_timeCreated",
1833
1804
  * // "updated": "my_updated",
1834
1805
  * // "versioning": {},
1835
- * // "website": {},
1836
- * // "zoneAffinity": []
1806
+ * // "website": {}
1837
1807
  * // }
1838
1808
  * }
1839
1809
  *
@@ -1898,8 +1868,6 @@ export declare namespace storage_v1 {
1898
1868
  * project: 'placeholder-value',
1899
1869
  * // Set of properties to return. Defaults to noAcl.
1900
1870
  * projection: 'placeholder-value',
1901
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1902
- * provisionalUserProject: 'placeholder-value',
1903
1871
  * // The project to be billed for this request.
1904
1872
  * userProject: 'placeholder-value',
1905
1873
  * });
@@ -1966,8 +1934,6 @@ export declare namespace storage_v1 {
1966
1934
  * bucket: 'placeholder-value',
1967
1935
  * // Makes the operation conditional on whether bucket's current metageneration matches the given value.
1968
1936
  * ifMetagenerationMatch: 'placeholder-value',
1969
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
1970
- * provisionalUserProject: 'placeholder-value',
1971
1937
  * // The project to be billed for this request. Required for Requester Pays buckets.
1972
1938
  * userProject: 'placeholder-value',
1973
1939
  * });
@@ -1976,6 +1942,7 @@ export declare namespace storage_v1 {
1976
1942
  * // Example response
1977
1943
  * // {
1978
1944
  * // "acl": [],
1945
+ * // "autoclass": {},
1979
1946
  * // "billing": {},
1980
1947
  * // "cors": [],
1981
1948
  * // "defaultEventBasedHold": false,
@@ -1995,14 +1962,14 @@ export declare namespace storage_v1 {
1995
1962
  * // "owner": {},
1996
1963
  * // "projectNumber": "my_projectNumber",
1997
1964
  * // "retentionPolicy": {},
1965
+ * // "rpo": "my_rpo",
1998
1966
  * // "satisfiesPZS": false,
1999
1967
  * // "selfLink": "my_selfLink",
2000
1968
  * // "storageClass": "my_storageClass",
2001
1969
  * // "timeCreated": "my_timeCreated",
2002
1970
  * // "updated": "my_updated",
2003
1971
  * // "versioning": {},
2004
- * // "website": {},
2005
- * // "zoneAffinity": []
1972
+ * // "website": {}
2006
1973
  * // }
2007
1974
  * }
2008
1975
  *
@@ -2066,8 +2033,6 @@ export declare namespace storage_v1 {
2066
2033
  * predefinedDefaultObjectAcl: 'placeholder-value',
2067
2034
  * // Set of properties to return. Defaults to full.
2068
2035
  * projection: 'placeholder-value',
2069
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
2070
- * provisionalUserProject: 'placeholder-value',
2071
2036
  * // The project to be billed for this request. Required for Requester Pays buckets.
2072
2037
  * userProject: 'placeholder-value',
2073
2038
  *
@@ -2076,6 +2041,7 @@ export declare namespace storage_v1 {
2076
2041
  * // request body parameters
2077
2042
  * // {
2078
2043
  * // "acl": [],
2044
+ * // "autoclass": {},
2079
2045
  * // "billing": {},
2080
2046
  * // "cors": [],
2081
2047
  * // "defaultEventBasedHold": false,
@@ -2095,14 +2061,14 @@ export declare namespace storage_v1 {
2095
2061
  * // "owner": {},
2096
2062
  * // "projectNumber": "my_projectNumber",
2097
2063
  * // "retentionPolicy": {},
2064
+ * // "rpo": "my_rpo",
2098
2065
  * // "satisfiesPZS": false,
2099
2066
  * // "selfLink": "my_selfLink",
2100
2067
  * // "storageClass": "my_storageClass",
2101
2068
  * // "timeCreated": "my_timeCreated",
2102
2069
  * // "updated": "my_updated",
2103
2070
  * // "versioning": {},
2104
- * // "website": {},
2105
- * // "zoneAffinity": []
2071
+ * // "website": {}
2106
2072
  * // }
2107
2073
  * },
2108
2074
  * });
@@ -2111,6 +2077,7 @@ export declare namespace storage_v1 {
2111
2077
  * // Example response
2112
2078
  * // {
2113
2079
  * // "acl": [],
2080
+ * // "autoclass": {},
2114
2081
  * // "billing": {},
2115
2082
  * // "cors": [],
2116
2083
  * // "defaultEventBasedHold": false,
@@ -2130,14 +2097,14 @@ export declare namespace storage_v1 {
2130
2097
  * // "owner": {},
2131
2098
  * // "projectNumber": "my_projectNumber",
2132
2099
  * // "retentionPolicy": {},
2100
+ * // "rpo": "my_rpo",
2133
2101
  * // "satisfiesPZS": false,
2134
2102
  * // "selfLink": "my_selfLink",
2135
2103
  * // "storageClass": "my_storageClass",
2136
2104
  * // "timeCreated": "my_timeCreated",
2137
2105
  * // "updated": "my_updated",
2138
2106
  * // "versioning": {},
2139
- * // "website": {},
2140
- * // "zoneAffinity": []
2107
+ * // "website": {}
2141
2108
  * // }
2142
2109
  * }
2143
2110
  *
@@ -2191,8 +2158,6 @@ export declare namespace storage_v1 {
2191
2158
  * const res = await storage.buckets.setIamPolicy({
2192
2159
  * // Name of a bucket.
2193
2160
  * bucket: 'placeholder-value',
2194
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
2195
- * provisionalUserProject: 'placeholder-value',
2196
2161
  * // The project to be billed for this request. Required for Requester Pays buckets.
2197
2162
  * userProject: 'placeholder-value',
2198
2163
  *
@@ -2275,8 +2240,6 @@ export declare namespace storage_v1 {
2275
2240
  * bucket: 'placeholder-value',
2276
2241
  * // Permissions to test.
2277
2242
  * permissions: 'placeholder-value',
2278
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
2279
- * provisionalUserProject: 'placeholder-value',
2280
2243
  * // The project to be billed for this request. Required for Requester Pays buckets.
2281
2244
  * userProject: 'placeholder-value',
2282
2245
  * });
@@ -2349,8 +2312,6 @@ export declare namespace storage_v1 {
2349
2312
  * predefinedDefaultObjectAcl: 'placeholder-value',
2350
2313
  * // Set of properties to return. Defaults to full.
2351
2314
  * projection: 'placeholder-value',
2352
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
2353
- * provisionalUserProject: 'placeholder-value',
2354
2315
  * // The project to be billed for this request. Required for Requester Pays buckets.
2355
2316
  * userProject: 'placeholder-value',
2356
2317
  *
@@ -2359,6 +2320,7 @@ export declare namespace storage_v1 {
2359
2320
  * // request body parameters
2360
2321
  * // {
2361
2322
  * // "acl": [],
2323
+ * // "autoclass": {},
2362
2324
  * // "billing": {},
2363
2325
  * // "cors": [],
2364
2326
  * // "defaultEventBasedHold": false,
@@ -2378,14 +2340,14 @@ export declare namespace storage_v1 {
2378
2340
  * // "owner": {},
2379
2341
  * // "projectNumber": "my_projectNumber",
2380
2342
  * // "retentionPolicy": {},
2343
+ * // "rpo": "my_rpo",
2381
2344
  * // "satisfiesPZS": false,
2382
2345
  * // "selfLink": "my_selfLink",
2383
2346
  * // "storageClass": "my_storageClass",
2384
2347
  * // "timeCreated": "my_timeCreated",
2385
2348
  * // "updated": "my_updated",
2386
2349
  * // "versioning": {},
2387
- * // "website": {},
2388
- * // "zoneAffinity": []
2350
+ * // "website": {}
2389
2351
  * // }
2390
2352
  * },
2391
2353
  * });
@@ -2394,6 +2356,7 @@ export declare namespace storage_v1 {
2394
2356
  * // Example response
2395
2357
  * // {
2396
2358
  * // "acl": [],
2359
+ * // "autoclass": {},
2397
2360
  * // "billing": {},
2398
2361
  * // "cors": [],
2399
2362
  * // "defaultEventBasedHold": false,
@@ -2413,14 +2376,14 @@ export declare namespace storage_v1 {
2413
2376
  * // "owner": {},
2414
2377
  * // "projectNumber": "my_projectNumber",
2415
2378
  * // "retentionPolicy": {},
2379
+ * // "rpo": "my_rpo",
2416
2380
  * // "satisfiesPZS": false,
2417
2381
  * // "selfLink": "my_selfLink",
2418
2382
  * // "storageClass": "my_storageClass",
2419
2383
  * // "timeCreated": "my_timeCreated",
2420
2384
  * // "updated": "my_updated",
2421
2385
  * // "versioning": {},
2422
- * // "website": {},
2423
- * // "zoneAffinity": []
2386
+ * // "website": {}
2424
2387
  * // }
2425
2388
  * }
2426
2389
  *
@@ -2456,10 +2419,6 @@ export declare namespace storage_v1 {
2456
2419
  * If set, only deletes the bucket if its metageneration does not match this value.
2457
2420
  */
2458
2421
  ifMetagenerationNotMatch?: string;
2459
- /**
2460
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2461
- */
2462
- provisionalUserProject?: string;
2463
2422
  /**
2464
2423
  * The project to be billed for this request. Required for Requester Pays buckets.
2465
2424
  */
@@ -2482,10 +2441,6 @@ export declare namespace storage_v1 {
2482
2441
  * Set of properties to return. Defaults to noAcl.
2483
2442
  */
2484
2443
  projection?: string;
2485
- /**
2486
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2487
- */
2488
- provisionalUserProject?: string;
2489
2444
  /**
2490
2445
  * The project to be billed for this request. Required for Requester Pays buckets.
2491
2446
  */
@@ -2500,10 +2455,6 @@ export declare namespace storage_v1 {
2500
2455
  * The IAM policy format version to be returned. If the optionsRequestedPolicyVersion is for an older version that doesn't support part of the requested IAM policy, the request fails.
2501
2456
  */
2502
2457
  optionsRequestedPolicyVersion?: number;
2503
- /**
2504
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2505
- */
2506
- provisionalUserProject?: string;
2507
2458
  /**
2508
2459
  * The project to be billed for this request. Required for Requester Pays buckets.
2509
2460
  */
@@ -2526,10 +2477,6 @@ export declare namespace storage_v1 {
2526
2477
  * Set of properties to return. Defaults to noAcl, unless the bucket resource specifies acl or defaultObjectAcl properties, when it defaults to full.
2527
2478
  */
2528
2479
  projection?: string;
2529
- /**
2530
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2531
- */
2532
- provisionalUserProject?: string;
2533
2480
  /**
2534
2481
  * The project to be billed for this request.
2535
2482
  */
@@ -2560,10 +2507,6 @@ export declare namespace storage_v1 {
2560
2507
  * Set of properties to return. Defaults to noAcl.
2561
2508
  */
2562
2509
  projection?: string;
2563
- /**
2564
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2565
- */
2566
- provisionalUserProject?: string;
2567
2510
  /**
2568
2511
  * The project to be billed for this request.
2569
2512
  */
@@ -2578,10 +2521,6 @@ export declare namespace storage_v1 {
2578
2521
  * Makes the operation conditional on whether bucket's current metageneration matches the given value.
2579
2522
  */
2580
2523
  ifMetagenerationMatch?: string;
2581
- /**
2582
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2583
- */
2584
- provisionalUserProject?: string;
2585
2524
  /**
2586
2525
  * The project to be billed for this request. Required for Requester Pays buckets.
2587
2526
  */
@@ -2612,10 +2551,6 @@ export declare namespace storage_v1 {
2612
2551
  * Set of properties to return. Defaults to full.
2613
2552
  */
2614
2553
  projection?: string;
2615
- /**
2616
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2617
- */
2618
- provisionalUserProject?: string;
2619
2554
  /**
2620
2555
  * The project to be billed for this request. Required for Requester Pays buckets.
2621
2556
  */
@@ -2630,10 +2565,6 @@ export declare namespace storage_v1 {
2630
2565
  * Name of a bucket.
2631
2566
  */
2632
2567
  bucket?: string;
2633
- /**
2634
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2635
- */
2636
- provisionalUserProject?: string;
2637
2568
  /**
2638
2569
  * The project to be billed for this request. Required for Requester Pays buckets.
2639
2570
  */
@@ -2652,10 +2583,6 @@ export declare namespace storage_v1 {
2652
2583
  * Permissions to test.
2653
2584
  */
2654
2585
  permissions?: string[];
2655
- /**
2656
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2657
- */
2658
- provisionalUserProject?: string;
2659
2586
  /**
2660
2587
  * The project to be billed for this request. Required for Requester Pays buckets.
2661
2588
  */
@@ -2686,10 +2613,6 @@ export declare namespace storage_v1 {
2686
2613
  * Set of properties to return. Defaults to full.
2687
2614
  */
2688
2615
  projection?: string;
2689
- /**
2690
- * The project to be billed for this request if the target bucket is requester-pays bucket.
2691
- */
2692
- provisionalUserProject?: string;
2693
2616
  /**
2694
2617
  * The project to be billed for this request. Required for Requester Pays buckets.
2695
2618
  */
@@ -2817,8 +2740,6 @@ export declare namespace storage_v1 {
2817
2740
  * bucket: 'placeholder-value',
2818
2741
  * // The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
2819
2742
  * entity: 'placeholder-value',
2820
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
2821
- * provisionalUserProject: 'placeholder-value',
2822
2743
  * // The project to be billed for this request. Required for Requester Pays buckets.
2823
2744
  * userProject: 'placeholder-value',
2824
2745
  * });
@@ -2877,8 +2798,6 @@ export declare namespace storage_v1 {
2877
2798
  * bucket: 'placeholder-value',
2878
2799
  * // The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
2879
2800
  * entity: 'placeholder-value',
2880
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
2881
- * provisionalUserProject: 'placeholder-value',
2882
2801
  * // The project to be billed for this request. Required for Requester Pays buckets.
2883
2802
  * userProject: 'placeholder-value',
2884
2803
  * });
@@ -2952,8 +2871,6 @@ export declare namespace storage_v1 {
2952
2871
  * const res = await storage.defaultObjectAccessControls.insert({
2953
2872
  * // Name of a bucket.
2954
2873
  * bucket: 'placeholder-value',
2955
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
2956
- * provisionalUserProject: 'placeholder-value',
2957
2874
  * // The project to be billed for this request. Required for Requester Pays buckets.
2958
2875
  * userProject: 'placeholder-value',
2959
2876
  *
@@ -3051,8 +2968,6 @@ export declare namespace storage_v1 {
3051
2968
  * ifMetagenerationMatch: 'placeholder-value',
3052
2969
  * // If present, only return default ACL listing if the bucket's current metageneration does not match the given value.
3053
2970
  * ifMetagenerationNotMatch: 'placeholder-value',
3054
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3055
- * provisionalUserProject: 'placeholder-value',
3056
2971
  * // The project to be billed for this request. Required for Requester Pays buckets.
3057
2972
  * userProject: 'placeholder-value',
3058
2973
  * });
@@ -3117,8 +3032,6 @@ export declare namespace storage_v1 {
3117
3032
  * bucket: 'placeholder-value',
3118
3033
  * // The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
3119
3034
  * entity: 'placeholder-value',
3120
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3121
- * provisionalUserProject: 'placeholder-value',
3122
3035
  * // The project to be billed for this request. Required for Requester Pays buckets.
3123
3036
  * userProject: 'placeholder-value',
3124
3037
  *
@@ -3214,8 +3127,6 @@ export declare namespace storage_v1 {
3214
3127
  * bucket: 'placeholder-value',
3215
3128
  * // The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
3216
3129
  * entity: 'placeholder-value',
3217
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3218
- * provisionalUserProject: 'placeholder-value',
3219
3130
  * // The project to be billed for this request. Required for Requester Pays buckets.
3220
3131
  * userProject: 'placeholder-value',
3221
3132
  *
@@ -3287,10 +3198,6 @@ export declare namespace storage_v1 {
3287
3198
  * The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
3288
3199
  */
3289
3200
  entity?: string;
3290
- /**
3291
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3292
- */
3293
- provisionalUserProject?: string;
3294
3201
  /**
3295
3202
  * The project to be billed for this request. Required for Requester Pays buckets.
3296
3203
  */
@@ -3305,10 +3212,6 @@ export declare namespace storage_v1 {
3305
3212
  * The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
3306
3213
  */
3307
3214
  entity?: string;
3308
- /**
3309
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3310
- */
3311
- provisionalUserProject?: string;
3312
3215
  /**
3313
3216
  * The project to be billed for this request. Required for Requester Pays buckets.
3314
3217
  */
@@ -3319,10 +3222,6 @@ export declare namespace storage_v1 {
3319
3222
  * Name of a bucket.
3320
3223
  */
3321
3224
  bucket?: string;
3322
- /**
3323
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3324
- */
3325
- provisionalUserProject?: string;
3326
3225
  /**
3327
3226
  * The project to be billed for this request. Required for Requester Pays buckets.
3328
3227
  */
@@ -3345,10 +3244,6 @@ export declare namespace storage_v1 {
3345
3244
  * If present, only return default ACL listing if the bucket's current metageneration does not match the given value.
3346
3245
  */
3347
3246
  ifMetagenerationNotMatch?: string;
3348
- /**
3349
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3350
- */
3351
- provisionalUserProject?: string;
3352
3247
  /**
3353
3248
  * The project to be billed for this request. Required for Requester Pays buckets.
3354
3249
  */
@@ -3363,10 +3258,6 @@ export declare namespace storage_v1 {
3363
3258
  * The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
3364
3259
  */
3365
3260
  entity?: string;
3366
- /**
3367
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3368
- */
3369
- provisionalUserProject?: string;
3370
3261
  /**
3371
3262
  * The project to be billed for this request. Required for Requester Pays buckets.
3372
3263
  */
@@ -3385,10 +3276,6 @@ export declare namespace storage_v1 {
3385
3276
  * The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
3386
3277
  */
3387
3278
  entity?: string;
3388
- /**
3389
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3390
- */
3391
- provisionalUserProject?: string;
3392
3279
  /**
3393
3280
  * The project to be billed for this request. Required for Requester Pays buckets.
3394
3281
  */
@@ -3436,8 +3323,6 @@ export declare namespace storage_v1 {
3436
3323
  * bucket: 'placeholder-value',
3437
3324
  * // ID of the notification to delete.
3438
3325
  * notification: 'placeholder-value',
3439
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3440
- * provisionalUserProject: 'placeholder-value',
3441
3326
  * // The project to be billed for this request. Required for Requester Pays buckets.
3442
3327
  * userProject: 'placeholder-value',
3443
3328
  * });
@@ -3499,8 +3384,6 @@ export declare namespace storage_v1 {
3499
3384
  * bucket: 'placeholder-value',
3500
3385
  * // Notification ID
3501
3386
  * notification: 'placeholder-value',
3502
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3503
- * provisionalUserProject: 'placeholder-value',
3504
3387
  * // The project to be billed for this request. Required for Requester Pays buckets.
3505
3388
  * userProject: 'placeholder-value',
3506
3389
  * });
@@ -3571,8 +3454,6 @@ export declare namespace storage_v1 {
3571
3454
  * const res = await storage.notifications.insert({
3572
3455
  * // The parent bucket of the notification.
3573
3456
  * bucket: 'placeholder-value',
3574
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3575
- * provisionalUserProject: 'placeholder-value',
3576
3457
  * // The project to be billed for this request. Required for Requester Pays buckets.
3577
3458
  * userProject: 'placeholder-value',
3578
3459
  *
@@ -3661,8 +3542,6 @@ export declare namespace storage_v1 {
3661
3542
  * const res = await storage.notifications.list({
3662
3543
  * // Name of a Google Cloud Storage bucket.
3663
3544
  * bucket: 'placeholder-value',
3664
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3665
- * provisionalUserProject: 'placeholder-value',
3666
3545
  * // The project to be billed for this request. Required for Requester Pays buckets.
3667
3546
  * userProject: 'placeholder-value',
3668
3547
  * });
@@ -3703,10 +3582,6 @@ export declare namespace storage_v1 {
3703
3582
  * ID of the notification to delete.
3704
3583
  */
3705
3584
  notification?: string;
3706
- /**
3707
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3708
- */
3709
- provisionalUserProject?: string;
3710
3585
  /**
3711
3586
  * The project to be billed for this request. Required for Requester Pays buckets.
3712
3587
  */
@@ -3721,10 +3596,6 @@ export declare namespace storage_v1 {
3721
3596
  * Notification ID
3722
3597
  */
3723
3598
  notification?: string;
3724
- /**
3725
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3726
- */
3727
- provisionalUserProject?: string;
3728
3599
  /**
3729
3600
  * The project to be billed for this request. Required for Requester Pays buckets.
3730
3601
  */
@@ -3735,10 +3606,6 @@ export declare namespace storage_v1 {
3735
3606
  * The parent bucket of the notification.
3736
3607
  */
3737
3608
  bucket?: string;
3738
- /**
3739
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3740
- */
3741
- provisionalUserProject?: string;
3742
3609
  /**
3743
3610
  * The project to be billed for this request. Required for Requester Pays buckets.
3744
3611
  */
@@ -3753,10 +3620,6 @@ export declare namespace storage_v1 {
3753
3620
  * Name of a Google Cloud Storage bucket.
3754
3621
  */
3755
3622
  bucket?: string;
3756
- /**
3757
- * The project to be billed for this request if the target bucket is requester-pays bucket.
3758
- */
3759
- provisionalUserProject?: string;
3760
3623
  /**
3761
3624
  * The project to be billed for this request. Required for Requester Pays buckets.
3762
3625
  */
@@ -3803,8 +3666,6 @@ export declare namespace storage_v1 {
3803
3666
  * generation: 'placeholder-value',
3804
3667
  * // Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
3805
3668
  * object: 'placeholder-value',
3806
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3807
- * provisionalUserProject: 'placeholder-value',
3808
3669
  * // The project to be billed for this request. Required for Requester Pays buckets.
3809
3670
  * userProject: 'placeholder-value',
3810
3671
  * });
@@ -3867,8 +3728,6 @@ export declare namespace storage_v1 {
3867
3728
  * generation: 'placeholder-value',
3868
3729
  * // Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
3869
3730
  * object: 'placeholder-value',
3870
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3871
- * provisionalUserProject: 'placeholder-value',
3872
3731
  * // The project to be billed for this request. Required for Requester Pays buckets.
3873
3732
  * userProject: 'placeholder-value',
3874
3733
  * });
@@ -3946,8 +3805,6 @@ export declare namespace storage_v1 {
3946
3805
  * generation: 'placeholder-value',
3947
3806
  * // Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
3948
3807
  * object: 'placeholder-value',
3949
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
3950
- * provisionalUserProject: 'placeholder-value',
3951
3808
  * // The project to be billed for this request. Required for Requester Pays buckets.
3952
3809
  * userProject: 'placeholder-value',
3953
3810
  *
@@ -4045,8 +3902,6 @@ export declare namespace storage_v1 {
4045
3902
  * generation: 'placeholder-value',
4046
3903
  * // Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4047
3904
  * object: 'placeholder-value',
4048
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
4049
- * provisionalUserProject: 'placeholder-value',
4050
3905
  * // The project to be billed for this request. Required for Requester Pays buckets.
4051
3906
  * userProject: 'placeholder-value',
4052
3907
  * });
@@ -4115,8 +3970,6 @@ export declare namespace storage_v1 {
4115
3970
  * generation: 'placeholder-value',
4116
3971
  * // Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4117
3972
  * object: 'placeholder-value',
4118
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
4119
- * provisionalUserProject: 'placeholder-value',
4120
3973
  * // The project to be billed for this request. Required for Requester Pays buckets.
4121
3974
  * userProject: 'placeholder-value',
4122
3975
  *
@@ -4216,8 +4069,6 @@ export declare namespace storage_v1 {
4216
4069
  * generation: 'placeholder-value',
4217
4070
  * // Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4218
4071
  * object: 'placeholder-value',
4219
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
4220
- * provisionalUserProject: 'placeholder-value',
4221
4072
  * // The project to be billed for this request. Required for Requester Pays buckets.
4222
4073
  * userProject: 'placeholder-value',
4223
4074
  *
@@ -4297,10 +4148,6 @@ export declare namespace storage_v1 {
4297
4148
  * Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4298
4149
  */
4299
4150
  object?: string;
4300
- /**
4301
- * The project to be billed for this request if the target bucket is requester-pays bucket.
4302
- */
4303
- provisionalUserProject?: string;
4304
4151
  /**
4305
4152
  * The project to be billed for this request. Required for Requester Pays buckets.
4306
4153
  */
@@ -4323,10 +4170,6 @@ export declare namespace storage_v1 {
4323
4170
  * Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4324
4171
  */
4325
4172
  object?: string;
4326
- /**
4327
- * The project to be billed for this request if the target bucket is requester-pays bucket.
4328
- */
4329
- provisionalUserProject?: string;
4330
4173
  /**
4331
4174
  * The project to be billed for this request. Required for Requester Pays buckets.
4332
4175
  */
@@ -4345,10 +4188,6 @@ export declare namespace storage_v1 {
4345
4188
  * Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4346
4189
  */
4347
4190
  object?: string;
4348
- /**
4349
- * The project to be billed for this request if the target bucket is requester-pays bucket.
4350
- */
4351
- provisionalUserProject?: string;
4352
4191
  /**
4353
4192
  * The project to be billed for this request. Required for Requester Pays buckets.
4354
4193
  */
@@ -4371,10 +4210,6 @@ export declare namespace storage_v1 {
4371
4210
  * Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4372
4211
  */
4373
4212
  object?: string;
4374
- /**
4375
- * The project to be billed for this request if the target bucket is requester-pays bucket.
4376
- */
4377
- provisionalUserProject?: string;
4378
4213
  /**
4379
4214
  * The project to be billed for this request. Required for Requester Pays buckets.
4380
4215
  */
@@ -4397,10 +4232,6 @@ export declare namespace storage_v1 {
4397
4232
  * Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4398
4233
  */
4399
4234
  object?: string;
4400
- /**
4401
- * The project to be billed for this request if the target bucket is requester-pays bucket.
4402
- */
4403
- provisionalUserProject?: string;
4404
4235
  /**
4405
4236
  * The project to be billed for this request. Required for Requester Pays buckets.
4406
4237
  */
@@ -4427,10 +4258,6 @@ export declare namespace storage_v1 {
4427
4258
  * Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4428
4259
  */
4429
4260
  object?: string;
4430
- /**
4431
- * The project to be billed for this request if the target bucket is requester-pays bucket.
4432
- */
4433
- provisionalUserProject?: string;
4434
4261
  /**
4435
4262
  * The project to be billed for this request. Required for Requester Pays buckets.
4436
4263
  */
@@ -4486,8 +4313,6 @@ export declare namespace storage_v1 {
4486
4313
  * ifMetagenerationMatch: 'placeholder-value',
4487
4314
  * // Resource name of the Cloud KMS key, of the form projects/my-project/locations/global/keyRings/my-kr/cryptoKeys/my-key, that will be used to encrypt the object. Overrides the object metadata's kms_key_name value, if any.
4488
4315
  * kmsKeyName: 'placeholder-value',
4489
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
4490
- * provisionalUserProject: 'placeholder-value',
4491
4316
  * // The project to be billed for this request. Required for Requester Pays buckets.
4492
4317
  * userProject: 'placeholder-value',
4493
4318
  *
@@ -4615,8 +4440,6 @@ export declare namespace storage_v1 {
4615
4440
  * ifSourceMetagenerationNotMatch: 'placeholder-value',
4616
4441
  * // Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
4617
4442
  * projection: 'placeholder-value',
4618
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
4619
- * provisionalUserProject: 'placeholder-value',
4620
4443
  * // Name of the bucket in which to find the source object.
4621
4444
  * sourceBucket: 'placeholder-value',
4622
4445
  * // If present, selects a specific revision of the source object (as opposed to the latest version, the default).
@@ -4767,8 +4590,6 @@ export declare namespace storage_v1 {
4767
4590
  * ifMetagenerationNotMatch: 'placeholder-value',
4768
4591
  * // Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4769
4592
  * object: 'placeholder-value',
4770
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
4771
- * provisionalUserProject: 'placeholder-value',
4772
4593
  * // The project to be billed for this request. Required for Requester Pays buckets.
4773
4594
  * userProject: 'placeholder-value',
4774
4595
  * });
@@ -4842,8 +4663,6 @@ export declare namespace storage_v1 {
4842
4663
  * object: 'placeholder-value',
4843
4664
  * // Set of properties to return. Defaults to noAcl.
4844
4665
  * projection: 'placeholder-value',
4845
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
4846
- * provisionalUserProject: 'placeholder-value',
4847
4666
  * // The project to be billed for this request. Required for Requester Pays buckets.
4848
4667
  * userProject: 'placeholder-value',
4849
4668
  * });
@@ -4943,8 +4762,6 @@ export declare namespace storage_v1 {
4943
4762
  * generation: 'placeholder-value',
4944
4763
  * // Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
4945
4764
  * object: 'placeholder-value',
4946
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
4947
- * provisionalUserProject: 'placeholder-value',
4948
4765
  * // The project to be billed for this request. Required for Requester Pays buckets.
4949
4766
  * userProject: 'placeholder-value',
4950
4767
  * });
@@ -5029,8 +4846,6 @@ export declare namespace storage_v1 {
5029
4846
  * predefinedAcl: 'placeholder-value',
5030
4847
  * // Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
5031
4848
  * projection: 'placeholder-value',
5032
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
5033
- * provisionalUserProject: 'placeholder-value',
5034
4849
  * // The project to be billed for this request. Required for Requester Pays buckets.
5035
4850
  * userProject: 'placeholder-value',
5036
4851
  *
@@ -5183,8 +4998,6 @@ export declare namespace storage_v1 {
5183
4998
  * prefix: 'placeholder-value',
5184
4999
  * // Set of properties to return. Defaults to noAcl.
5185
5000
  * projection: 'placeholder-value',
5186
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
5187
- * provisionalUserProject: 'placeholder-value',
5188
5001
  * // Filter results to objects whose names are lexicographically equal to or after startOffset. If endOffset is also set, the objects listed will have names between startOffset (inclusive) and endOffset (exclusive).
5189
5002
  * startOffset: 'placeholder-value',
5190
5003
  * // The project to be billed for this request. Required for Requester Pays buckets.
@@ -5269,8 +5082,6 @@ export declare namespace storage_v1 {
5269
5082
  * predefinedAcl: 'placeholder-value',
5270
5083
  * // Set of properties to return. Defaults to full.
5271
5084
  * projection: 'placeholder-value',
5272
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
5273
- * provisionalUserProject: 'placeholder-value',
5274
5085
  * // The project to be billed for this request, for Requester Pays buckets.
5275
5086
  * userProject: 'placeholder-value',
5276
5087
  *
@@ -5429,8 +5240,6 @@ export declare namespace storage_v1 {
5429
5240
  * maxBytesRewrittenPerCall: 'placeholder-value',
5430
5241
  * // Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
5431
5242
  * projection: 'placeholder-value',
5432
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
5433
- * provisionalUserProject: 'placeholder-value',
5434
5243
  * // Include this field (from the previous rewrite response) on each rewrite request after the first one, until the rewrite response 'done' flag is true. Calls that provide a rewriteToken can omit all other request fields, but if included those fields must match the values provided in the first rewrite request.
5435
5244
  * rewriteToken: 'placeholder-value',
5436
5245
  * // Name of the bucket in which to find the source object.
@@ -5549,8 +5358,6 @@ export declare namespace storage_v1 {
5549
5358
  * generation: 'placeholder-value',
5550
5359
  * // Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
5551
5360
  * object: 'placeholder-value',
5552
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
5553
- * provisionalUserProject: 'placeholder-value',
5554
5361
  * // The project to be billed for this request. Required for Requester Pays buckets.
5555
5362
  * userProject: 'placeholder-value',
5556
5363
  *
@@ -5637,8 +5444,6 @@ export declare namespace storage_v1 {
5637
5444
  * object: 'placeholder-value',
5638
5445
  * // Permissions to test.
5639
5446
  * permissions: 'placeholder-value',
5640
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
5641
- * provisionalUserProject: 'placeholder-value',
5642
5447
  * // The project to be billed for this request. Required for Requester Pays buckets.
5643
5448
  * userProject: 'placeholder-value',
5644
5449
  * });
@@ -5717,8 +5522,6 @@ export declare namespace storage_v1 {
5717
5522
  * predefinedAcl: 'placeholder-value',
5718
5523
  * // Set of properties to return. Defaults to full.
5719
5524
  * projection: 'placeholder-value',
5720
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
5721
- * provisionalUserProject: 'placeholder-value',
5722
5525
  * // The project to be billed for this request. Required for Requester Pays buckets.
5723
5526
  * userProject: 'placeholder-value',
5724
5527
  *
@@ -5867,8 +5670,6 @@ export declare namespace storage_v1 {
5867
5670
  * prefix: 'placeholder-value',
5868
5671
  * // Set of properties to return. Defaults to noAcl.
5869
5672
  * projection: 'placeholder-value',
5870
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
5871
- * provisionalUserProject: 'placeholder-value',
5872
5673
  * // Filter results to objects whose names are lexicographically equal to or after startOffset. If endOffset is also set, the objects listed will have names between startOffset (inclusive) and endOffset (exclusive).
5873
5674
  * startOffset: 'placeholder-value',
5874
5675
  * // The project to be billed for this request. Required for Requester Pays buckets.
@@ -5954,10 +5755,6 @@ export declare namespace storage_v1 {
5954
5755
  * Resource name of the Cloud KMS key, of the form projects/my-project/locations/global/keyRings/my-kr/cryptoKeys/my-key, that will be used to encrypt the object. Overrides the object metadata's kms_key_name value, if any.
5955
5756
  */
5956
5757
  kmsKeyName?: string;
5957
- /**
5958
- * The project to be billed for this request if the target bucket is requester-pays bucket.
5959
- */
5960
- provisionalUserProject?: string;
5961
5758
  /**
5962
5759
  * The project to be billed for this request. Required for Requester Pays buckets.
5963
5760
  */
@@ -6020,10 +5817,6 @@ export declare namespace storage_v1 {
6020
5817
  * Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
6021
5818
  */
6022
5819
  projection?: string;
6023
- /**
6024
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6025
- */
6026
- provisionalUserProject?: string;
6027
5820
  /**
6028
5821
  * Name of the bucket in which to find the source object.
6029
5822
  */
@@ -6074,10 +5867,6 @@ export declare namespace storage_v1 {
6074
5867
  * Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
6075
5868
  */
6076
5869
  object?: string;
6077
- /**
6078
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6079
- */
6080
- provisionalUserProject?: string;
6081
5870
  /**
6082
5871
  * The project to be billed for this request. Required for Requester Pays buckets.
6083
5872
  */
@@ -6116,10 +5905,6 @@ export declare namespace storage_v1 {
6116
5905
  * Set of properties to return. Defaults to noAcl.
6117
5906
  */
6118
5907
  projection?: string;
6119
- /**
6120
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6121
- */
6122
- provisionalUserProject?: string;
6123
5908
  /**
6124
5909
  * The project to be billed for this request. Required for Requester Pays buckets.
6125
5910
  */
@@ -6138,10 +5923,6 @@ export declare namespace storage_v1 {
6138
5923
  * Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
6139
5924
  */
6140
5925
  object?: string;
6141
- /**
6142
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6143
- */
6144
- provisionalUserProject?: string;
6145
5926
  /**
6146
5927
  * The project to be billed for this request. Required for Requester Pays buckets.
6147
5928
  */
@@ -6188,10 +5969,6 @@ export declare namespace storage_v1 {
6188
5969
  * Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
6189
5970
  */
6190
5971
  projection?: string;
6191
- /**
6192
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6193
- */
6194
- provisionalUserProject?: string;
6195
5972
  /**
6196
5973
  * The project to be billed for this request. Required for Requester Pays buckets.
6197
5974
  */
@@ -6247,10 +6024,6 @@ export declare namespace storage_v1 {
6247
6024
  * Set of properties to return. Defaults to noAcl.
6248
6025
  */
6249
6026
  projection?: string;
6250
- /**
6251
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6252
- */
6253
- provisionalUserProject?: string;
6254
6027
  /**
6255
6028
  * Filter results to objects whose names are lexicographically equal to or after startOffset. If endOffset is also set, the objects listed will have names between startOffset (inclusive) and endOffset (exclusive).
6256
6029
  */
@@ -6301,10 +6074,6 @@ export declare namespace storage_v1 {
6301
6074
  * Set of properties to return. Defaults to full.
6302
6075
  */
6303
6076
  projection?: string;
6304
- /**
6305
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6306
- */
6307
- provisionalUserProject?: string;
6308
6077
  /**
6309
6078
  * The project to be billed for this request, for Requester Pays buckets.
6310
6079
  */
@@ -6371,10 +6140,6 @@ export declare namespace storage_v1 {
6371
6140
  * Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
6372
6141
  */
6373
6142
  projection?: string;
6374
- /**
6375
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6376
- */
6377
- provisionalUserProject?: string;
6378
6143
  /**
6379
6144
  * Include this field (from the previous rewrite response) on each rewrite request after the first one, until the rewrite response 'done' flag is true. Calls that provide a rewriteToken can omit all other request fields, but if included those fields must match the values provided in the first rewrite request.
6380
6145
  */
@@ -6413,10 +6178,6 @@ export declare namespace storage_v1 {
6413
6178
  * Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
6414
6179
  */
6415
6180
  object?: string;
6416
- /**
6417
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6418
- */
6419
- provisionalUserProject?: string;
6420
6181
  /**
6421
6182
  * The project to be billed for this request. Required for Requester Pays buckets.
6422
6183
  */
@@ -6443,10 +6204,6 @@ export declare namespace storage_v1 {
6443
6204
  * Permissions to test.
6444
6205
  */
6445
6206
  permissions?: string[];
6446
- /**
6447
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6448
- */
6449
- provisionalUserProject?: string;
6450
6207
  /**
6451
6208
  * The project to be billed for this request. Required for Requester Pays buckets.
6452
6209
  */
@@ -6489,10 +6246,6 @@ export declare namespace storage_v1 {
6489
6246
  * Set of properties to return. Defaults to full.
6490
6247
  */
6491
6248
  projection?: string;
6492
- /**
6493
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6494
- */
6495
- provisionalUserProject?: string;
6496
6249
  /**
6497
6250
  * The project to be billed for this request. Required for Requester Pays buckets.
6498
6251
  */
@@ -6535,10 +6288,6 @@ export declare namespace storage_v1 {
6535
6288
  * Set of properties to return. Defaults to noAcl.
6536
6289
  */
6537
6290
  projection?: string;
6538
- /**
6539
- * The project to be billed for this request if the target bucket is requester-pays bucket.
6540
- */
6541
- provisionalUserProject?: string;
6542
6291
  /**
6543
6292
  * Filter results to objects whose names are lexicographically equal to or after startOffset. If endOffset is also set, the objects listed will have names between startOffset (inclusive) and endOffset (exclusive).
6544
6293
  */
@@ -7050,8 +6799,6 @@ export declare namespace storage_v1 {
7050
6799
  * const res = await storage.projects.serviceAccount.get({
7051
6800
  * // Project ID
7052
6801
  * projectId: 'placeholder-value',
7053
- * // The project to be billed for this request if the target bucket is requester-pays bucket.
7054
- * provisionalUserProject: 'placeholder-value',
7055
6802
  * // The project to be billed for this request.
7056
6803
  * userProject: 'placeholder-value',
7057
6804
  * });
@@ -7088,10 +6835,6 @@ export declare namespace storage_v1 {
7088
6835
  * Project ID
7089
6836
  */
7090
6837
  projectId?: string;
7091
- /**
7092
- * The project to be billed for this request if the target bucket is requester-pays bucket.
7093
- */
7094
- provisionalUserProject?: string;
7095
6838
  /**
7096
6839
  * The project to be billed for this request.
7097
6840
  */