IWithPartitionKey.WithPartitionKey Method

Definition

Overloads

WithPartitionKey(ContainerPartitionKey)

Specifies the container partition key.

WithPartitionKey(IList<String>, PartitionKind, Nullable<Int32>)

Specifies the container partition key.

WithPartitionKey(ContainerPartitionKey)

Specifies the container partition key.

public Microsoft.Azure.Management.CosmosDB.Fluent.GremlinGraph.Update.IUpdate WithPartitionKey (Microsoft.Azure.Management.CosmosDB.Fluent.Models.ContainerPartitionKey containerPartitionKey);
abstract member WithPartitionKey : Microsoft.Azure.Management.CosmosDB.Fluent.Models.ContainerPartitionKey -> Microsoft.Azure.Management.CosmosDB.Fluent.GremlinGraph.Update.IUpdate
Public Function WithPartitionKey (containerPartitionKey As ContainerPartitionKey) As IUpdate

Parameters

containerPartitionKey
ContainerPartitionKey

The whole object of the container partition key.

Returns

The next stage of the update.

Applies to

WithPartitionKey(IList<String>, PartitionKind, Nullable<Int32>)

Specifies the container partition key.

public Microsoft.Azure.Management.CosmosDB.Fluent.GremlinGraph.Update.IUpdate WithPartitionKey (System.Collections.Generic.IList<string> paths, Microsoft.Azure.Management.CosmosDB.Fluent.Models.PartitionKind kind, int? version);
abstract member WithPartitionKey : System.Collections.Generic.IList<string> * Microsoft.Azure.Management.CosmosDB.Fluent.Models.PartitionKind * Nullable<int> -> Microsoft.Azure.Management.CosmosDB.Fluent.GremlinGraph.Update.IUpdate
Public Function WithPartitionKey (paths As IList(Of String), kind As PartitionKind, version As Nullable(Of Integer)) As IUpdate

Parameters

paths
IList<String>

List of paths using which data within the container can be partitioned.

kind
PartitionKind

Indicates the kind of algorithm used for partitioning. Possible values include: 'Hash', 'Range'.

version
Nullable<Int32>

Indicates the version of the partition key definition.

Returns

The next stage of the update.

Applies to