Class GremlinGraphIndexPolicyArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.CosmosDB.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class GremlinGraphIndexPolicyArgs : ResourceArgs
Constructors
View SourceGremlinGraphIndexPolicyArgs()
Declaration
public GremlinGraphIndexPolicyArgs()
Properties
View SourceAutomatic
Indicates if the indexing policy is automatic. Defaults to true.
Declaration
public Input<bool> Automatic { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
ExcludedPaths
List of paths to exclude from indexing. Required if indexing_mode is Consistent or Lazy.
Declaration
public InputList<string> ExcludedPaths { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
IncludedPaths
List of paths to include in the indexing. Required if indexing_mode is Consistent or Lazy.
Declaration
public InputList<string> IncludedPaths { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
IndexingMode
Indicates the indexing mode. Possible values include: Consistent, Lazy, None.
Declaration
public Input<string> IndexingMode { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |