![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.cosmosdb.kotlin.inputs.AccountRestoreGremlinDatabaseArgs.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.inputs
import com.pulumi.azure.cosmosdb.inputs.AccountRestoreGremlinDatabaseArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property graphNames A list of the Graph names for the restore request. Changing this forces a new resource to be created.
* @property name The Gremlin Database name for the restore request. Changing this forces a new resource to be created.
*/
public data class AccountRestoreGremlinDatabaseArgs(
public val graphNames: Output>? = null,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.cosmosdb.inputs.AccountRestoreGremlinDatabaseArgs =
com.pulumi.azure.cosmosdb.inputs.AccountRestoreGremlinDatabaseArgs.builder()
.graphNames(graphNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AccountRestoreGremlinDatabaseArgs].
*/
@PulumiTagMarker
public class AccountRestoreGremlinDatabaseArgsBuilder internal constructor() {
private var graphNames: Output>? = null
private var name: Output? = null
/**
* @param value A list of the Graph names for the restore request. Changing this forces a new resource to be created.
*/
@JvmName("ybufjmfruolhfosv")
public suspend fun graphNames(`value`: Output>) {
this.graphNames = value
}
@JvmName("hevruofewkepnpag")
public suspend fun graphNames(vararg values: Output) {
this.graphNames = Output.all(values.asList())
}
/**
* @param values A list of the Graph names for the restore request. Changing this forces a new resource to be created.
*/
@JvmName("pyrbgrcxidiswjvb")
public suspend fun graphNames(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy