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

com.microsoft.azure.documentdb.IndexingDirective Maven / Gradle / Ivy

/* 
 * Copyright (c) Microsoft Corporation.  All rights reserved.
 */

package com.microsoft.azure.documentdb;

/**
 * Specifies whether or not the resource is to be indexed in the Azure Cosmos DB database service.
 */
public enum IndexingDirective {

    /**
     * Use any pre-defined/pre-configured defaults.
     */
    Default,

    /**
     * Index the resource.
     */
    Include,

    /**
     * Do not index the resource.
     */
    Exclude
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy