
com.pulumi.azure.apimanagement.kotlin.inputs.BackendProxyArgs.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.apimanagement.kotlin.inputs
import com.pulumi.azure.apimanagement.inputs.BackendProxyArgs.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.jvm.JvmName
/**
*
* @property password The password to connect to the proxy server.
* @property url The URL of the proxy server.
* @property username The username to connect to the proxy server.
*/
public data class BackendProxyArgs(
public val password: Output? = null,
public val url: Output,
public val username: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.apimanagement.inputs.BackendProxyArgs =
com.pulumi.azure.apimanagement.inputs.BackendProxyArgs.builder()
.password(password?.applyValue({ args0 -> args0 }))
.url(url.applyValue({ args0 -> args0 }))
.username(username.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [BackendProxyArgs].
*/
@PulumiTagMarker
public class BackendProxyArgsBuilder internal constructor() {
private var password: Output? = null
private var url: Output? = null
private var username: Output? = null
/**
* @param value The password to connect to the proxy server.
*/
@JvmName("aguwltwsgxgkaipl")
public suspend fun password(`value`: Output) {
this.password = value
}
/**
* @param value The URL of the proxy server.
*/
@JvmName("xqlcukgnhrjsxaeh")
public suspend fun url(`value`: Output) {
this.url = value
}
/**
* @param value The username to connect to the proxy server.
*/
@JvmName("rxvqhktgflykfbys")
public suspend fun username(`value`: Output) {
this.username = value
}
/**
* @param value The password to connect to the proxy server.
*/
@JvmName("cnavctoasdbattif")
public suspend fun password(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.password = mapped
}
/**
* @param value The URL of the proxy server.
*/
@JvmName("luipuiebjobiaxfw")
public suspend fun url(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.url = mapped
}
/**
* @param value The username to connect to the proxy server.
*/
@JvmName("hpwytwbibgfwbgie")
public suspend fun username(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.username = mapped
}
internal fun build(): BackendProxyArgs = BackendProxyArgs(
password = password,
url = url ?: throw PulumiNullFieldException("url"),
username = username ?: throw PulumiNullFieldException("username"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy