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-assigner
title: RoleAssignmentDtoAssigner
pagination_label: RoleAssignmentDtoAssigner
sidebar_label: RoleAssignmentDtoAssigner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleAssignmentDtoAssigner', 'V2024RoleAssignmentDtoAssigner']
slug: /tools/sdk/powershell/v2024/models/role-assignment-dto-assigner
tags: ['SDK', 'Software Development Kit', 'RoleAssignmentDtoAssigner', 'V2024RoleAssignmentDtoAssigner']
---
# RoleAssignmentDtoAssigner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "IDENTITY", "UNKNOWN" ] | Object type | [optional]
**Id** | **String** | ID of the object to which this reference applies | [optional]
**Name** | **String** | Human-readable display name of the object to which this reference applies | [optional]
## Examples
- Prepare the resource
```powershell
$RoleAssignmentDtoAssigner = Initialize-PSSailpoint.V2024RoleAssignmentDtoAssigner -Type IDENTITY `
-Id 2c91808568c529c60168cca6f90c1313 `
-Name William Wilson
```
- Convert the resource to JSON
```powershell
$RoleAssignmentDtoAssigner | ConvertTo-JSON
```
[[Back to top]](#)