![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.sql.kotlin.inputs.SyncGroupSchemaArgs.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.sql.kotlin.inputs
import com.pulumi.azurenative.sql.inputs.SyncGroupSchemaArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Properties of sync group schema.
* @property masterSyncMemberName Name of master sync member where the schema is from.
* @property tables List of tables in sync group schema.
*/
public data class SyncGroupSchemaArgs(
public val masterSyncMemberName: Output? = null,
public val tables: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.sql.inputs.SyncGroupSchemaArgs =
com.pulumi.azurenative.sql.inputs.SyncGroupSchemaArgs.builder()
.masterSyncMemberName(masterSyncMemberName?.applyValue({ args0 -> args0 }))
.tables(
tables?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [SyncGroupSchemaArgs].
*/
@PulumiTagMarker
public class SyncGroupSchemaArgsBuilder internal constructor() {
private var masterSyncMemberName: Output? = null
private var tables: Output>? = null
/**
* @param value Name of master sync member where the schema is from.
*/
@JvmName("uhctqgmgrhqelcab")
public suspend fun masterSyncMemberName(`value`: Output) {
this.masterSyncMemberName = value
}
/**
* @param value List of tables in sync group schema.
*/
@JvmName("mbyerclabhcbobiq")
public suspend fun tables(`value`: Output>) {
this.tables = value
}
@JvmName("qhoxoqwlrdckkfwk")
public suspend fun tables(vararg values: Output) {
this.tables = Output.all(values.asList())
}
/**
* @param values List of tables in sync group schema.
*/
@JvmName("whaqphayvkpnexxf")
public suspend fun tables(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy