All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.network.kotlin.outputs.GetFirewallVirtualHub.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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