Gremlin Graph Index Policy Args
data class GremlinGraphIndexPolicyArgs(val automatic: Output<Boolean>? = null, val compositeIndices: Output<List<GremlinGraphIndexPolicyCompositeIndexArgs>>? = null, val excludedPaths: Output<List<String>>? = null, val includedPaths: Output<List<String>>? = null, val indexingMode: Output<String>, val spatialIndices: Output<List<GremlinGraphIndexPolicySpatialIndexArgs>>? = null) : ConvertibleToJava<GremlinGraphIndexPolicyArgs>
Constructors
Link copied to clipboard
constructor(automatic: Output<Boolean>? = null, compositeIndices: Output<List<GremlinGraphIndexPolicyCompositeIndexArgs>>? = null, excludedPaths: Output<List<String>>? = null, includedPaths: Output<List<String>>? = null, indexingMode: Output<String>, spatialIndices: Output<List<GremlinGraphIndexPolicySpatialIndexArgs>>? = null)
Properties
Link copied to clipboard
One or more composite_index
blocks as defined below.
Link copied to clipboard
List of paths to exclude from indexing. Required if indexing_mode
is Consistent
or Lazy
.
Link copied to clipboard
List of paths to include in the indexing. Required if indexing_mode
is Consistent
or Lazy
.
Link copied to clipboard
Indicates the indexing mode. Possible values include: Consistent
, Lazy
, None
.
Link copied to clipboard
One or more spatial_index
blocks as defined below.