![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.network.kotlin.outputs.ApplicationGatewayGatewayIpConfiguration.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.network.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property id The ID of the Rewrite Rule Set
* @property name The Name of this Gateway IP Configuration.
* @property subnetId The ID of the Subnet which the Application Gateway should be connected to.
*/
public data class ApplicationGatewayGatewayIpConfiguration(
public val id: String? = null,
public val name: String,
public val subnetId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.ApplicationGatewayGatewayIpConfiguration): ApplicationGatewayGatewayIpConfiguration = ApplicationGatewayGatewayIpConfiguration(
id = javaType.id().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
subnetId = javaType.subnetId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy