Skip to main content

SourceHealthDto

Properties

NameTypeDescriptionNotes
IdStringthe id of the Source[optional] [readonly]
TypeStringSpecifies the type of system being managed e.g. Active Directory, Workday, etc.. If you are creating a Delimited File source, you must set the provisionasCsv query parameter to true.[optional]
NameStringthe name of the source[optional]
OrgStringsource's org[optional]
IsAuthoritativeBooleanIs the source authoritative[optional]
IsClusterBooleanIs the source in a cluster[optional]
HostnameStringsource's hostname[optional]
PodStringsource's pod[optional]
IqServiceVersionStringThe version of the iqService[optional]
StatusEnum [ "SOURCE_STATE_ERROR_CLUSTER", "SOURCE_STATE_ERROR_SOURCE", "SOURCE_STATE_ERROR_VA", "SOURCE_STATE_FAILURE_CLUSTER", "SOURCE_STATE_FAILURE_SOURCE", "SOURCE_STATE_HEALTHY", "SOURCE_STATE_UNCHECKED_CLUSTER", "SOURCE_STATE_UNCHECKED_CLUSTER_NO_SOURCES", "SOURCE_STATE_UNCHECKED_SOURCE", "SOURCE_STATE_UNCHECKED_SOURCE_NO_ACCOUNTS" ]connection test result[optional]

Examples

  • Prepare the resource
$SourceHealthDto = Initialize-PSSailpoint.V3SourceHealthDto  -Id 2c91808568c529c60168cca6f90c1324 `
-Type OpenLDAP - Direct `
-Name Source1234 `
-Org denali-cjh `
-IsAuthoritative false `
-IsCluster false `
-Hostname megapod-useast1-secret-hostname.sailpoint.com `
-Pod megapod-useast1 `
-IqServiceVersion iqVersion123 `
-Status SOURCE_STATE_UNCHECKED_SOURCE
  • Convert the resource to JSON
$SourceHealthDto | ConvertTo-JSON

[Back to top]