mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.2 KiB
1.2 KiB
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-json-patch-operation | JsonPatchOperation | JsonPatchOperation | JsonPatchOperation | pythonsdk |
|
/tools/sdk/python/beta/models/json-patch-operation |
|
JsonPatchOperation
A JSONPatch Operation as defined by RFC 6902 - JSON Patch
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| op | Enum [ 'add', 'remove', 'replace', 'move', 'copy', 'test' ] | The operation to be performed | [required] |
| path | str | A string JSON Pointer representing the target path to an element to be affected by the operation | [required] |
| value | UpdateMultiHostSourcesRequestInnerValue | [optional] | |
| } |
Example
from sailpoint.beta.models.json_patch_operation import JsonPatchOperation
json_patch_operation = JsonPatchOperation(
op='replace',
path='/description',
value=New description
)