com.pulumi.azurenative.hdinsight.kotlin.outputs.ComputeProfileResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.hdinsight.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* Describes the compute profile.
* @property roles The list of roles in the cluster.
*/
public data class ComputeProfileResponse(
public val roles: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.hdinsight.outputs.ComputeProfileResponse): ComputeProfileResponse = ComputeProfileResponse(
roles = javaType.roles().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.hdinsight.kotlin.outputs.RoleResponse.Companion.toKotlin(args0)
})
}),
)
}
}