
com.pulumi.azurenative.documentdb.kotlin.inputs.GremlinDatabaseRestoreResourceArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.documentdb.kotlin.inputs
import com.pulumi.azurenative.documentdb.inputs.GremlinDatabaseRestoreResourceArgs.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
/**
* Specific Gremlin Databases to restore.
* @property databaseName The name of the gremlin database available for restore.
* @property graphNames The names of the graphs available for restore.
*/
public data class GremlinDatabaseRestoreResourceArgs(
public val databaseName: Output? = null,
public val graphNames: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.documentdb.inputs.GremlinDatabaseRestoreResourceArgs = com.pulumi.azurenative.documentdb.inputs.GremlinDatabaseRestoreResourceArgs.builder()
.databaseName(databaseName?.applyValue({ args0 -> args0 }))
.graphNames(graphNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [GremlinDatabaseRestoreResourceArgs].
*/
@PulumiTagMarker
public class GremlinDatabaseRestoreResourceArgsBuilder internal constructor() {
private var databaseName: Output? = null
private var graphNames: Output>? = null
/**
* @param value The name of the gremlin database available for restore.
*/
@JvmName("xbkxjxhvabadgrar")
public suspend fun databaseName(`value`: Output) {
this.databaseName = value
}
/**
* @param value The names of the graphs available for restore.
*/
@JvmName("vhoounhwwqvchmyo")
public suspend fun graphNames(`value`: Output>) {
this.graphNames = value
}
@JvmName("ywirynmtxisdblkf")
public suspend fun graphNames(vararg values: Output) {
this.graphNames = Output.all(values.asList())
}
/**
* @param values The names of the graphs available for restore.
*/
@JvmName("ngvdffcfpademufd")
public suspend fun graphNames(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy