Sql Container Indexing Policy
data class SqlContainerIndexingPolicy(val compositeIndices: List<SqlContainerIndexingPolicyCompositeIndex>? = null, val excludedPaths: List<SqlContainerIndexingPolicyExcludedPath>? = null, val includedPaths: List<SqlContainerIndexingPolicyIncludedPath>? = null, val indexingMode: String? = null, val spatialIndices: List<SqlContainerIndexingPolicySpatialIndex>? = null)
Constructors
Link copied to clipboard
constructor(compositeIndices: List<SqlContainerIndexingPolicyCompositeIndex>? = null, excludedPaths: List<SqlContainerIndexingPolicyExcludedPath>? = null, includedPaths: List<SqlContainerIndexingPolicyIncludedPath>? = null, indexingMode: String? = null, spatialIndices: List<SqlContainerIndexingPolicySpatialIndex>? = null)
Properties
Link copied to clipboard
One or more composite_index
blocks as defined below.
Link copied to clipboard
One or more excluded_path
blocks as defined below. Either included_path
or excluded_path
must contain the path
/*
Link copied to clipboard
One or more included_path
blocks as defined below. Either included_path
or excluded_path
must contain the path
/*
Link copied to clipboard
Indicates the indexing mode. Possible values include: consistent
and none
. Defaults to consistent
.
Link copied to clipboard
One or more spatial_index
blocks as defined below. //