com.pulumi.azure.devtest.kotlin.outputs.GetVirtualNetworkSubnetOverride.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
/**
*
* @property labSubnetName The name of the subnet.
* @property resourceId The resource identifier for the subnet.
* @property useInVmCreationPermission Indicates if the subnet can be used for VM creation. Possible values are `Allow`, `Default` and `Deny`.
* @property usePublicIpAddressPermission
* @property virtualNetworkPoolName The virtual network pool associated with this subnet.
*/
public data class GetVirtualNetworkSubnetOverride(
public val labSubnetName: String,
public val resourceId: String,
public val useInVmCreationPermission: String,
public val usePublicIpAddressPermission: String,
public val virtualNetworkPoolName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.devtest.outputs.GetVirtualNetworkSubnetOverride):
GetVirtualNetworkSubnetOverride = GetVirtualNetworkSubnetOverride(
labSubnetName = javaType.labSubnetName(),
resourceId = javaType.resourceId(),
useInVmCreationPermission = javaType.useInVmCreationPermission(),
usePublicIpAddressPermission = javaType.usePublicIpAddressPermission(),
virtualNetworkPoolName = javaType.virtualNetworkPoolName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy