
com.pulumi.azurenative.azurelargeinstance.kotlin.outputs.NetworkProfileResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.azurelargeinstance.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Specifies the network settings for the Azure Large Instance disks.
* @property circuitId Specifies the circuit id for connecting to express route.
* @property networkInterfaces Specifies the network interfaces for the Azure Large 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.azurelargeinstance.outputs.NetworkProfileResponse): NetworkProfileResponse = NetworkProfileResponse(
circuitId = javaType.circuitId().map({ args0 -> args0 }).orElse(null),
networkInterfaces = javaType.networkInterfaces().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.azurelargeinstance.kotlin.outputs.IpAddressResponse.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy