adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: assignment-context-dto
title: AssignmentContextDto
pagination_label: AssignmentContextDto
sidebar_label: AssignmentContextDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AssignmentContextDto']
slug: /tools/sdk/powershell/v2024/models/assignment-context-dto
tags: ['SDK', 'Software Development Kit', 'AssignmentContextDto']
---
# AssignmentContextDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Requested** | Pointer to [**AccessRequestContext**](access-request-context) | | [optional]
**Matched** | Pointer to [**[]RoleMatchDto**](role-match-dto) | | [optional]
**ComputedDate** | Pointer to **String** | Date that the assignment will was evaluated | [optional]
## Examples
- Prepare the resource
```powershell
$AssignmentContextDto = Initialize-PSSailpoint.V2024AssignmentContextDto -Requested null `
-Matched null `
-ComputedDate Wed Feb 14 10:58:42
```
- Convert the resource to JSON
```powershell
$AssignmentContextDto | ConvertTo-JSON
```
[[Back to top]](#)