
com.pulumi.azure.apimanagement.kotlin.inputs.GetGatewayHostNameConfigurationPlainArgs.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.GetGatewayHostNameConfigurationPlainArgs.builder
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
/**
* A collection of arguments for invoking getGatewayHostNameConfiguration.
* @property apiManagementId The ID of the API Management Service.
* @property gatewayName The name of the API Management Gateway.
* *
* @property name The name of the API Management Gateway Host Name Configuration.
*/
public data class GetGatewayHostNameConfigurationPlainArgs(
public val apiManagementId: String,
public val gatewayName: String,
public val name: String,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.apimanagement.inputs.GetGatewayHostNameConfigurationPlainArgs =
com.pulumi.azure.apimanagement.inputs.GetGatewayHostNameConfigurationPlainArgs.builder()
.apiManagementId(apiManagementId.let({ args0 -> args0 }))
.gatewayName(gatewayName.let({ args0 -> args0 }))
.name(name.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetGatewayHostNameConfigurationPlainArgs].
*/
@PulumiTagMarker
public class GetGatewayHostNameConfigurationPlainArgsBuilder internal constructor() {
private var apiManagementId: String? = null
private var gatewayName: String? = null
private var name: String? = null
/**
* @param value The ID of the API Management Service.
*/
@JvmName("katvgsexxpognwjw")
public suspend fun apiManagementId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.apiManagementId = mapped
}
/**
* @param value The name of the API Management Gateway.
* *
*/
@JvmName("ljturngflpapmpal")
public suspend fun gatewayName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.gatewayName = mapped
}
/**
* @param value The name of the API Management Gateway Host Name Configuration.
*/
@JvmName("vnmvyegevuummmcg")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.name = mapped
}
internal fun build(): GetGatewayHostNameConfigurationPlainArgs =
GetGatewayHostNameConfigurationPlainArgs(
apiManagementId = apiManagementId ?: throw PulumiNullFieldException("apiManagementId"),
gatewayName = gatewayName ?: throw PulumiNullFieldException("gatewayName"),
name = name ?: throw PulumiNullFieldException("name"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy