![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.web.kotlin.inputs.ConnectionGatewayDefinitionPropertiesArgs.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.web.kotlin.inputs
import com.pulumi.azurenative.web.inputs.ConnectionGatewayDefinitionPropertiesArgs.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.Any
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property backendUri The URI of the backend
* @property connectionGatewayInstallation The gateway installation reference
* @property contactInformation The gateway admin
* @property description The gateway description
* @property displayName The gateway display name
* @property machineName The machine name of the gateway
* @property status The gateway status
*/
public data class ConnectionGatewayDefinitionPropertiesArgs(
public val backendUri: Output? = null,
public val connectionGatewayInstallation: Output? = null,
public val contactInformation: Output>? = null,
public val description: Output? = null,
public val displayName: Output? = null,
public val machineName: Output? = null,
public val status: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.web.inputs.ConnectionGatewayDefinitionPropertiesArgs = com.pulumi.azurenative.web.inputs.ConnectionGatewayDefinitionPropertiesArgs.builder()
.backendUri(backendUri?.applyValue({ args0 -> args0 }))
.connectionGatewayInstallation(
connectionGatewayInstallation?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
)
.contactInformation(contactInformation?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.description(description?.applyValue({ args0 -> args0 }))
.displayName(displayName?.applyValue({ args0 -> args0 }))
.machineName(machineName?.applyValue({ args0 -> args0 }))
.status(status?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ConnectionGatewayDefinitionPropertiesArgs].
*/
@PulumiTagMarker
public class ConnectionGatewayDefinitionPropertiesArgsBuilder internal constructor() {
private var backendUri: Output? = null
private var connectionGatewayInstallation: Output? = null
private var contactInformation: Output>? = null
private var description: Output? = null
private var displayName: Output? = null
private var machineName: Output? = null
private var status: Output? = null
/**
* @param value The URI of the backend
*/
@JvmName("oraxlxilrxnlrfnq")
public suspend fun backendUri(`value`: Output) {
this.backendUri = value
}
/**
* @param value The gateway installation reference
*/
@JvmName("mgwfufavujnhpwjj")
public suspend fun connectionGatewayInstallation(`value`: Output) {
this.connectionGatewayInstallation = value
}
/**
* @param value The gateway admin
*/
@JvmName("kuwiomjuwqpvbvfs")
public suspend fun contactInformation(`value`: Output>) {
this.contactInformation = value
}
@JvmName("qxusxxviiltmfnld")
public suspend fun contactInformation(vararg values: Output) {
this.contactInformation = Output.all(values.asList())
}
/**
* @param values The gateway admin
*/
@JvmName("mlerfqppehrqndhw")
public suspend fun contactInformation(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy