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.machine_identity_aggregation_request import MachineIdentityAggregationRequest

machine_identity_aggregation_request = MachineIdentityAggregationRequest(
dataset_ids=[
'source:datasetId12345'
],
disable_optimization=False
)

[Back to top]