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
}