Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The request to the azure is used to invoke the call. This takes different types of URI for different operations. The URI depends on the type of operation we want to use in the request. The header used in the request requests are:

Code Block
'x-ms-blob-type' = 'BlockBlob'; `
'x-ms-date' = "$(Get-Date (Get-Date $Now).ToUniversalTime() -Format 'R')"; `
'x-ms-version' = $Version; `
'Authorization' = "SharedKey $($Account):$($Signature)" `

...

  1. LIST BLOB
    The request URI for the LIST BLOB  just includes the container name. As the LIST operations lists all the blobs in the container. So the request URI will be https://$($ownerAccount).blob.core.windows.net/$($container)?restype=container&comp=list where $ownerAccount is the name of the Account and $container is the name of the container. The headers used by LIST BLOB operation are x-ms-blob-type, x-ms-date, x-ms-version, Authorization header. 

    The request and header syntax for LIST BLOB will be:

    Code Block
    titleSyntax for LIST BLOB
    collapsetrue
    Request Syntax
    GET https://$($ownerAccount).blob.core.windows.net/$($container)?restype=container&comp=list
    
    Request Headers
    x-ms-blob-type: BlockBlob
    x-ms-date: <date>
    x-ms-version: $Version
    Authorization="SharedKey <AccountName>:<Signature>"
    
    
  2. GET BLOB
    As the The GET BLOB is used to read a the blob content so we need it is required to pass the blob name also in the URI. So the request URI for the GET BLOB will be https://$($ownerAccount).blob.core.windows.net/$($container)/$($blob) where $ownerAccount is the name of the Account and $container is the name of the container and $blob is the name of the blob which is to be read. The Get BLOB uses the same headers as LIST BLOB.
    The request and header syntax for GET BLOB will be:

    Code Block
    titleSyntax for GET BLOB
    collapsetrue
    Request Syntax
    GET https://$($ownerAccount).blob.core.windows.net/$($container)/$($blob)
    
    Request Headers
    x-ms-blob-type: BlockBlob
    x-ms-date: <date>
    x-ms-version: $Version
    Authorization="SharedKey <AccountName>:<Signature>"
    
    
  3. PUT BLOB
    The PUT BLOB operation is used to create a blob. So the URI for the PUT BLOB requires to pass includes the name of the blob to be created in the URI and also the content of the file which will blob is to be passed as a body to the request. So, the in request body. The URI will be https://$($ownerAccount).blob.core.windows.net/$($container)/$($blob) where $ownerAccount is the name of the Account and $container is the name of the container and $blob is the name of the blob which is to be created in the container. The PUT BLOB uses the same headers. 

    Code Block
    titleSyntax for PUT BLOB
    collapsetrue
    Request Syntax
    PUT https://$($ownerAccount).blob.core.windows.net/$($container)/$($blob)
    
    Request Headers
    x-ms-blob-type: BlockBlob
    x-ms-date: <date>
    x-ms-version: $Version
    Authorization="SharedKey <AccountName>:<Signature>"
    
    Request Body:
    <Content of the File>
    
    

...