Skip to main content

SourceResourceMappingValue

Properties

NameTypeDescriptionNotes
dataset_idstrDataset identifier that owns the resource.[optional]
resource_typestrResource type from source schema config.[optional]
object_typestrConnector object type for the resource.[optional]
}

Example

from sailpoint.sources.models.source_resource_mapping_value import SourceResourceMappingValue

source_resource_mapping_value = SourceResourceMappingValue(
dataset_id='cmdb-servicenow:applications',
resource_type='std:resource',
object_type='account'
)

[Back to top]