RequestedItemStatus
Properties
Name | Type | Description | Notes |
---|---|---|---|
id | str | The ID of the access request. | [optional] |
name | str | Human-readable display name of the item being requested. | [optional] |
type | Enum [ 'ACCESS_PROFILE', 'ROLE', 'ENTITLEMENT' ] | Type of requested object. | [optional] |
cancelled_request_details | RequestedItemStatusCancelledRequestDetails | [optional] | |
error_messages | []List[ErrorMessageDto] | List of list of localized error messages, if any, encountered during the approval/provisioning process. | [optional] |
state | RequestedItemStatusRequestState | [optional] | |
approval_details | []ApprovalStatusDto | Approval details for each item. | [optional] |
approval_ids | []str | List of approval IDs associated with the request. | [optional] |
manual_work_item_details | []ManualWorkItemDetails | Manual work items created for provisioning the item. | [optional] |
account_activity_item_id | str | Id of associated account activity item. | [optional] |
request_type | AccessRequestType | [optional] | |
modified | datetime | When the request was last modified. | [optional] |
created | datetime | When the request was created. | [optional] |
requester | AccessItemRequester | [optional] | |
requested_for | RequestedItemStatusRequestedFor | [optional] | |
requester_comment | RequestedItemStatusRequesterComment | [optional] | |
sod_violation_context | RequestedItemStatusSodViolationContext | [optional] | |
provisioning_details | RequestedItemStatusProvisioningDetails | [optional] | |
pre_approval_trigger_details | RequestedItemStatusPreApprovalTriggerDetails | [optional] | |
access_request_phases | []AccessRequestPhases | A list of Phases that the Access Request has gone through in order, to help determine the status of the request. | [optional] |
description | str | Description associated to the requested object. | [optional] |
remove_date | datetime | When the role access is scheduled for removal. | [optional] |
cancelable | bool | True if the request can be canceled. | [optional] [default to False] |
access_request_id | str | This is the account activity id. | [optional] |
client_metadata | map[string]str | Arbitrary key-value pairs, if any were included in the corresponding access request | [optional] |
requested_accounts | []RequestedAccountRef | The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources. | [optional] |
} |
Example
from sailpoint.beta.models.requested_item_status import RequestedItemStatus
requested_item_status = RequestedItemStatus(
id='2c9180926cbfbddd016cbfc7c3b10010',
name='AccessProfile1',
type='ACCESS_PROFILE',
cancelled_request_details=,
error_messages=[
[
sailpoint.beta.models.error_message_dto.ErrorMessageDto(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
]
],
state='EXECUTING',
approval_details=[
sailpoint.beta.models.approval_status_dto.ApprovalStatusDto(
approval_id = '2c9180877b2b6ea4017b2c545f971429',
forwarded = False,
original_owner = sailpoint.beta.models.approval_status_dto_original_owner.ApprovalStatusDto_originalOwner(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20642',
name = 'Michael Michaels', ),
current_owner = null,
modified = '2019-08-23T18:52:57.398Z',
status = 'PENDING',
scheme = 'MANAGER',
error_messages = [
sailpoint.beta.models.error_message_dto.ErrorMessageDto(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
],
comment = 'I approve this request',
remove_date = '2020-07-11T00:00Z', )
],
approval_ids=[85f0cf482dd44327b593624c07906c21, fa57e1bfa36f41ee85e33ee59fcbeac5],
manual_work_item_details=[
sailpoint.beta.models.manual_work_item_details.ManualWorkItemDetails(
forwarded = True,
original_owner = sailpoint.beta.models.manual_work_item_details_original_owner.ManualWorkItemDetails_originalOwner(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20642',
name = 'Michael Michaels', ),
current_owner = sailpoint.beta.models.manual_work_item_details_current_owner.ManualWorkItemDetails_currentOwner(
type = 'IDENTITY',
id = '2c3780a46faadee4016fb4e018c20652',
name = 'Allen Albertson', ),
modified = '2019-08-23T18:52:57.398Z',
status = 'PENDING',
forward_history = [
sailpoint.beta.models.approval_forward_history.ApprovalForwardHistory(
old_approver_name = 'Frank Mir',
new_approver_name = 'Al Volta',
comment = 'Forwarding from Frank to Al',
modified = '2019-08-23T18:52:57.398Z',
forwarder_name = 'William Wilson',
reassignment_type = 'AUTOMATIC_REASSIGNMENT', )
], )
],
account_activity_item_id='2c9180926cbfbddd016cbfc7c3b10010',
request_type='GRANT_ACCESS',
modified='2019-08-23T18:52:59.162Z',
created='2019-08-23T18:40:35.772Z',
requester=sailpoint.beta.models.access_item_requester.AccessItemRequester(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20648',
name = 'William Wilson', ),
requested_for=sailpoint.beta.models.requested_item_status_requested_for.RequestedItemStatus_requestedFor(
type = 'IDENTITY',
id = '2c9180835d191a86015d28455b4b232a',
name = 'William Wilson', ),
requester_comment=,
sod_violation_context=,
provisioning_details=,
pre_approval_trigger_details=,
access_request_phases=[
sailpoint.beta.models.access_request_phases.AccessRequestPhases(
started = '2020-07-11T00:00Z',
finished = '2020-07-12T00:00Z',
name = 'APPROVAL_PHASE',
state = 'COMPLETED',
result = 'SUCCESSFUL',
phase_reference = 'approvalDetails', )
],
description='This is the Engineering role that engineers are granted.',
remove_date='2019-10-23T00:00Z',
cancelable=True,
access_request_id='2b838de9-db9b-abcf-e646-d4f274ad4238',
client_metadata={key1=value1, key2=value2},
requested_accounts=[
sailpoint.beta.models.requested_account_ref.RequestedAccountRef(
name = 'Glen.067da3248e914',
type = 'IDENTITY',
account_uuid = '{fab7119e-004f-4822-9c33-b8d570d6c6a6}',
account_id = 'CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local',
source_name = 'Multi Account AD source name', )
]
)