ScopeResponse

data class ScopeResponse(val scopeType: String? = null, val values: List<String>? = null)

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: String? = null, values: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val scopeType: String? = null

type of target scope

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

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