@maxim_mazurok/gapi.client.storage-v1
Advanced tools
Comparing version 0.0.20231218 to 0.0.20240105
{ | ||
"name": "@maxim_mazurok/gapi.client.storage-v1", | ||
"version": "0.0.20231218", | ||
"version": "0.0.20240105", | ||
"description": "TypeScript typings for Cloud Storage JSON API v1", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -282,2 +282,31 @@ # TypeScript typings for Cloud Storage JSON API v1 | ||
/* | ||
Permanently deletes a folder. Only applicable to buckets with hierarchical namespace enabled. | ||
*/ | ||
await gapi.client.storage.folders.delete({bucket: 'bucket', folder: 'folder'}); | ||
/* | ||
Returns metadata for the specified folder. Only applicable to buckets with hierarchical namespace enabled. | ||
*/ | ||
await gapi.client.storage.folders.get({bucket: 'bucket', folder: 'folder'}); | ||
/* | ||
Creates a new folder. Only applicable to buckets with hierarchical namespace enabled. | ||
*/ | ||
await gapi.client.storage.folders.insert({bucket: 'bucket'}); | ||
/* | ||
Retrieves a list of folders matching the criteria. Only applicable to buckets with hierarchical namespace enabled. | ||
*/ | ||
await gapi.client.storage.folders.list({bucket: 'bucket'}); | ||
/* | ||
Renames a source folder to a destination folder. Only applicable to buckets with hierarchical namespace enabled. | ||
*/ | ||
await gapi.client.storage.folders.rename({ | ||
bucket: 'bucket', | ||
destinationFolder: 'destinationFolder', | ||
sourceFolder: 'sourceFolder', | ||
}); | ||
/* | ||
Permanently deletes a managed folder. | ||
@@ -284,0 +313,0 @@ */ |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
253360
4053
562