Skip to main content

SourceHealthDto

Dto for source health data

Properties

NameTypeDescriptionNotes
idstrthe id of the Source[optional] [readonly]
typestrSpecifies 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]
namestrthe name of the source[optional]
orgstrsource's org[optional]
is_authoritativeboolIs the source authoritative[optional]
is_clusterboolIs the source in a cluster[optional]
hostnamestrsource's hostname[optional]
podstrsource's pod[optional]
iq_service_versionstrThe 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]
}

Example

from sailpoint.v3.models.source_health_dto import SourceHealthDto

source_health_dto = SourceHealthDto(
id='2c91808568c529c60168cca6f90c1324',
type='OpenLDAP - Direct',
name='Source1234',
org='denali-cjh',
is_authoritative=False,
is_cluster=False,
hostname='megapod-useast1-secret-hostname.sailpoint.com',
pod='megapod-useast1',
iq_service_version='iqVersion123',
status='SOURCE_STATE_UNCHECKED_SOURCE'
)

[Back to top]