String |
StorageController.createDeleteSignedUrl(String bucketName,
String blobName,
String expiresIn) |
This endpoint provides signed urls to delete objects
|
String |
StorageService.createDeleteSignedUrl(String bucketName,
String blobName,
String expiresIn,
Property... properties) |
Creates a delete signed url
|
String |
StorageController.createDownloadSignedUrl(String bucketName,
String blobName,
String expiresIn) |
This endpoint provides signed urls to download objects
|
String |
StorageService.createDownloadSignedUrl(String bucketName,
String blobName,
String expiresIn,
Property... properties) |
Creates a download signed url
|
String |
StorageController.createUploadSignedUrl(String bucketName,
String blobName,
String mimetype,
String expiresIn) |
This endpoint provides signed urls to upload objects
|
String |
StorageService.createUploadSignedUrl(String bucketName,
String blobName,
String type,
String expiresIn,
Property... properties) |
Creates a upload signed url
|
void |
StorageService.deleteBucket(String bucketName,
Property... properties) |
Deletes a Bucket
|
void |
StorageService.deleteObject(String bucketName,
String name,
Property... properties) |
Deletes an object
|
String[] |
StorageService.listObjects(String bucketName,
String startsWith,
Property... properties) |
List object's names based on an optional prefix string
|
byte[] |
StorageService.loadObject(String bucketName,
String blobname,
Property... properties) |
Loads the object's content
|
void |
StorageService.saveObject(String bucketName,
String name,
String type,
byte[] content,
Property... properties) |
Saves an object
|