Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/SedPatch.md
2025-02-20 12:59:19 -05:00

815 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-sed-patch SedPatch SedPatch SedPatch pythonsdk
python
Python
sdk
SedPatch
BetaSedPatch
/tools/sdk/python/beta/models/sed-patch
SDK
Software Development Kit
SedPatch
BetaSedPatch

SedPatch

Patch for Suggested Entitlement Description

Properties

Name Type Description Notes
op str desired operation [optional]
path str field to be patched [optional]
value object value 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]