class AzureBlob::Client

def get_container_properties(options = {})

This can be used to see if the container exist or obtain metadata.

Calls to {Get Container Properties}[https://learn.microsoft.com/en-us/rest/api/storageservices/get-container-properties]

Returns a Container object.
def get_container_properties(options = {})
  uri = generate_uri(container)
  uri.query = URI.encode_www_form(restype: "container")
  response = Http.new(uri, signer:, raise_on_error: false).head
  Container.new(response)
end