Database.CreateContainerStreamAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
CreateContainerStreamAsync(ContainerProperties, ThroughputProperties, RequestOptions, CancellationToken) |
Azure Cosmos サービスで非同期操作としてコンテナーを作成します。 |
CreateContainerStreamAsync(ContainerProperties, Nullable<Int32>, RequestOptions, CancellationToken) |
Azure Cosmos サービスで非同期操作としてコンテナーを作成します。 |
CreateContainerStreamAsync(ContainerProperties, ThroughputProperties, RequestOptions, CancellationToken)
Azure Cosmos サービスで非同期操作としてコンテナーを作成します。
public abstract System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ResponseMessage> CreateContainerStreamAsync (Microsoft.Azure.Cosmos.ContainerProperties containerProperties, Microsoft.Azure.Cosmos.ThroughputProperties throughputProperties, Microsoft.Azure.Cosmos.RequestOptions requestOptions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateContainerStreamAsync : Microsoft.Azure.Cosmos.ContainerProperties * Microsoft.Azure.Cosmos.ThroughputProperties * Microsoft.Azure.Cosmos.RequestOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ResponseMessage>
Public MustOverride Function CreateContainerStreamAsync (containerProperties As ContainerProperties, throughputProperties As ThroughputProperties, Optional requestOptions As RequestOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ResponseMessage)
パラメーター
- containerProperties
- ContainerProperties
ContainerProperties オブジェクト。
- throughputProperties
- ThroughputProperties
(省略可能)Azure Cosmos DB サービスの 1 秒あたりの要求ユニット数の測定でコンテナーにプロビジョニングされるスループット。
- requestOptions
- RequestOptions
(省略可能)コンテナー要求のオプション。
- cancellationToken
- CancellationToken
(省略可能) CancellationToken 要求の取り消しを表します。
戻り値
作成 Task されたリソース レコードを ResponseMessage 含む を含む 。
例
Azure Cosmos サービスで非同期操作としてコンテナーを作成し、ストリーム応答を返します。
ContainerProperties containerProperties = new ContainerProperties()
{
Id = Guid.NewGuid().ToString(),
PartitionKeyPath = "/pk",
};
using(ResponseMessage response = await this.cosmosDatabase.CreateContainerStreamAsync(
containerProperties,
ThroughputProperties.CreateAutoscaleThroughput(10000)))
{
}
こちらもご覧ください
適用対象
CreateContainerStreamAsync(ContainerProperties, Nullable<Int32>, RequestOptions, CancellationToken)
Azure Cosmos サービスで非同期操作としてコンテナーを作成します。
public abstract System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ResponseMessage> CreateContainerStreamAsync (Microsoft.Azure.Cosmos.ContainerProperties containerProperties, int? throughput = default, Microsoft.Azure.Cosmos.RequestOptions requestOptions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateContainerStreamAsync : Microsoft.Azure.Cosmos.ContainerProperties * Nullable<int> * Microsoft.Azure.Cosmos.RequestOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ResponseMessage>
Public MustOverride Function CreateContainerStreamAsync (containerProperties As ContainerProperties, Optional throughput As Nullable(Of Integer) = Nothing, Optional requestOptions As RequestOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ResponseMessage)
パラメーター
- containerProperties
- ContainerProperties
ContainerProperties オブジェクト。
- requestOptions
- RequestOptions
(省略可能)コンテナー要求のオプション。
- cancellationToken
- CancellationToken
(省略可能) CancellationToken 要求の取り消しを表します。
戻り値
作成 Task されたリソース レコードを ResponseMessage 含む を含む 。
例
Azure Cosmos サービスで非同期操作としてコンテナーを作成し、ストリーム応答を返します。
ContainerProperties containerProperties = new ContainerProperties()
{
Id = Guid.NewGuid().ToString(),
PartitionKeyPath = "/pk",
};
using(ResponseMessage response = await this.cosmosDatabase.CreateContainerStreamAsync(containerProperties))
{
}
注釈
https://docs.microsoft.com/azure/cosmos-db/request-units プロビジョニングスループットの詳細については、次を参照してください。
こちらもご覧ください
適用対象
Azure SDK for .NET