Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ImportObject.md
2025-01-28 13:29:29 -05:00

1.2 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-import-object ImportObject ImportObject ImportObject powershellsdk
powershell
PowerShell
sdk
ImportObject
BetaImportObject
/tools/sdk/powershell/beta/models/import-object
SDK
Software Development Kit
ImportObject
BetaImportObject

ImportObject

Properties

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

Examples

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

[Back to top]