Update to powershell SDK docs: 14177785931

This commit is contained in:
developer-relations-sp
2025-03-31 17:39:30 +00:00
parent 3be337e205
commit 37441b7d71
16 changed files with 52 additions and 24 deletions

View File

@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'ScheduledAttributes', 'ScheduledAttri
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**CronString** | **String** | A valid CRON expression | [optional]
**Frequency** | **Enum** [ "daily", "weekly", "monthly", "yearly", "cronSchedule" ] | Frequency of execution | [required]
**TimeZone** | **String** | Time zone identifier | [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]
@@ -27,9 +27,9 @@ Name | Type | Description | Notes
- Prepare the resource
```powershell
$ScheduledAttributes = Initialize-PSSailpoint.V3ScheduledAttributes -CronString 0 9 * * 1 `
-Frequency daily `
$ScheduledAttributes = Initialize-PSSailpoint.V3ScheduledAttributes -Frequency daily `
-TimeZone America/Chicago `
-CronString 0 9 * * 1 `
-WeeklyDays Monday `
-WeeklyTimes Monday `
-YearlyTimes 1969-12-31T09:00:00.000Z