Compartilhar via


IndexingPolicy Construtores

Definição

Sobrecargas

IndexingPolicy()

Inicializa uma nova instância da classe IndexingPolicy.

IndexingPolicy(Nullable<Boolean>, String, IList<IncludedPath>, IList<ExcludedPath>, IList<IList<CompositePath>>, IList<SpatialSpec>)

Inicializa uma nova instância da classe IndexingPolicy.

IndexingPolicy()

Inicializa uma nova instância da classe IndexingPolicy.

public IndexingPolicy ();
Public Sub New ()

Aplica-se a

IndexingPolicy(Nullable<Boolean>, String, IList<IncludedPath>, IList<ExcludedPath>, IList<IList<CompositePath>>, IList<SpatialSpec>)

Inicializa uma nova instância da classe IndexingPolicy.

public IndexingPolicy (bool? automatic = default, string indexingMode = default, System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.IncludedPath> includedPaths = default, System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.ExcludedPath> excludedPaths = default, System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.CompositePath>> compositeIndexes = default, System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.SpatialSpec> spatialIndexes = default);
new Microsoft.Azure.Management.CosmosDB.Models.IndexingPolicy : Nullable<bool> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.IncludedPath> * System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.ExcludedPath> * System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.CompositePath>> * System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.SpatialSpec> -> Microsoft.Azure.Management.CosmosDB.Models.IndexingPolicy
Public Sub New (Optional automatic As Nullable(Of Boolean) = Nothing, Optional indexingMode As String = Nothing, Optional includedPaths As IList(Of IncludedPath) = Nothing, Optional excludedPaths As IList(Of ExcludedPath) = Nothing, Optional compositeIndexes As IList(Of IList(Of CompositePath)) = Nothing, Optional spatialIndexes As IList(Of SpatialSpec) = Nothing)

Parâmetros

automatic
Nullable<Boolean>

Indica se a política de indexação é automática

indexingMode
String

Indica o modo de indexação. Os valores possíveis incluem: 'consistente', 'lento', 'nenhum'

includedPaths
IList<IncludedPath>

Lista de caminhos a serem incluídos na indexação

excludedPaths
IList<ExcludedPath>

Lista de caminhos a serem excluídos da indexação

compositeIndexes
IList<IList<CompositePath>>

Lista de lista de caminhos compostos

spatialIndexes
IList<SpatialSpec>

Lista de especificações espaciais

Aplica-se a