Skip to main content

ConnectorCustomizerUpdateResponse

ConnectorCustomizerUpdateResponse

Properties

NameTypeDescriptionNotes
idstrthe ID of connector customizer.[optional]
namestrname of the connector customizer.[optional]
tenant_idstrConnector customizer tenant id.[optional]
createddatetimeDate-time when the connector customizer was created.[optional]
image_versionintConnector customizer image version.[optional]
image_idstrConnector customizer image id.[optional]
}

Example

from sailpoint.v2024.models.connector_customizer_update_response import ConnectorCustomizerUpdateResponse

connector_customizer_update_response = ConnectorCustomizerUpdateResponse(
id='b07dc46a-1498-4de8-bfbb-259a68e70c8a',
name='connector-customizer-name',
tenant_id='2c91808568c529c60168cca6f90c1324',
created=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
image_version=1,
image_id='2c91808568c529c60168cca6f90c1324'
)

[Back to top]