Skip to main content

PatchPotentialRoleRequestInner

Properties

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

Example

from sailpoint.beta.models.patch_potential_role_request_inner import PatchPotentialRoleRequestInner

patch_potential_role_request_inner = PatchPotentialRoleRequestInner(
op='replace',
path='/description',
value=New description
)

[Back to top]