Skip to main content

Autowritesettingpatch

Patch operation for Auto-Write Setting

Properties

NameTypeDescriptionNotes
opEnum [ 'replace' ]The operation to perform. Only "replace" is supported.[required]
pathstrThe field to update. Allowed values: /enabled, /includedSourceIds, /excludedSourceIds[required]
valueAutowritesettingpatchValue[required]
}

Example

from sailpoint.suggested_entitlement_description.models.autowritesettingpatch import Autowritesettingpatch

autowritesettingpatch = Autowritesettingpatch(
op='replace',
path='/enabled',
value=true
)

[Back to top]