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

com.pulumi.azurenative.cloudngfw.kotlin.outputs.VwanConfigurationResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.cloudngfw.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * VwanInfo for Firewall Networking
 * @property ipOfTrustSubnetForUdr IP of trust subnet for UDR
 * @property networkVirtualApplianceId Network Virtual Appliance resource ID
 * @property trustSubnet Trust Subnet
 * @property unTrustSubnet Untrust Subnet
 * @property vHub vHub Address
 */
public data class VwanConfigurationResponse(
    public val ipOfTrustSubnetForUdr: IPAddressResponse? = null,
    public val networkVirtualApplianceId: String? = null,
    public val trustSubnet: IPAddressSpaceResponse? = null,
    public val unTrustSubnet: IPAddressSpaceResponse? = null,
    public val vHub: IPAddressSpaceResponse,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.cloudngfw.outputs.VwanConfigurationResponse): VwanConfigurationResponse = VwanConfigurationResponse(
            ipOfTrustSubnetForUdr = javaType.ipOfTrustSubnetForUdr().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azurenative.cloudngfw.kotlin.outputs.IPAddressResponse.Companion.toKotlin(args0)
                })
            }).orElse(null),
            networkVirtualApplianceId = javaType.networkVirtualApplianceId().map({ args0 ->
                args0
            }).orElse(null),
            trustSubnet = javaType.trustSubnet().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azurenative.cloudngfw.kotlin.outputs.IPAddressSpaceResponse.Companion.toKotlin(args0)
                })
            }).orElse(null),
            unTrustSubnet = javaType.unTrustSubnet().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azurenative.cloudngfw.kotlin.outputs.IPAddressSpaceResponse.Companion.toKotlin(args0)
                })
            }).orElse(null),
            vHub = javaType.vHub().let({ args0 ->
                com.pulumi.azurenative.cloudngfw.kotlin.outputs.IPAddressSpaceResponse.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy