Skip to main content

ConnectorDetail

Properties

NameTypeDescriptionNotes
namestrThe connector name[optional]
source_config_xmlstrXML representation of the source config data[optional]
source_configstrJSON representation of the source config data[optional]
direct_connectbooltrue if the source is a direct connect source[optional]
file_uploadboolConnector config's file upload attribute, false if not there[optional]
uploaded_filesstrList of uploaded file strings for the connector[optional]
connector_metadataobjectObject containing metadata pertinent to the UI to be used[optional]
}

Example

from sailpoint.beta.models.connector_detail import ConnectorDetail

connector_detail = ConnectorDetail(
name='JDBC',
source_config_xml='<Form connectorName='Active Directory - Direct' directConnect='true' name='Active Directory' status='released' type='SourceConfig' xmlns='http://www.sailpoint.com/xsd/sailpoint_form_1_0.xsd'>
<Field defaultValue='true' hidden='true' name='cloudAuthEnabled' type='boolean' value='true'> </Field> </Form>',
source_config='{Form={Field={_defaultValue=true, _hidden=true, _name=cloudAuthEnabled, _type=boolean, _value=true}, _xmlns=http://www.sailpoint.com/xsd/sailpoint_form_1_0.xsd, _connectorName=Active Directory - Direct, _directConnect=true, _name=Active Directory, _status=released, _type=SourceConfig, __text=\n\t}}',
direct_connect=True,
file_upload=False,
uploaded_files='[]',
connector_metadata={supportedUI=EXTJS}
)

[Back to top]