Update to powershell SDK docs: 13709983574

This commit is contained in:
developer-relations-sp
2025-03-06 23:07:50 +00:00
parent 014f2c914c
commit 0ab1259038
44 changed files with 4439 additions and 4272 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-role-assignment-dto-assignment-context
title: RoleAssignmentDtoAssignmentContext
pagination_label: RoleAssignmentDtoAssignmentContext
sidebar_label: RoleAssignmentDtoAssignmentContext
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleAssignmentDtoAssignmentContext', 'V2024RoleAssignmentDtoAssignmentContext']
slug: /tools/sdk/powershell/v2024/models/role-assignment-dto-assignment-context
tags: ['SDK', 'Software Development Kit', 'RoleAssignmentDtoAssignmentContext', 'V2024RoleAssignmentDtoAssignmentContext']
---
# 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.V2024RoleAssignmentDtoAssignmentContext -Requested null `
-Matched null `
-ComputedDate Wed Feb 14 10:58:42
```
- Convert the resource to JSON
```powershell
$RoleAssignmentDtoAssignmentContext | ConvertTo-JSON
```
[[Back to top]](#)