![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.lb.kotlin.outputs.GetLBFrontendIpConfiguration.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.lb.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property id The id of the Frontend IP Configuration.
* @property name Specifies the name of the Load Balancer.
* @property privateIpAddress Private IP Address to assign to the Load Balancer.
* @property privateIpAddressAllocation The allocation method for the Private IP Address used by this Load Balancer.
* @property privateIpAddressVersion The Private IP Address Version, either `IPv4` or `IPv6`.
* @property publicIpAddressId The ID of a Public IP Address which is associated with this Load Balancer.
* @property subnetId The ID of the Subnet which is associated with the IP Configuration.
* @property zones A list of Availability Zones which the Load Balancer's IP Addresses should be created in.
*/
public data class GetLBFrontendIpConfiguration(
public val id: String,
public val name: String,
public val privateIpAddress: String,
public val privateIpAddressAllocation: String,
public val privateIpAddressVersion: String,
public val publicIpAddressId: String,
public val subnetId: String,
public val zones: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.lb.outputs.GetLBFrontendIpConfiguration): GetLBFrontendIpConfiguration = GetLBFrontendIpConfiguration(
id = javaType.id(),
name = javaType.name(),
privateIpAddress = javaType.privateIpAddress(),
privateIpAddressAllocation = javaType.privateIpAddressAllocation(),
privateIpAddressVersion = javaType.privateIpAddressVersion(),
publicIpAddressId = javaType.publicIpAddressId(),
subnetId = javaType.subnetId(),
zones = javaType.zones().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy