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

com.pulumi.azure.network.kotlin.outputs.GetVirtualWanResult.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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map

/**
 * A collection of values returned by getVirtualWan.
 * @property allowBranchToBranchTraffic Is branch to branch traffic is allowed?
 * @property disableVpnEncryption Is VPN Encryption disabled?
 * @property id The provider-assigned unique ID for this managed resource.
 * @property location The Azure Region where the Virtual Wan exists.
 * @property name
 * @property office365LocalBreakoutCategory The Office365 Local Breakout Category.
 * @property resourceGroupName
 * @property sku Type of Virtual Wan (Basic or Standard).
 * @property tags A mapping of tags assigned to the Virtual Wan.
 * @property virtualHubIds A list of Virtual Hubs IDs attached to this Virtual WAN.
 * @property vpnSiteIds A list of VPN Site IDs attached to this Virtual WAN.
 */
public data class GetVirtualWanResult(
    public val allowBranchToBranchTraffic: Boolean,
    public val disableVpnEncryption: Boolean,
    public val id: String,
    public val location: String,
    public val name: String,
    public val office365LocalBreakoutCategory: String,
    public val resourceGroupName: String,
    public val sku: String,
    public val tags: Map,
    public val virtualHubIds: List,
    public val vpnSiteIds: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetVirtualWanResult):
            GetVirtualWanResult = GetVirtualWanResult(
            allowBranchToBranchTraffic = javaType.allowBranchToBranchTraffic(),
            disableVpnEncryption = javaType.disableVpnEncryption(),
            id = javaType.id(),
            location = javaType.location(),
            name = javaType.name(),
            office365LocalBreakoutCategory = javaType.office365LocalBreakoutCategory(),
            resourceGroupName = javaType.resourceGroupName(),
            sku = javaType.sku(),
            tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            virtualHubIds = javaType.virtualHubIds().map({ args0 -> args0 }),
            vpnSiteIds = javaType.vpnSiteIds().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy