Skip to main content

V3CreateConnectorDto

Properties

NameTypeDescriptionNotes
namestrThe connector name. Need to be unique per tenant. The name will able be used to derive a url friendly unique scriptname that will be in response. Script name can then be used for all update endpoints[required]
typestrThe connector type. If not specified will be defaulted to 'custom '+name[optional]
class_namestrThe connector class name. If you are implementing openconnector standard (what is recommended), then this need to be set to sailpoint.connector.OpenConnectorAdapter[required]
direct_connectbooltrue if the source is a direct connect source[optional] [default to True]
statusEnum [ 'DEVELOPMENT', 'DEMO', 'RELEASED' ]The connector status[optional]
}

Example

from sailpoint.v2024.models.v3_create_connector_dto import V3CreateConnectorDto

v3_create_connector_dto = V3CreateConnectorDto(
name='custom connector',
type='custom connector type',
class_name='sailpoint.connector.OpenConnectorAdapter',
direct_connect=True,
status='RELEASED'
)

[Back to top]