Skip to main content

MultiHostIntegrationsAggScheduleUpdate

Properties

NameTypeDescriptionNotes
MultihostIdStringMulti-Host Integration ID. The ID must be unique[required]
AggregationGrpIdStringMulti-Host Integration aggregation group ID[required]
AggregationGrpNameStringMulti-Host Integration name[required]
AggregationCronScheduleStringCron expression to schedule aggregation[required]
EnableScheduleBooleanBoolean value for Multi-Host Integration aggregation schedule. This specifies if scheduled aggregation is enabled or disabled.[required][default to $false]
SourceIdList[]StringSource IDs of the Multi-Host Integration[required]
CreatedSystem.DateTimeCreated date of Multi-Host Integration aggregation schedule[optional]
ModifiedSystem.DateTimeModified date of Multi-Host Integration aggregation schedule[optional]

Examples

  • Prepare the resource
$MultiHostIntegrationsAggScheduleUpdate = Initialize-PSSailpoint.BetaMultiHostIntegrationsAggScheduleUpdate  -MultihostId 004091cb79b04636b88662afa50a4456 `
-AggregationGrpId 004091cb79b04636b88662afa50a4448 `
-AggregationGrpName Multi-Host Integration aggregation group name `
-AggregationCronSchedule 0 0 0 * * ? `
-EnableSchedule false `
-SourceIdList [004091cb79b04636b88662afa50a4440, 00af6d0d562a49b591c47be908740542] `
-Created 2024-01-23T18:08:50.897Z `
-Modified 2024-01-23T18:08:50.897Z
  • Convert the resource to JSON
$MultiHostIntegrationsAggScheduleUpdate | ConvertTo-JSON

[Back to top]