class AzureBlob::Client
def get_container_properties(options = {})
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