com.pulumi.azure.pim.kotlin.outputs.ActiveRoleAssignmentTicket.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy