Skip to main content

RolePropagationStatusResponse

Role Propagation Status Response

Properties

NameTypeDescriptionNotes
idstrId of the Role Propagation process triggered.[optional]
statusEnum [ 'RUNNING', 'COMPLETED' ]Status of the Role Propagation process.[optional]
execution_stageEnum [ 'PENDING', 'DATA_AGGREGATION_RUNNING', 'LAUNCH_PROVISIONING', 'SUCCEEDED', 'FAILED', 'TERMINATED' ]Current execution stage of the Role Propagation process.[optional]
launcheddatetimeTime when the Role Propagation process was launched.[optional]
launched_byRolePropagationStatusResponseLaunchedBy[optional]
terminated_byRolePropagationStatusResponseTerminatedBy[optional]
completeddatetimeTime when the Role Propagation process was completed.[optional]
failure_reasonstrReason for failure if the Role Propagation process failed.[optional]
skip_role_refreshboolIndicates if the role refresh was skipped during the Role Propagation process.[optional] [default to False]
}

Example

from sailpoint.role_propagation.models.role_propagation_status_response import RolePropagationStatusResponse

role_propagation_status_response = RolePropagationStatusResponse(
id='47b9fb02-e12e-42ba-8bfe-1860d78c88eb',
status='RUNNING',
execution_stage='PENDING',
launched='2023-10-01T12:00Z',
launched_by=sailpoint.role_propagation.models.role_propagation_status_response_launched_by.role_propagation_status_response_launchedBy(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20648',
name = 'William Wilson', ),
terminated_by=sailpoint.role_propagation.models.role_propagation_status_response_terminated_by.role_propagation_status_response_terminatedBy(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20648',
name = 'William Wilson', ),
completed='2023-10-01T12:30Z',
failure_reason='Network error',
skip_role_refresh=False
)

[Back to top]