Skip to main content

SedPatch

Patch for Suggested Entitlement Description

Properties

NameTypeDescriptionNotes
opstrdesired operation[optional]
pathstrfield to be patched[optional]
valueobjectvalue to replace with[optional]
}

Example

from sailpoint.beta.models.sed_patch import SedPatch

sed_patch = SedPatch(
op='replace',
path='status',
value=approved
)

[Back to top]