AssignmentLockSettingsArgs

data class AssignmentLockSettingsArgs(val excludedActions: Output<List<String>>? = null, val excludedPrincipals: Output<List<String>>? = null, val mode: Output<Either<String, AssignmentLockMode>>? = null) : ConvertibleToJava<AssignmentLockSettingsArgs>

/* Defines how resources deployed by a blueprint assignment are locked.

Constructors

Link copied to clipboard
constructor(excludedActions: Output<List<String>>? = null, excludedPrincipals: Output<List<String>>? = null, mode: Output<Either<String, AssignmentLockMode>>? = null)

Properties

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

List of management operations that are excluded from blueprint locks. Up to 200 actions are permitted. If the lock mode is set to 'AllResourcesReadOnly', then the following actions are automatically appended to 'excludedActions': '*/read', 'Microsoft.Network/virtualNetworks/subnets/join/action' and 'Microsoft.Authorization/locks/delete'. If the lock mode is set to 'AllResourcesDoNotDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will get removed.

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

List of AAD principals excluded from blueprint locks. Up to 5 principals are permitted.

Link copied to clipboard
val mode: Output<Either<String, AssignmentLockMode>>? = null

Lock mode.

Functions

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