Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/SourceCreated.md
2025-02-03 22:09:17 +00:00

1.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-source-created SourceCreated SourceCreated SourceCreated powershellsdk
powershell
PowerShell
sdk
SourceCreated
V2024SourceCreated
/tools/sdk/powershell/v2024/models/source-created
SDK
Software Development Kit
SourceCreated
V2024SourceCreated

SourceCreated

Properties

Name Type Description Notes
Id String The unique ID of the source. [required]
Name String Human friendly name of the source. [required]
Type String The connection type. [required]
Created System.DateTime The date and time the source was created. [required]
Connector String The connector type used to connect to the source. [required]
Actor SourceCreatedActor [required]

Examples

  • Prepare the resource
$SourceCreated = Initialize-PSSailpoint.V2024SourceCreated  -Id 2c9180866166b5b0016167c32ef31a66 `
 -Name Test source `
 -Type DIRECT_CONNECT `
 -Created 2021-03-29T22:01:50.474Z `
 -Connector active-directory `
 -Actor null
  • Convert the resource to JSON
$SourceCreated | ConvertTo-JSON

[Back to top]