ScopeArgs

data class ScopeArgs(val scopeType: Output<Either<String, ScopeType>>? = null, val values: Output<List<String>>? = null) : ConvertibleToJava<ScopeArgs>

Target scope for a given action rule. By default scope will be the subscription. User can also provide list of resource groups or list of resources from the scope subscription as well.

Constructors

Link copied to clipboard
constructor(scopeType: Output<Either<String, ScopeType>>? = null, values: Output<List<String>>? = null)

Properties

Link copied to clipboard
val scopeType: Output<Either<String, ScopeType>>? = null

type of target scope

Link copied to clipboard
val values: Output<List<String>>? = null

list of ARM IDs of the given scope type which will be the target of the given action rule.

Functions

Link copied to clipboard
open override fun toJava(): ScopeArgs