com.pulumi.azure.marketplace.kotlin.RoleAssignment.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.marketplace.kotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
/**
* Builder for [RoleAssignment].
*/
@PulumiTagMarker
public class RoleAssignmentResourceBuilder internal constructor() {
public var name: String? = null
public var args: RoleAssignmentArgs = RoleAssignmentArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend RoleAssignmentArgsBuilder.() -> Unit) {
val builder = RoleAssignmentArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): RoleAssignment {
val builtJavaResource = com.pulumi.azure.marketplace.RoleAssignment(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return RoleAssignment(builtJavaResource)
}
}
public class RoleAssignment internal constructor(
override val javaResource: com.pulumi.azure.marketplace.RoleAssignment,
) : KotlinCustomResource(javaResource, RoleAssignmentMapper) {
public val condition: Output?
get() = javaResource.condition().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
public val conditionVersion: Output?
get() = javaResource.conditionVersion().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
public val delegatedManagedIdentityResourceId: Output?
get() = javaResource.delegatedManagedIdentityResourceId().applyValue({ args0 ->
args0.map({ args0 -> args0 }).orElse(null)
})
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
public val principalId: Output
get() = javaResource.principalId().applyValue({ args0 -> args0 })
public val principalType: Output
get() = javaResource.principalType().applyValue({ args0 -> args0 })
public val roleDefinitionId: Output?
get() = javaResource.roleDefinitionId().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
public val roleDefinitionName: Output?
get() = javaResource.roleDefinitionName().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
public val skipServicePrincipalAadCheck: Output?
get() = javaResource.skipServicePrincipalAadCheck().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
}
public object RoleAssignmentMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azure.marketplace.RoleAssignment::class == javaResource::class
override fun map(javaResource: Resource): RoleAssignment = RoleAssignment(
javaResource as
com.pulumi.azure.marketplace.RoleAssignment,
)
}
/**
* @see [RoleAssignment].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [RoleAssignment].
*/
public suspend fun roleAssignment(
name: String,
block: suspend RoleAssignmentResourceBuilder.() -> Unit,
): RoleAssignment {
val builder = RoleAssignmentResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [RoleAssignment].
* @param name The _unique_ name of the resulting resource.
*/
public fun roleAssignment(name: String): RoleAssignment {
val builder = RoleAssignmentResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy