Update to powershell SDK docs: 13903254328

This commit is contained in:
developer-relations-sp
2025-03-17 15:24:32 +00:00
parent 63b6e70fec
commit 9ed39129fb
15 changed files with 55 additions and 19 deletions

View File

@@ -18,19 +18,21 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Frequency** | **Enum** [ "daily", "weekly", "monthly", "yearly", "cronSchedule" ] | Frequency of execution | [required]
**TimeZone** | **String** | Time zone identifier | [optional]
**CronString** | **String** | | [optional]
**CronString** | **String** | A valid CRON expression | [optional]
**WeeklyDays** | **[]String** | Scheduled days of the week for execution | [optional]
**WeeklyTimes** | **[]String** | Scheduled execution times | [optional]
**YearlyTimes** | **[]String** | Scheduled execution times | [optional]
## Examples
- Prepare the resource
```powershell
$ScheduledAttributes = Initialize-PSSailpoint.BetaScheduledAttributes -Frequency null `
$ScheduledAttributes = Initialize-PSSailpoint.BetaScheduledAttributes -Frequency daily `
-TimeZone America/Chicago `
-CronString 0 9 * * 1 `
-WeeklyDays Monday `
-WeeklyTimes Monday
-WeeklyTimes Monday `
-YearlyTimes 1969-12-31T09:00:00.000Z
```
- Convert the resource to JSON