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

com.pulumi.azure.network.kotlin.outputs.FirewallManagementIpConfiguration.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.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.network.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property name Specifies the name of the IP Configuration.
 * @property privateIpAddress The private IP address associated with the Firewall.
 * @property publicIpAddressId The ID of the Public IP Address associated with the firewall.
 * > **NOTE** The Public IP must have a `Static` allocation and `Standard` SKU.
 * @property subnetId Reference to the subnet associated with the IP Configuration. Changing this forces a new resource to be created.
 * > **NOTE** The Management Subnet used for the Firewall must have the name `AzureFirewallManagementSubnet` and the subnet mask must be at least a `/26`.
 */
public data class FirewallManagementIpConfiguration(
    public val name: String,
    public val privateIpAddress: String? = null,
    public val publicIpAddressId: String,
    public val subnetId: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.network.outputs.FirewallManagementIpConfiguration):
            FirewallManagementIpConfiguration = FirewallManagementIpConfiguration(
            name = javaType.name(),
            privateIpAddress = javaType.privateIpAddress().map({ args0 -> args0 }).orElse(null),
            publicIpAddressId = javaType.publicIpAddressId(),
            subnetId = javaType.subnetId(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy