Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ImportObject.md
2025-05-07 14:37:48 +00:00

1.1 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-import-object ImportObject ImportObject ImportObject powershellsdk
powershell
PowerShell
sdk
ImportObject
V2024ImportObject
/tools/sdk/powershell/v2024/models/import-object
SDK
Software Development Kit
ImportObject
V2024ImportObject

ImportObject

Properties

Name Type Description Notes
Type Enum [ "CONNECTOR_RULE", "IDENTITY_OBJECT_CONFIG", "IDENTITY_PROFILE", "RULE", "SOURCE", "TRANSFORM", "TRIGGER_SUBSCRIPTION" ] DTO type of object created or updated by import. [optional]
Id String ID of object created or updated by import. [optional]
Name String Display name of object created or updated by import. [optional]

Examples

  • Prepare the resource
$ImportObject = Initialize-V2024ImportObject  -Type SOURCE `
 -Id 2c9180835d191a86015d28455b4b232a `
 -Name HR Active Directory
  • Convert the resource to JSON
$ImportObject | ConvertTo-JSON

[Back to top]