com.pulumi.azure.lab.kotlin.outputs.LabRoster.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @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 LabRoster(
public val activeDirectoryGroupId: String? = null,
public val lmsInstance: String? = null,
public val ltiClientId: String? = null,
public val ltiContextId: String? = null,
public val ltiRosterEndpoint: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.lab.outputs.LabRoster): LabRoster = LabRoster(
activeDirectoryGroupId = javaType.activeDirectoryGroupId().map({ args0 -> args0 }).orElse(null),
lmsInstance = javaType.lmsInstance().map({ args0 -> args0 }).orElse(null),
ltiClientId = javaType.ltiClientId().map({ args0 -> args0 }).orElse(null),
ltiContextId = javaType.ltiContextId().map({ args0 -> args0 }).orElse(null),
ltiRosterEndpoint = javaType.ltiRosterEndpoint().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy