![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.managedapplication.kotlin.outputs.DefinitionAuthorization.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.managedapplication.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property roleDefinitionId Specifies a role definition identifier for the provider. This role will define all the permissions that the provider must have on the managed application's container resource group. This role definition cannot have permission to delete the resource group.
* @property servicePrincipalId Specifies a service principal identifier for the provider. This is the identity that the provider will use to call ARM to manage the managed application resources.
*/
public data class DefinitionAuthorization(
public val roleDefinitionId: String,
public val servicePrincipalId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.managedapplication.outputs.DefinitionAuthorization): DefinitionAuthorization = DefinitionAuthorization(
roleDefinitionId = javaType.roleDefinitionId(),
servicePrincipalId = javaType.servicePrincipalId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy