ScheduledActionPayload
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| JobType | Enum [ "BACKUP", "CREATE_DRAFT", "CONFIG_DEPLOY_DRAFT" ] | Type of the scheduled job. | [required] |
| StartTime | System.DateTime | The time when this scheduled action should start. Optional. | [optional] |
| CronString | String | Cron expression defining the schedule for this action. Optional for repeated events. | [optional] |
| TimeZoneId | String | Time zone ID for interpreting the cron expression. Optional, will default to current time zone. | [optional] |
| Content | ScheduledActionPayloadContent | [required] |
Examples
- Prepare the resource
$ScheduledActionPayload = Initialize-V2025ScheduledActionPayload -JobType BACKUP `
-StartTime 2024-08-16T14:16:58.389Z `
-CronString 0 0 * * * * `
-TimeZoneId America/Chicago `
-Content null
- Convert the resource to JSON
$ScheduledActionPayload | ConvertTo-JSON