com.pulumi.azure.network.kotlin.outputs.FirewallManagementIpConfiguration.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 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