Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/SourceUpdated.md
2025-05-07 14:37:48 +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-updated SourceUpdated SourceUpdated SourceUpdated powershellsdk
powershell
PowerShell
sdk
SourceUpdated
V2024SourceUpdated
/tools/sdk/powershell/v2024/models/source-updated
SDK
Software Development Kit
SourceUpdated
V2024SourceUpdated

SourceUpdated

Properties

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

Examples

  • Prepare the resource
$SourceUpdated = Initialize-V2024SourceUpdated  -Id 2c9180866166b5b0016167c32ef31a66 `
 -Name Corporate Active Directory `
 -Type DIRECT_CONNECT `
 -Modified 2021-03-29T22:01:50.474Z `
 -Connector active-directory `
 -Actor null
  • Convert the resource to JSON
$SourceUpdated | ConvertTo-JSON

[Back to top]