GremlinGraphIndexPolicyArgs

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
val automatic: Output<Boolean>? = null

Indicates if the indexing policy is automatic. Defaults to true.

Link copied to clipboard

One or more composite_index blocks as defined below.

Link copied to clipboard
val excludedPaths: Output<List<String>>? = null

List of paths to exclude from indexing. Required if indexing_mode is Consistent or Lazy.

Link copied to clipboard
val includedPaths: Output<List<String>>? = null

List of paths to include in the indexing. Required if indexing_mode is Consistent or Lazy.

Link copied to clipboard
val indexingMode: Output<String>

Indicates the indexing mode. Possible values include: Consistent, Lazy, None.

Link copied to clipboard

One or more spatial_index blocks as defined below.

Functions

Link copied to clipboard
open override fun toJava(): GremlinGraphIndexPolicyArgs