Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/SourceUpdated.md
2025-03-13 20:06:00 +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
beta-source-updated SourceUpdated SourceUpdated SourceUpdated powershellsdk
powershell
PowerShell
sdk
SourceUpdated
BetaSourceUpdated
/tools/sdk/powershell/beta/models/source-updated
SDK
Software Development Kit
SourceUpdated
BetaSourceUpdated

SourceUpdated

Properties

Name Type Description Notes
Id String Source's unique ID. [required]
Name String Source name. [required]
Type String Connection type. [required]
Modified System.DateTime Date and time when the source was modified. [required]
Connector String Connector type used to connect to the source. [required]
Actor SourceUpdatedActor [required]

Examples

  • Prepare the resource
$SourceUpdated = Initialize-PSSailpoint.BetaSourceUpdated  -Id 2c9180866166b5b0016167c32ef31a66 `
 -Name Test source `
 -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]