![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.lab.kotlin.inputs.LabRosterArgs.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.lab.kotlin.inputs
import com.pulumi.azure.lab.inputs.LabRosterArgs.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 activeDirectoryGroupId The AAD group ID which this Lab Service Lab roster is populated from.
* @property lmsInstance The base URI identifying the lms instance.
* @property ltiClientId The unique id of the Azure Lab Service tool in the lms.
* @property ltiContextId The unique context identifier for the Lab Service Lab in the lms.
* @property ltiRosterEndpoint The URI of the names and roles service endpoint on the lms for the class attached to this Lab Service Lab.
*/
public data class LabRosterArgs(
public val activeDirectoryGroupId: Output? = null,
public val lmsInstance: Output? = null,
public val ltiClientId: Output? = null,
public val ltiContextId: Output? = null,
public val ltiRosterEndpoint: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.lab.inputs.LabRosterArgs =
com.pulumi.azure.lab.inputs.LabRosterArgs.builder()
.activeDirectoryGroupId(activeDirectoryGroupId?.applyValue({ args0 -> args0 }))
.lmsInstance(lmsInstance?.applyValue({ args0 -> args0 }))
.ltiClientId(ltiClientId?.applyValue({ args0 -> args0 }))
.ltiContextId(ltiContextId?.applyValue({ args0 -> args0 }))
.ltiRosterEndpoint(ltiRosterEndpoint?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LabRosterArgs].
*/
@PulumiTagMarker
public class LabRosterArgsBuilder internal constructor() {
private var activeDirectoryGroupId: Output? = null
private var lmsInstance: Output? = null
private var ltiClientId: Output? = null
private var ltiContextId: Output? = null
private var ltiRosterEndpoint: Output? = null
/**
* @param value The AAD group ID which this Lab Service Lab roster is populated from.
*/
@JvmName("imvpairrmphslukw")
public suspend fun activeDirectoryGroupId(`value`: Output) {
this.activeDirectoryGroupId = value
}
/**
* @param value The base URI identifying the lms instance.
*/
@JvmName("iicoitsokcqwodaw")
public suspend fun lmsInstance(`value`: Output) {
this.lmsInstance = value
}
/**
* @param value The unique id of the Azure Lab Service tool in the lms.
*/
@JvmName("ppbtedqccynressu")
public suspend fun ltiClientId(`value`: Output) {
this.ltiClientId = value
}
/**
* @param value The unique context identifier for the Lab Service Lab in the lms.
*/
@JvmName("fgbhehsbgunrixff")
public suspend fun ltiContextId(`value`: Output) {
this.ltiContextId = value
}
/**
* @param value The URI of the names and roles service endpoint on the lms for the class attached to this Lab Service Lab.
*/
@JvmName("micieehmoklcjwdq")
public suspend fun ltiRosterEndpoint(`value`: Output) {
this.ltiRosterEndpoint = value
}
/**
* @param value The AAD group ID which this Lab Service Lab roster is populated from.
*/
@JvmName("wbxtlimqhxouayha")
public suspend fun activeDirectoryGroupId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.activeDirectoryGroupId = mapped
}
/**
* @param value The base URI identifying the lms instance.
*/
@JvmName("ungpimxhrxmboede")
public suspend fun lmsInstance(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.lmsInstance = mapped
}
/**
* @param value The unique id of the Azure Lab Service tool in the lms.
*/
@JvmName("utkhhfhgrrcchajp")
public suspend fun ltiClientId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ltiClientId = mapped
}
/**
* @param value The unique context identifier for the Lab Service Lab in the lms.
*/
@JvmName("wktqaxwgcwwnfqhi")
public suspend fun ltiContextId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ltiContextId = mapped
}
/**
* @param value The URI of the names and roles service endpoint on the lms for the class attached to this Lab Service Lab.
*/
@JvmName("qyykayrddtraacth")
public suspend fun ltiRosterEndpoint(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ltiRosterEndpoint = mapped
}
internal fun build(): LabRosterArgs = LabRosterArgs(
activeDirectoryGroupId = activeDirectoryGroupId,
lmsInstance = lmsInstance,
ltiClientId = ltiClientId,
ltiContextId = ltiContextId,
ltiRosterEndpoint = ltiRosterEndpoint,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy