Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ScheduledActionResponseContent.md
2025-05-07 14:37:48 +00:00

1.6 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-scheduled-action-response-content ScheduledActionResponseContent ScheduledActionResponseContent ScheduledActionResponseContent powershellsdk
powershell
PowerShell
sdk
ScheduledActionResponseContent
V2024ScheduledActionResponseContent
/tools/sdk/powershell/v2024/models/scheduled-action-response-content
SDK
Software Development Kit
ScheduledActionResponseContent
V2024ScheduledActionResponseContent

ScheduledActionResponseContent

Properties

Name Type Description Notes
Name String Name of the scheduled action (maximum 50 characters). [optional]
BackupOptions ScheduledActionResponseContentBackupOptions [optional]
SourceBackupId String ID of the source backup. Required for CREATE_DRAFT jobs only. [optional]
SourceTenant String Source tenant identifier. Required for CREATE_DRAFT jobs only. [optional]
DraftId String ID of the draft to be deployed. Required for CONFIG_DEPLOY_DRAFT jobs only. [optional]

Examples

  • Prepare the resource
$ScheduledActionResponseContent = Initialize-V2024ScheduledActionResponseContent  -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
$ScheduledActionResponseContent | ConvertTo-JSON

[Back to top]