com.pulumi.azure.network.kotlin.outputs.GetFirewallVirtualHub.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property privateIpAddress The private IP address associated with the Azure Firewall.
* @property publicIpAddresses The list of public IP addresses associated with the Azure Firewall.
* @property publicIpCount The number of public IPs assigned to the Azure Firewall.
* @property virtualHubId The ID of the Virtual Hub where the Azure Firewall resides in.
*/
public data class GetFirewallVirtualHub(
public val privateIpAddress: String,
public val publicIpAddresses: List,
public val publicIpCount: Int,
public val virtualHubId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetFirewallVirtualHub):
GetFirewallVirtualHub = GetFirewallVirtualHub(
privateIpAddress = javaType.privateIpAddress(),
publicIpAddresses = javaType.publicIpAddresses().map({ args0 -> args0 }),
publicIpCount = javaType.publicIpCount(),
virtualHubId = javaType.virtualHubId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy