com.pulumi.azure.pim.kotlin.outputs.ActiveRoleAssignmentTicket.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.pim.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property number User-supplied ticket number to be included with the request. Changing this forces a new resource to be created.
* @property system User-supplied ticket system name to be included with the request. Changing this forces a new resource to be created.
*/
public data class ActiveRoleAssignmentTicket(
public val number: String? = null,
public val system: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.pim.outputs.ActiveRoleAssignmentTicket): ActiveRoleAssignmentTicket = ActiveRoleAssignmentTicket(
number = javaType.number().map({ args0 -> args0 }).orElse(null),
system = javaType.system().map({ args0 -> args0 }).orElse(null),
)
}
}