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

com.pulumi.azure.lab.kotlin.outputs.LabNetwork.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.lab.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property loadBalancerId The resource ID of the Load Balancer for the network profile of the Lab Service Lab.
 * @property publicIpId The resource ID of the Public IP for the network profile of the Lab Service Lab.
 * @property subnetId The resource ID of the Subnet for the network profile of the Lab Service Lab.
 */
public data class LabNetwork(
    public val loadBalancerId: String? = null,
    public val publicIpId: String? = null,
    public val subnetId: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.lab.outputs.LabNetwork): LabNetwork = LabNetwork(
            loadBalancerId = javaType.loadBalancerId().map({ args0 -> args0 }).orElse(null),
            publicIpId = javaType.publicIpId().map({ args0 -> args0 }).orElse(null),
            subnetId = javaType.subnetId().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy