Skip to main content

Identitycollectorlistitem

Properties

NameTypeDescriptionNotes
IdStringThe unique identifier of the identity collector.[optional]
NameStringThe display name of the identity collector.[optional]
TypeStringThe identity collector type, derived from its underlying source. Possible values include ""Active Directory"", ""Azure Active Directory"", ""Google Drive"", ""Dropbox"", ""Box"", ""Microsoft Entra SaaS"", ""Snowflake"", and ""Databricks"".[optional]
SourceIdStringThe identifier of the source the identity collector is associated with, represented as a UUID. Both hyphenated and non-hyphenated formats are accepted.[optional]

Examples

  • Prepare the resource
$Identitycollectorlistitem = Initialize-Identitycollectorlistitem  -Id 12345 `
-Name Active Directory Identity Collector `
-Type Active Directory `
-SourceId 2c9180835d2e5168015d32f890ca1581
  • Convert the resource to JSON
$Identitycollectorlistitem | ConvertTo-JSON

[Back to top]