Skip to main content

Machineidentityaggregationrequest

Properties

NameTypeDescriptionNotes
dataset_ids[]strList of dataset Ids to aggregate machine identities[required]
disable_optimizationboolFlag to disable optimization for the aggregation. Defaults to false when not provided. When set to true, it disables aggregation optimizations and may increase processing time.[optional] [default to False]
}

Example

from sailpoint.machine_identities.models.machineidentityaggregationrequest import Machineidentityaggregationrequest

machineidentityaggregationrequest = Machineidentityaggregationrequest(
dataset_ids=[
'source:datasetId12345'
],
disable_optimization=False
)

[Back to top]