Class IncludedPath
- 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
stringThe 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
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; }