update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: source-created-actor
title: SourceCreatedActor
pagination_label: SourceCreatedActor
sidebar_label: SourceCreatedActor
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceCreatedActor']
slug: /tools/sdk/powershell/beta/models/source-created-actor
tags: ['SDK', 'Software Development Kit', 'SourceCreatedActor']
---
# SourceCreatedActor
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "IDENTITY" ] | DTO type of identity who created the source. | [required]
**Id** | **String** | ID of identity who created the source. | [required]
**Name** | **String** | Display name of identity who created the source. | [required]
## Examples
- Prepare the resource
```powershell
$SourceCreatedActor = Initialize-PSSailpoint.BetaSourceCreatedActor -Type IDENTITY `
-Id 2c7180a46faadee4016fb4e018c20648 `
-Name William Wilson
```
- Convert the resource to JSON
```powershell
$SourceCreatedActor | ConvertTo-JSON
```
[[Back to top]](#)