Skip to main content

V3ConnectorDto

Properties

NameTypeDescriptionNotes
namestrThe connector name[optional]
typestrThe connector type[optional]
script_namestrThe connector script name[optional]
class_namestrThe connector class name.[optional]
features[]strThe list of features supported by the connector[optional]
direct_connectbooltrue if the source is a direct connect source[optional] [default to False]
connector_metadatamap[string]objectA map containing metadata pertinent to the connector[optional]
statusEnum [ 'DEPRECATED', 'DEVELOPMENT', 'DEMO', 'RELEASED' ]The connector status[optional]
}

Example

from sailpoint.v3.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=ANGULAR, platform=ccg, shortDesc=connector description},
status='RELEASED'
)

[Back to top]