V3ConnectorDto
Properties
Name | Type | Description | Notes |
---|---|---|---|
name | str | The connector name | [optional] |
type | str | The connector type | [optional] |
script_name | str | The connector script name | [optional] |
class_name | str | The connector class name. | [optional] |
features | []str | The list of features supported by the connector | [optional] |
direct_connect | bool | true if the source is a direct connect source | [optional] [default to False] |
connector_metadata | object | Object containing metadata pertinent to the UI to be used | [optional] |
status | str | The connector status | [optional] |
} |
Example
from sailpoint.beta.models.v3_connector_dto import V3ConnectorDto
v3_connector_dto = V3ConnectorDto(
name='name',
type='ServiceNow',
script_name='servicenow',
class_name='sailpoint.connector.OpenConnectorAdapter',
features=[PROVISIONING, SYNC_PROVISIONING, SEARCH, UNSTRUCTURED_TARGETS],
direct_connect=True,
connector_metadata={supportedUI=EXTJS, platform=ccg, shortDesc=connector description},
status='RELEASED'
)