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

com.pulumi.azurenative.baremetalinfrastructure.kotlin.outputs.NetworkProfileResponse.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.baremetalinfrastructure.kotlin.outputs

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

/**
 * Specifies the network settings for the Azure Bare Metal Instance disks.
 * @property circuitId Specifies the circuit id for connecting to express route.
 * @property networkInterfaces Specifies the network interfaces for the Azure Bare Metal Instance.
 */
public data class NetworkProfileResponse(
    public val circuitId: String? = null,
    public val networkInterfaces: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.baremetalinfrastructure.outputs.NetworkProfileResponse): NetworkProfileResponse = NetworkProfileResponse(
            circuitId = javaType.circuitId().map({ args0 -> args0 }).orElse(null),
            networkInterfaces = javaType.networkInterfaces().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azurenative.baremetalinfrastructure.kotlin.outputs.NetworkInterfaceResponse.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy