Class AzureBlobStorageOperations

java.lang.Object
io.micronaut.objectstorage.azure.AzureBlobStorageOperations
All Implemented Interfaces:
ObjectStorageOperations<com.azure.storage.blob.options.BlobParallelUploadOptions,com.azure.storage.blob.models.BlockBlobItem,com.azure.core.http.rest.Response<Void>>

@EachBean(com.azure.storage.blob.BlobContainerClient.class) @Requires(beans=com.azure.storage.blob.BlobContainerClient.class) @Requires(condition=AzureBlobStorageEnabledCondition.class) public class AzureBlobStorageOperations extends Object implements ObjectStorageOperations<com.azure.storage.blob.options.BlobParallelUploadOptions,com.azure.storage.blob.models.BlockBlobItem,com.azure.core.http.rest.Response<Void>>
Azure implementation of ObjectStorageOperations.
Since:
1.0
Author:
Pavol Gressa
  • Constructor Details

    • AzureBlobStorageOperations

      public AzureBlobStorageOperations(@Parameter com.azure.storage.blob.BlobContainerClient blobContainerClient)
  • Method Details

    • upload

      @NonNull public @NonNull UploadResponse<com.azure.storage.blob.models.BlockBlobItem> upload(@NonNull @NonNull UploadRequest request)
      Description copied from interface: ObjectStorageOperations
      Uploads an object to the object storage. If there is an existing entry, it will be updated.
      Specified by:
      upload in interface ObjectStorageOperations<com.azure.storage.blob.options.BlobParallelUploadOptions,com.azure.storage.blob.models.BlockBlobItem,com.azure.core.http.rest.Response<Void>>
      Parameters:
      request - the upload request
      Returns:
      the upload response
    • upload

      @NonNull public @NonNull UploadResponse<com.azure.storage.blob.models.BlockBlobItem> upload(@NonNull @NonNull UploadRequest request, @NonNull @NonNull Consumer<com.azure.storage.blob.options.BlobParallelUploadOptions> requestConsumer)
      Description copied from interface: ObjectStorageOperations
      Uploads an object to the object storage. If there is an existing entry, it will be updated.
      Specified by:
      upload in interface ObjectStorageOperations<com.azure.storage.blob.options.BlobParallelUploadOptions,com.azure.storage.blob.models.BlockBlobItem,com.azure.core.http.rest.Response<Void>>
      Parameters:
      request - the upload request
      requestConsumer - Upload request builder consumer
      Returns:
      the upload response
    • retrieve

      @NonNull public @NonNull Optional<AzureBlobStorageEntry> retrieve(@NonNull @NonNull String key)
      Description copied from interface: ObjectStorageOperations
      Gets the object from object storage.
      Specified by:
      retrieve in interface ObjectStorageOperations<com.azure.storage.blob.options.BlobParallelUploadOptions,com.azure.storage.blob.models.BlockBlobItem,com.azure.core.http.rest.Response<Void>>
      Parameters:
      key - the object path in the format /foo/bar/file
      Returns:
      the object, or empty optional if the object does not exist
    • delete

      @NonNull public @NonNull com.azure.core.http.rest.Response<Void> delete(@NonNull @NonNull String key)
      Description copied from interface: ObjectStorageOperations
      Deletes an object from the object storage.
      Specified by:
      delete in interface ObjectStorageOperations<com.azure.storage.blob.options.BlobParallelUploadOptions,com.azure.storage.blob.models.BlockBlobItem,com.azure.core.http.rest.Response<Void>>
      Parameters:
      key - object path in the format /foo/bar/file
      Returns:
      Cloud vendor-specific delete response.
    • exists

      public boolean exists(@NonNull @NonNull String key)
      Description copied from interface: ObjectStorageOperations
      Checks whether an entry with the given key exists in the object storage.
      Specified by:
      exists in interface ObjectStorageOperations<com.azure.storage.blob.options.BlobParallelUploadOptions,com.azure.storage.blob.models.BlockBlobItem,com.azure.core.http.rest.Response<Void>>
      Parameters:
      key - object path in the format /foo/bar/file
      Returns:
      true if the entry exists, false otherwise.
    • listObjects

      @NonNull public @NonNull Set<String> listObjects()
      Description copied from interface: ObjectStorageOperations
      Lists the objects that exist in the object storage.
      Specified by:
      listObjects in interface ObjectStorageOperations<com.azure.storage.blob.options.BlobParallelUploadOptions,com.azure.storage.blob.models.BlockBlobItem,com.azure.core.http.rest.Response<Void>>
      Returns:
      a list of keys (paths) of the existing objects, if any, or an empty list otherwise.
    • copy

      @NonNull public void copy(@NonNull @NonNull String sourceKey, @NonNull @NonNull String destinationKey)
      Description copied from interface: ObjectStorageOperations
      Copies an object stored at sourceKey to destinationKey, within the same object storage (bucket/container). If the destination exists, it will be overwritten.
      Specified by:
      copy in interface ObjectStorageOperations<com.azure.storage.blob.options.BlobParallelUploadOptions,com.azure.storage.blob.models.BlockBlobItem,com.azure.core.http.rest.Response<Void>>
      Parameters:
      sourceKey - the key of the source object
      destinationKey - the key of the destination object
    • getUploadOptions

      @NonNull protected @NonNull com.azure.storage.blob.options.BlobParallelUploadOptions getUploadOptions(@NonNull @NonNull UploadRequest request)
      Parameters:
      request - the upload request
      Returns:
      An Azure's BlobParallelUploadOptions from a Micronaut's UploadRequest.