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-role-assignment-dto-assignment-context
title: RoleAssignmentDtoAssignmentContext
pagination_label: RoleAssignmentDtoAssignmentContext
sidebar_label: RoleAssignmentDtoAssignmentContext
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleAssignmentDtoAssignmentContext', 'V2025RoleAssignmentDtoAssignmentContext']
slug: /tools/sdk/python/v2025/models/role-assignment-dto-assignment-context
tags: ['SDK', 'Software Development Kit', 'RoleAssignmentDtoAssignmentContext', 'V2025RoleAssignmentDtoAssignmentContext']
---
# RoleAssignmentDtoAssignmentContext
## 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.role_assignment_dto_assignment_context import RoleAssignmentDtoAssignmentContext
role_assignment_dto_assignment_context = RoleAssignmentDtoAssignmentContext(
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]](#)