![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.devtest.kotlin.outputs.GetVirtualNetworkResult.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.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