com.pulumi.gcp.clouddomains.kotlin.inputs.RegistrationDnsSettingsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.clouddomains.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.clouddomains.inputs.RegistrationDnsSettingsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property customDns Configuration for an arbitrary DNS provider.
* Structure is documented below.
* @property glueRecords The list of glue records for this Registration. Commonly empty.
* Structure is documented below.
*/
public data class RegistrationDnsSettingsArgs(
public val customDns: Output? = null,
public val glueRecords: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.clouddomains.inputs.RegistrationDnsSettingsArgs =
com.pulumi.gcp.clouddomains.inputs.RegistrationDnsSettingsArgs.builder()
.customDns(customDns?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.glueRecords(
glueRecords?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [RegistrationDnsSettingsArgs].
*/
@PulumiTagMarker
public class RegistrationDnsSettingsArgsBuilder internal constructor() {
private var customDns: Output? = null
private var glueRecords: Output>? = null
/**
* @param value Configuration for an arbitrary DNS provider.
* Structure is documented below.
*/
@JvmName("wblsjajcpclkqftv")
public suspend fun customDns(`value`: Output) {
this.customDns = value
}
/**
* @param value The list of glue records for this Registration. Commonly empty.
* Structure is documented below.
*/
@JvmName("txldxioacotvhron")
public suspend fun glueRecords(`value`: Output>) {
this.glueRecords = value
}
@JvmName("rbcblwsdcjtmnpak")
public suspend fun glueRecords(vararg values: Output) {
this.glueRecords = Output.all(values.asList())
}
/**
* @param values The list of glue records for this Registration. Commonly empty.
* Structure is documented below.
*/
@JvmName("kcweupunjjbryvqf")
public suspend fun glueRecords(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy