Skip to main content

Jitaccessoperationrequest

A single replace operation applied to JIT activation configuration. Only replace is supported. path must be one of the allowed JSON Pointer-style paths.

Properties

NameTypeDescriptionNotes
opEnum [ 'replace' ]Operation type. Defaults to replace if omitted.[optional] [default to 'replace']
pathEnum [ '/entitlementIds', '/maxActivationPeriodMins', '/maxActivationPeriodExtensionMins', '/defaultMaxActivationPeriodMins', '/defaultMaxActivationPeriodExtensionMins', '/notificationRecipients', '/notificationTemplate', '/applyToFutureAssignments' ]Path to replace. Only the following JSON Pointer-style paths are supported.[required]
valueJitaccessoperationrequestValue[required]
}

Example

from sailpoint.jit_access.models.jitaccessoperationrequest import Jitaccessoperationrequest

jitaccessoperationrequest = Jitaccessoperationrequest(
op='replace',
path='/maxActivationPeriodMins',
value=60
)

[Back to top]