@googleapis/storage 17.2.0 → 19.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/CHANGELOG.md +164 -0
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -0
- package/build/v1.d.ts +22 -2
- package/build/v1.js +30 -1
- package/build/v1.js.map +1 -1
- package/build/v1beta2.d.ts +0 -1
- package/build/v1beta2.js +14 -1
- package/build/v1beta2.js.map +1 -1
- package/package.json +4 -4
- package/v1.ts +22 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@googleapis/storage",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.0.0",
|
|
4
4
|
"description": "storage",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"webpack": "webpack"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"googleapis-common": "^8.0.
|
|
31
|
+
"googleapis-common": "^8.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@microsoft/api-documenter": "^7.8.10",
|
|
35
35
|
"@microsoft/api-extractor": "^7.8.10",
|
|
36
|
-
"gts": "^
|
|
36
|
+
"gts": "^6.0.0",
|
|
37
37
|
"null-loader": "^4.0.0",
|
|
38
38
|
"ts-loader": "^9.0.0",
|
|
39
|
-
"typescript": "
|
|
39
|
+
"typescript": "5.7.3",
|
|
40
40
|
"webpack": "^5.0.0",
|
|
41
41
|
"webpack-cli": "^5.0.0"
|
|
42
42
|
}
|
package/v1.ts
CHANGED
|
@@ -530,6 +530,10 @@ export namespace storage_v1 {
|
|
|
530
530
|
* The continuation token, used to page through large result sets. Provide this value in a subsequent request to return the next page of results.
|
|
531
531
|
*/
|
|
532
532
|
nextPageToken?: string | null;
|
|
533
|
+
/**
|
|
534
|
+
* The list of bucket resource names that could not be reached during the listing operation.
|
|
535
|
+
*/
|
|
536
|
+
unreachable?: string[] | null;
|
|
533
537
|
}
|
|
534
538
|
/**
|
|
535
539
|
* The storage layout configuration of a bucket.
|
|
@@ -572,6 +576,14 @@ export namespace storage_v1 {
|
|
|
572
576
|
* If true, copies the source object's ACL; otherwise, uses the bucket's default object ACL. The default is false.
|
|
573
577
|
*/
|
|
574
578
|
copySourceAcl?: boolean | null;
|
|
579
|
+
/**
|
|
580
|
+
* Restores only the objects that were created after this time.
|
|
581
|
+
*/
|
|
582
|
+
createdAfterTime?: string | null;
|
|
583
|
+
/**
|
|
584
|
+
* Restores only the objects that were created before this time.
|
|
585
|
+
*/
|
|
586
|
+
createdBeforeTime?: string | null;
|
|
575
587
|
/**
|
|
576
588
|
* Restores only the objects matching any of the specified glob(s). If this parameter is not specified, all objects will be restored within the specified time range.
|
|
577
589
|
*/
|
|
@@ -4558,6 +4570,8 @@ export namespace storage_v1 {
|
|
|
4558
4570
|
* project: 'placeholder-value',
|
|
4559
4571
|
* // Set of properties to return. Defaults to noAcl.
|
|
4560
4572
|
* projection: 'placeholder-value',
|
|
4573
|
+
* // If true, return a list of bucket resource names for buckets that are in unreachable locations.
|
|
4574
|
+
* returnPartialSuccess: 'placeholder-value',
|
|
4561
4575
|
* // If true, only soft-deleted bucket versions will be returned. The default is false. For more information, see [Soft Delete](https://cloud.google.com/storage/docs/soft-delete).
|
|
4562
4576
|
* softDeleted: 'placeholder-value',
|
|
4563
4577
|
* // The project to be billed for this request.
|
|
@@ -4569,7 +4583,8 @@ export namespace storage_v1 {
|
|
|
4569
4583
|
* // {
|
|
4570
4584
|
* // "items": [],
|
|
4571
4585
|
* // "kind": "my_kind",
|
|
4572
|
-
* // "nextPageToken": "my_nextPageToken"
|
|
4586
|
+
* // "nextPageToken": "my_nextPageToken",
|
|
4587
|
+
* // "unreachable": []
|
|
4573
4588
|
* // }
|
|
4574
4589
|
* }
|
|
4575
4590
|
*
|
|
@@ -6090,6 +6105,10 @@ export namespace storage_v1 {
|
|
|
6090
6105
|
* Set of properties to return. Defaults to noAcl.
|
|
6091
6106
|
*/
|
|
6092
6107
|
projection?: string;
|
|
6108
|
+
/**
|
|
6109
|
+
* If true, return a list of bucket resource names for buckets that are in unreachable locations.
|
|
6110
|
+
*/
|
|
6111
|
+
returnPartialSuccess?: boolean;
|
|
6093
6112
|
/**
|
|
6094
6113
|
* If true, only soft-deleted bucket versions will be returned. The default is false. For more information, see [Soft Delete](https://cloud.google.com/storage/docs/soft-delete).
|
|
6095
6114
|
*/
|
|
@@ -11443,6 +11462,8 @@ export namespace storage_v1 {
|
|
|
11443
11462
|
* // {
|
|
11444
11463
|
* // "allowOverwrite": false,
|
|
11445
11464
|
* // "copySourceAcl": false,
|
|
11465
|
+
* // "createdAfterTime": "my_createdAfterTime",
|
|
11466
|
+
* // "createdBeforeTime": "my_createdBeforeTime",
|
|
11446
11467
|
* // "matchGlobs": [],
|
|
11447
11468
|
* // "softDeletedAfterTime": "my_softDeletedAfterTime",
|
|
11448
11469
|
* // "softDeletedBeforeTime": "my_softDeletedBeforeTime"
|