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

com.pulumi.azure.pim.kotlin.inputs.ActiveRoleAssignmentTicketArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.pim.kotlin.inputs

import com.pulumi.azure.pim.inputs.ActiveRoleAssignmentTicketArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @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 ActiveRoleAssignmentTicketArgs(
    public val number: Output? = null,
    public val system: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.pim.inputs.ActiveRoleAssignmentTicketArgs =
        com.pulumi.azure.pim.inputs.ActiveRoleAssignmentTicketArgs.builder()
            .number(number?.applyValue({ args0 -> args0 }))
            .system(system?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ActiveRoleAssignmentTicketArgs].
 */
@PulumiTagMarker
public class ActiveRoleAssignmentTicketArgsBuilder internal constructor() {
    private var number: Output? = null

    private var system: Output? = null

    /**
     * @param value User-supplied ticket number to be included with the request. Changing this forces a new resource to be created.
     */
    @JvmName("bdmdsjajwqorqdnr")
    public suspend fun number(`value`: Output) {
        this.number = value
    }

    /**
     * @param value User-supplied ticket system name to be included with the request. Changing this forces a new resource to be created.
     */
    @JvmName("wsndswxaanvujgvr")
    public suspend fun system(`value`: Output) {
        this.system = value
    }

    /**
     * @param value User-supplied ticket number to be included with the request. Changing this forces a new resource to be created.
     */
    @JvmName("pfuwyllfhtmvbyqp")
    public suspend fun number(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.number = mapped
    }

    /**
     * @param value User-supplied ticket system name to be included with the request. Changing this forces a new resource to be created.
     */
    @JvmName("hbtlwytduiqilsnx")
    public suspend fun system(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.system = mapped
    }

    internal fun build(): ActiveRoleAssignmentTicketArgs = ActiveRoleAssignmentTicketArgs(
        number = number,
        system = system,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy