add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
---
id: v2025-assignment-context-dto
title: AssignmentContextDto
pagination_label: AssignmentContextDto
sidebar_label: AssignmentContextDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AssignmentContextDto', 'V2025AssignmentContextDto']
slug: /tools/sdk/python/v2025/models/assignment-context-dto
tags: ['SDK', 'Software Development Kit', 'AssignmentContextDto', 'V2025AssignmentContextDto']
---
# AssignmentContextDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**requested** | [**AccessRequestContext**](access-request-context) | | [optional]
**matched** | [**[]RoleMatchDto**](role-match-dto) | | [optional]
**computed_date** | **str** | Date that the assignment will was evaluated | [optional]
}
## Example
```python
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'
)
```
[[Back to top]](#)