Azure Blob storage provides scalable, cost-efficient object storage in the cloud. Store and access unstructured data for your most demanding workloads.
BlobClient 类参考 反馈 用于与特定 Blob 交互的客户端,尽管该 Blob 可能尚不存在。 有关更多可选配置,请 单击此处。继承 azure.storage.blob._shared.base_client.StorageAccountHostsMixin BlobClient azure.storage.blob._encryption.StorageEncryptionMixin BlobClient ...
In order to interact with the Storage Service (Blob, Queue, Message, MessageId, File), you'll need to create an instance of the Service Client class. To make this possible you'll need the Account SAS (shared access signature) string of the Storage Account. Learn more at SAS Token....
在帐户级别与 Blob 服务交互的客户端。 此客户端提供检索和配置帐户属性的操作,以及列出、创建和删除帐户中的容器。 对于与特定容器或 Blob 相关的操作,也可以使用get_client函数检索这些实体的客户端。 有关更多可选配置,请单击此处。 继承 azure.storage.blob._shared.base_client.StorageAccountHostsMixin ...
如果程式碼中已經有BlobClient物件,但缺乏用戶端加密選項,則可以搭配使用擴充方法與指定的ClientSideEncryptionOptions來建立該物件的複本。 這個擴充方法可避免從頭開始建立新BlobClient物件所產生的額外負荷。 C# usingAzure.Storage.Blobs.Specialized;// An existing BlobClient instance and encryption options.BlobClient ...
开始使用 Blob 存储构建应用 经济高效地存储 PB 级数据 借助多个存储层和自动化生命周期管理,经济高效地存储大量不经常访问或很少访问的数据。将磁带存档替换为 Blob 存储,不再担心跨硬件代系进行迁移。 立即存储你很少访问的数据 构建功能强大的数据湖 Azure Data Lake Storage 是适用于大数据分析的高度可缩放且经...
//CloudBlobClient 类是 Windows Azure Blob Service 客户端的逻辑表示,我们需要使用它来配置和执行对 Blob Storage 的操作。 CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); //CloudBlobContainer 表示一个 Blob Container 对象。
//CloudBlobClient 类是 Windows Azure Blob Service 客户端的逻辑表示,我们需要使用它来配置和执行对 Blob Storage 的操作。CloudBlobClient blobClient=storageAccount.CreateCloudBlobClient(); //CloudBlobContainer 表示一个 Blob Container 对象。CloudBlobContainer container= blobClient.GetContainerReference("picture...
//CloudBlobClient 类是 Windows Azure Blob Service 客户端的逻辑表示,我们需要使用它来配置和执行对 Blob Storage 的操作。CloudBlobClient blobClient=storageAccount.CreateCloudBlobClient(); //CloudBlobContainer 表示一个 Blob Container 对象。CloudBlobContainer container= blobClient.GetContainerReference("picture...
步骤1:确认Azure Blob Storage账户 确认你有一个Azure账户,并且已经创建了一个存储账户,并获取连接字符串。 步骤2:生成BlobClient对象 在Java代码中,使用Azure Storage SDK创建一个BlobClient对象,连接到Azure Blob Storage。 StringconnectionString="DefaultEndpointsProtocol=https;AccountName=<your_account_name>;Accoun...