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

com.pulumi.azure.devtest.kotlin.outputs.GetVirtualNetworkResult.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.devtest.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * A collection of values returned by getVirtualNetwork.
 * @property allowedSubnets The list of subnets enabled for the virtual network as defined below.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property labName
 * @property name
 * @property resourceGroupName
 * @property subnetOverrides The list of permission overrides for the subnets as defined below.
 * @property uniqueIdentifier The unique immutable identifier of the virtual network.
 */
public data class GetVirtualNetworkResult(
    public val allowedSubnets: List,
    public val id: String,
    public val labName: String,
    public val name: String,
    public val resourceGroupName: String,
    public val subnetOverrides: List,
    public val uniqueIdentifier: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.devtest.outputs.GetVirtualNetworkResult): GetVirtualNetworkResult = GetVirtualNetworkResult(
            allowedSubnets = javaType.allowedSubnets().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.devtest.kotlin.outputs.GetVirtualNetworkAllowedSubnet.Companion.toKotlin(args0)
                })
            }),
            id = javaType.id(),
            labName = javaType.labName(),
            name = javaType.name(),
            resourceGroupName = javaType.resourceGroupName(),
            subnetOverrides = javaType.subnetOverrides().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.devtest.kotlin.outputs.GetVirtualNetworkSubnetOverride.Companion.toKotlin(args0)
                })
            }),
            uniqueIdentifier = javaType.uniqueIdentifier(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy