All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.cosmos.models.PartitionKeyDefinitionVersion Maven / Gradle / Ivy

Go to download

This Package contains Microsoft Azure Cosmos SDK (with Reactive Extension Reactor support) for Azure Cosmos DB SQL API

There is a newer version: 4.60.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.models;

/**
 * Partitioning version.
 */
public enum PartitionKeyDefinitionVersion {

    /**
     * Original version of hash partitioning.
     */
    V1(1),

    /**
     * Enhanced version of hash partitioning - offers better distribution of long partition keys and uses less storage.
     * 

* This version should be used for any practical purpose, but it is available in newer SDKs only. */ V2(2); int val; PartitionKeyDefinitionVersion(int val) { this.val = val; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy