我们的Azure Portal
由其他团队管理。我们无法访问DocumentCollection
。有没有办法让我们看到cout
的磁盘使用情况? REST API 或 .NET API ?
答案 0 :(得分:1)
您可以使用client.ReadDocumentCollectionAsync来获取此信息,例如
ResourceResponse<DocumentCollection> response =
await client.ReadDocumentCollectionAsync(collectionLink);
Console.WriteLine(response.CollectionSizeQuota);
Console.WriteLine(response.CollectionSizeUsage);
有关详细信息,请参阅https://msdn.microsoft.com/en-us/library/microsoft.azure.documents.client.documentclient.readdocumentcollectionasync.aspx和https://msdn.microsoft.com/en-us/library/dn799209.aspx。
REST API中的等价物是来自GET集合的x-ms- *响应头。