
com.pulumi.azurenative.compute.kotlin.outputs.CloudServiceRoleProfileResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.compute.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* Describes the role profile for the cloud service.
* @property roles List of roles for the cloud service.
*/
public data class CloudServiceRoleProfileResponse(
public val roles: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.compute.outputs.CloudServiceRoleProfileResponse): CloudServiceRoleProfileResponse = CloudServiceRoleProfileResponse(
roles = javaType.roles().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.compute.kotlin.outputs.CloudServiceRoleProfilePropertiesResponse.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy