Class OutputFileBlobContainerDestination


  • public class OutputFileBlobContainerDestination
    extends Object
    Specifies a file upload destination within an Azure blob storage container.
    • Constructor Detail

      • OutputFileBlobContainerDestination

        public OutputFileBlobContainerDestination()
    • Method Detail

      • path

        public String path()
        Get if filePattern refers to a specific file (i.e. contains no wildcards), then path is the name of the blob to which to upload that file. If filePattern contains one or more wildcards (and therefore may match multiple files), then path is the name of the blob virtual directory (which is prepended to each blob name) to which to upload the file(s). If omitted, file(s) are uploaded to the root of the container with a blob name matching their file name.
        Returns:
        the path value
      • withPath

        public OutputFileBlobContainerDestination withPath​(String path)
        Set if filePattern refers to a specific file (i.e. contains no wildcards), then path is the name of the blob to which to upload that file. If filePattern contains one or more wildcards (and therefore may match multiple files), then path is the name of the blob virtual directory (which is prepended to each blob name) to which to upload the file(s). If omitted, file(s) are uploaded to the root of the container with a blob name matching their file name.
        Parameters:
        path - the path value to set
        Returns:
        the OutputFileBlobContainerDestination object itself.
      • containerUrl

        public String containerUrl()
        Get if not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container.
        Returns:
        the containerUrl value
      • withContainerUrl

        public OutputFileBlobContainerDestination withContainerUrl​(String containerUrl)
        Set if not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container.
        Parameters:
        containerUrl - the containerUrl value to set
        Returns:
        the OutputFileBlobContainerDestination object itself.
      • identityReference

        public ComputeNodeIdentityReference identityReference()
        Get the identity must have write access to the Azure Blob Storage container.
        Returns:
        the identityReference value
      • withIdentityReference

        public OutputFileBlobContainerDestination withIdentityReference​(ComputeNodeIdentityReference identityReference)
        Set the identity must have write access to the Azure Blob Storage container.
        Parameters:
        identityReference - the identityReference value to set
        Returns:
        the OutputFileBlobContainerDestination object itself.
      • uploadHeaders

        public List<HttpHeader> uploadHeaders()
        Get these headers will be specified when uploading files to Azure Storage. Official document on allowed headers when uploading blobs: https://docs.microsoft.com/en-us/rest/api/storageservices/put-blob#request-headers-all-blob-types.
        Returns:
        the uploadHeaders value
      • withUploadHeaders

        public OutputFileBlobContainerDestination withUploadHeaders​(List<HttpHeader> uploadHeaders)
        Set these headers will be specified when uploading files to Azure Storage. Official document on allowed headers when uploading blobs: https://docs.microsoft.com/en-us/rest/api/storageservices/put-blob#request-headers-all-blob-types.
        Parameters:
        uploadHeaders - the uploadHeaders value to set
        Returns:
        the OutputFileBlobContainerDestination object itself.