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.auto_write_setting_patch import AutoWriteSettingPatch

auto_write_setting_patch = AutoWriteSettingPatch(
op='replace',
path='/enabled',
value=true
)

[Back to top]