starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,46 @@
---
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='<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]](#)