
com.pulumi.azurenative.compute.kotlin.outputs.DedicatedHostGroupInstanceViewResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.compute.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property hosts List of instance view of the dedicated hosts under the dedicated host group.
*/
public data class DedicatedHostGroupInstanceViewResponse(
public val hosts: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.compute.outputs.DedicatedHostGroupInstanceViewResponse): DedicatedHostGroupInstanceViewResponse = DedicatedHostGroupInstanceViewResponse(
hosts = javaType.hosts().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.compute.kotlin.outputs.DedicatedHostInstanceViewWithNameResponse.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy