com.pulumi.azure.cosmosdb.kotlin.outputs.GremlinGraphIndexPolicyCompositeIndexIndex.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.cosmosdb.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property order Order of the index. Possible values are `Ascending` or `Descending`.
* @property path Path for which the indexing behaviour applies to.
*/
public data class GremlinGraphIndexPolicyCompositeIndexIndex(
public val order: String,
public val path: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.cosmosdb.outputs.GremlinGraphIndexPolicyCompositeIndexIndex):
GremlinGraphIndexPolicyCompositeIndexIndex = GremlinGraphIndexPolicyCompositeIndexIndex(
order = javaType.order(),
path = javaType.path(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy