Skip to main content

VendorConnectorMapping

Properties

NameTypeDescriptionNotes
idstrThe unique identifier for the vendor-connector mapping.[optional]
vendorstrThe name of the vendor.[optional]
connectorstrThe name of the connector.[optional]
created_atdatetimeThe creation timestamp of the mapping.[optional]
created_bystrThe identifier of the user who created the mapping.[optional]
updated_atVendorConnectorMappingUpdatedAt[optional]
updated_byVendorConnectorMappingUpdatedBy[optional]
deleted_atVendorConnectorMappingDeletedAt[optional]
deleted_byVendorConnectorMappingDeletedBy[optional]
}

Example

from sailpoint.beta.models.vendor_connector_mapping import VendorConnectorMapping

vendor_connector_mapping = VendorConnectorMapping(
id='78733556-9ea3-4f59-bf69-e5cd92b011b4',
vendor='Example vendor',
connector='Example connector',
created_at='2024-03-13T12:56:19.391294Z',
created_by='admin',
updated_at=sailpoint.beta.models.vendor_connector_mapping_updated_at.VendorConnectorMapping_updatedAt(
time = '2024-03-14T12:56:19.391294Z',
valid = True, ),
updated_by=sailpoint.beta.models.vendor_connector_mapping_updated_by.VendorConnectorMapping_updatedBy(
string = 'user-67891',
valid = True, ),
deleted_at=sailpoint.beta.models.vendor_connector_mapping_deleted_at.VendorConnectorMapping_deletedAt(
time = '0001-01-01T00:00Z',
valid = False, ),
deleted_by=sailpoint.beta.models.vendor_connector_mapping_deleted_by.VendorConnectorMapping_deletedBy(
string = '',
valid = False, )
)

[Back to top]