![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.documentdb.kotlin.inputs.MongoIndexKeysArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.documentdb.kotlin.inputs
import com.pulumi.azurenative.documentdb.inputs.MongoIndexKeysArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Cosmos DB MongoDB collection resource object
* @property keys List of keys for each MongoDB collection in the Azure Cosmos DB service
*/
public data class MongoIndexKeysArgs(
public val keys: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.documentdb.inputs.MongoIndexKeysArgs =
com.pulumi.azurenative.documentdb.inputs.MongoIndexKeysArgs.builder()
.keys(keys?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [MongoIndexKeysArgs].
*/
@PulumiTagMarker
public class MongoIndexKeysArgsBuilder internal constructor() {
private var keys: Output>? = null
/**
* @param value List of keys for each MongoDB collection in the Azure Cosmos DB service
*/
@JvmName("sydlplillaygldnu")
public suspend fun keys(`value`: Output>) {
this.keys = value
}
@JvmName("teturitnrhypuyxo")
public suspend fun keys(vararg values: Output) {
this.keys = Output.all(values.asList())
}
/**
* @param values List of keys for each MongoDB collection in the Azure Cosmos DB service
*/
@JvmName("fsrlgbxayfnowilu")
public suspend fun keys(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy