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

820 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
v2024-sed-patch SedPatch SedPatch SedPatch pythonsdk
python
Python
sdk
SedPatch
V2024SedPatch
/tools/sdk/python/v2024/models/sed-patch
SDK
Software Development Kit
SedPatch
V2024SedPatch

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.v2024.models.sed_patch import SedPatch

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

[Back to top]