Table of Contents

Class IncludedPath

Namespace
Microsoft.Azure.Management.CosmosDB.Fluent.Models
Assembly
Microsoft.Azure.Management.CosmosDB.Fluent.dll

The paths that are included in indexing

public class IncludedPath
Inheritance
IncludedPath
Inherited Members

Constructors

IncludedPath()

Initializes a new instance of the IncludedPath class.

public IncludedPath()

IncludedPath(string, IList<Indexes>)

Initializes a new instance of the IncludedPath class.

public IncludedPath(string path = null, IList<Indexes> indexes = null)

Parameters

path string

The path for which the indexing behavior applies to. Index paths typically start with root and end with wildcard (/path/*)

indexes IList<Indexes>

List of indexes for this path

Properties

Indexes

Gets or sets list of indexes for this path

public IList<Indexes> Indexes { get; set; }

Property Value

IList<Indexes>

Path

Gets or sets the path for which the indexing behavior applies to. Index paths typically start with root and end with wildcard (/path/*)

public string Path { get; set; }

Property Value

string