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.suggested_entitlement_description.models.sedpatch import Sedpatch

sedpatch = Sedpatch(
op='replace',
path='status',
value=approved
)

[Back to top]