com.pulumi.azure.batch.kotlin.outputs.GetPoolStartTaskUserIdentityAutoUser.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.batch.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property elevationLevel The elevation level of the user account. "NonAdmin" - The auto user is a standard user without elevated access. "Admin" - The auto user is a user with elevated access and operates with full Administrator permissions. The default value is nonAdmin.
* @property scope The scope of the user identity under which the start task runs.
*/
public data class GetPoolStartTaskUserIdentityAutoUser(
public val elevationLevel: String,
public val scope: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolStartTaskUserIdentityAutoUser):
GetPoolStartTaskUserIdentityAutoUser = GetPoolStartTaskUserIdentityAutoUser(
elevationLevel = javaType.elevationLevel(),
scope = javaType.scope(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy