Skip to main content

UpdateMultiHostSourcesV1RequestInner

A JSONPatch Operation as defined by RFC 6902 - JSON Patch

Properties

NameTypeDescriptionNotes
opEnum [ 'add', 'replace' ]The operation to be performed[required]
pathstrA string JSON Pointer representing the target path to an element to be affected by the operation[required]
valueUpdateMultiHostSourcesV1RequestInnerValue[optional]
}

Example

from sailpoint.multi_host_integration.models.update_multi_host_sources_v1_request_inner import UpdateMultiHostSourcesV1RequestInner

update_multi_host_sources_v1_request_inner = UpdateMultiHostSourcesV1RequestInner(
op='replace',
path='/description',
value=New description
)

[Back to top]