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,39 @@
---
id: v2025-role-assignment-dto-assignment-context
title: RoleAssignmentDtoAssignmentContext
pagination_label: RoleAssignmentDtoAssignmentContext
sidebar_label: RoleAssignmentDtoAssignmentContext
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleAssignmentDtoAssignmentContext', 'V2025RoleAssignmentDtoAssignmentContext']
slug: /tools/sdk/powershell/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]
**ComputedDate** | **String** | Date that the assignment will was evaluated | [optional]
## Examples
- Prepare the resource
```powershell
$RoleAssignmentDtoAssignmentContext = Initialize-PSSailpoint.V2025RoleAssignmentDtoAssignmentContext -Requested null `
-Matched null `
-ComputedDate Wed Feb 14 10:58:42
```
- Convert the resource to JSON
```powershell
$RoleAssignmentDtoAssignmentContext | ConvertTo-JSON
```
[[Back to top]](#)