com.pulumi.azure.network.kotlin.outputs.GetApplicationGatewayFrontendIpConfiguration.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 Application Gateway.
* @property privateIpAddress The Static IP Address which is used.
* @property privateIpAddressAllocation The allocation method used for the Private IP Address.
* @property privateLinkConfigurationId The ID of the associated Private Link configuration.
* @property privateLinkConfigurationName The name of the Private Link configuration in use by this Frontend IP Configuration.
* @property publicIpAddressId The ID of the Public IP Address which the Application Gateway will use.
* @property subnetId The ID of the subnet the private link configuration is connected to.
*/
public data class GetApplicationGatewayFrontendIpConfiguration(
public val id: String,
public val name: String,
public val privateIpAddress: String,
public val privateIpAddressAllocation: String,
public val privateLinkConfigurationId: String,
public val privateLinkConfigurationName: String,
public val publicIpAddressId: String,
public val subnetId: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetApplicationGatewayFrontendIpConfiguration):
GetApplicationGatewayFrontendIpConfiguration = GetApplicationGatewayFrontendIpConfiguration(
id = javaType.id(),
name = javaType.name(),
privateIpAddress = javaType.privateIpAddress(),
privateIpAddressAllocation = javaType.privateIpAddressAllocation(),
privateLinkConfigurationId = javaType.privateLinkConfigurationId(),
privateLinkConfigurationName = javaType.privateLinkConfigurationName(),
publicIpAddressId = javaType.publicIpAddressId(),
subnetId = javaType.subnetId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy