ContainerPartitionKey コンストラクター

定義

オーバーロード

ContainerPartitionKey()

ContainerPartitionKey クラスの新しいインスタンスを初期化します。

ContainerPartitionKey(IList<String>, String, Nullable<Int32>, Nullable<Boolean>)

ContainerPartitionKey クラスの新しいインスタンスを初期化します。

ContainerPartitionKey()

ContainerPartitionKey クラスの新しいインスタンスを初期化します。

public ContainerPartitionKey ();
Public Sub New ()

適用対象

ContainerPartitionKey(IList<String>, String, Nullable<Int32>, Nullable<Boolean>)

ContainerPartitionKey クラスの新しいインスタンスを初期化します。

public ContainerPartitionKey (System.Collections.Generic.IList<string> paths = default, string kind = default, int? version = default, bool? systemKey = default);
new Microsoft.Azure.Management.CosmosDB.Models.ContainerPartitionKey : System.Collections.Generic.IList<string> * string * Nullable<int> * Nullable<bool> -> Microsoft.Azure.Management.CosmosDB.Models.ContainerPartitionKey
Public Sub New (Optional paths As IList(Of String) = Nothing, Optional kind As String = Nothing, Optional version As Nullable(Of Integer) = Nothing, Optional systemKey As Nullable(Of Boolean) = Nothing)

パラメーター

paths
IList<String>

コンテナー内のどのデータをパーティション分割できるかを使用するパスの一覧

kind
String

パーティション分割に使用されるアルゴリズムの種類を示します。 MultiHash の場合、コンテナーの作成では、複数のパーティション キー (最大 3 つ) がサポートされます。 使用できる値は、'Hash'、'Range'、'MultiHash' です。

version
Nullable<Int32>

パーティション キー定義のバージョンを示します

systemKey
Nullable<Boolean>

コンテナーがシステムによって生成されたパーティション キーを使用しているかどうかを示します

適用対象