Azure Ruby SDK 创建 public blob

Azure Ruby SDK create public blob

我在使用 Ruby SDK 以编程方式创建容器时遇到问题,并且立即将其设置为私有。

我正在使用此处找到的 Azure Ruby SDK:https://github.com/Azure/azure-sdk-for-ruby

def create_container(container_name)
  container = Azure.blobs.create_container(container_name)
end

如何将访问级别设置为 Public Blob?现在我必须去门户网站手动设置它。

正在从 here 复制代码:)

container = azure_blob_service.create_container("test-container", :public_access_level => "container")