Skip to main content

SourceDataset

Dataset instance for a source. The dataset id is server-generated from name on create (customer: plus a normalized form of name); any client-supplied id is ignored. aggregationEnabled may always be updated. name, description, and resources can be changed only when the connector has the supportDatasetCreation label.

Properties

NameTypeDescriptionNotes
idstrDataset identifier. Server-generated on create.[optional] [readonly]
namestrDisplay name of the dataset. Required on create.[optional]
descriptionstrDescription of the dataset.[optional]
aggregation_enabledboolWhether aggregation is enabled for this dataset on the source.[optional] [default to False]
resources[]SourceDatasetResourceReferenceSimplified resource references associated with this dataset.[optional]
}

Example

from sailpoint.sources.models.source_dataset import SourceDataset

source_dataset = SourceDataset(
id='cmdb-servicenow:applications',
name='Applications',
description='CMDB application records for this source.',
aggregation_enabled=True,
resources=[
sailpoint.sources.models.source_dataset_resource_reference.Source Dataset Resource Reference(
id = 'aws:iam-role',
name = 'Role',
type = 'std:resource', )
]
)

[Back to top]