mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
2.1 KiB
2.1 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-assignment-context-dto | AssignmentContextDto | AssignmentContextDto | AssignmentContextDto | pythonsdk |
|
/tools/sdk/python/v2025/models/assignment-context-dto |
|
AssignmentContextDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| requested | AccessRequestContext | [optional] | |
| matched | []RoleMatchDto | [optional] | |
| computed_date | str | Date that the assignment will was evaluated | [optional] |
| } |
Example
from sailpoint.v2025.models.assignment_context_dto import AssignmentContextDto
assignment_context_dto = AssignmentContextDto(
requested=sailpoint.v2025.models.access_request_context.AccessRequestContext(
context_attributes = [
sailpoint.v2025.models.context_attribute_dto.ContextAttributeDto(
attribute = 'location',
value = Austin,
derived = False, )
], ),
matched=[
sailpoint.v2025.models.role_match_dto.RoleMatchDto(
role_ref = sailpoint.v2025.models.base_reference_dto.BaseReferenceDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', ),
matched_attributes = [
sailpoint.v2025.models.context_attribute_dto.ContextAttributeDto(
attribute = 'location',
value = Austin,
derived = False, )
], )
],
computed_date='Wed Feb 14 10:58:42'
)