Skip to main content

ParameterStorageJsonPatch

RFC 6902 JSON Patch operation

Properties

NameTypeDescriptionNotes
opEnum [ 'add', 'remove', 'replace', 'move', 'copy', 'test' ]The operation to perform (add, remove, replace, move, copy, test)[required]
pathstrA JSON-Pointer describing the target location[required]
valueobjectThe value to be used within the operations. Required for add/replace/test.[optional]
var_fromstrA JSON-Pointer describing the source location for move/copy.[optional]
}

Example

from sailpoint.v2025.models.parameter_storage_json_patch import ParameterStorageJsonPatch

parameter_storage_json_patch = ParameterStorageJsonPatch(
op='replace',
path='/name',
value=Credentials for server.,
var_from='/description'
)

[Back to top]