--- id: beta-connector-detail title: ConnectorDetail pagination_label: ConnectorDetail sidebar_label: ConnectorDetail sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'ConnectorDetail', 'BetaConnectorDetail'] slug: /tools/sdk/python/beta/models/connector-detail tags: ['SDK', 'Software Development Kit', 'ConnectorDetail', 'BetaConnectorDetail'] --- # ConnectorDetail ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **str** | The connector name | [optional] **source_config_xml** | **str** | XML representation of the source config data | [optional] **source_config** | **str** | JSON representation of the source config data | [optional] **direct_connect** | **bool** | true if the source is a direct connect source | [optional] **file_upload** | **bool** | Connector config's file upload attribute, false if not there | [optional] **uploaded_files** | **str** | List of uploaded file strings for the connector | [optional] **connector_metadata** | **object** | Object containing metadata pertinent to the UI to be used | [optional] } ## Example ```python from sailpoint.beta.models.connector_detail import ConnectorDetail connector_detail = ConnectorDetail( name='JDBC', source_config_xml='
', 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]](#)