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

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