All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.pim.kotlin.outputs.EligibleRoleAssignmentTicket.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 EligibleRoleAssignmentTicket(
    public val number: String? = null,
    public val system: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.pim.outputs.EligibleRoleAssignmentTicket): EligibleRoleAssignmentTicket = EligibleRoleAssignmentTicket(
            number = javaType.number().map({ args0 -> args0 }).orElse(null),
            system = javaType.system().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy