class AzureBlob::Client

def container_exist?(options = {})

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

Returns a boolean indicating if the container exists.
def container_exist?(options = {})
  get_container_properties(options = {}).present?
end