Skip to main content

ScheduledActionPayloadContent

Properties

NameTypeDescriptionNotes
NameStringName of the scheduled action (maximum 50 characters).[required]
BackupOptionsScheduledActionPayloadContentBackupOptions[optional]
SourceBackupIdStringID of the source backup. Required for CREATE_DRAFT jobs.[optional]
SourceTenantStringSource tenant identifier. Required for CREATE_DRAFT jobs.[optional]
DraftIdStringID of the draft to be deployed. Required for CONFIG_DEPLOY_DRAFT jobs.[optional]

Examples

  • Prepare the resource
$ScheduledActionPayloadContent = Initialize-PSSailpoint.V2024ScheduledActionPayloadContent  -Name Daily Backup `
-BackupOptions null `
-SourceBackupId 5678b87d-48ca-439a-868f-2160001da8c2 `
-SourceTenant tenant-name `
-DraftId 9012b87d-48ca-439a-868f-2160001da8c3
  • Convert the resource to JSON
$ScheduledActionPayloadContent | ConvertTo-JSON

[Back to top]