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

com.pulumi.azure.managedapplication.kotlin.outputs.DefinitionAuthorization.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.15.0.0
Show newest version
@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