removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,45 +0,0 @@
---
id: schedule
title: Schedule
pagination_label: Schedule
sidebar_label: Schedule
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Schedule']
slug: /tools/sdk/powershell/beta/models/schedule
tags: ['SDK', 'Software Development Kit', 'Schedule']
---
# Schedule
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "WEEKLY", "MONTHLY", "ANNUALLY", "CALENDAR" ] | Determines the overall schedule cadence. In general, all time period fields smaller than the chosen type can be configured. For example, a DAILY schedule can have 'hours' set, but not 'days'; a WEEKLY schedule can have both 'hours' and 'days' set. | [required]
**Months** | Pointer to [**ScheduleMonths**](schedule-months) | | [optional]
**Days** | Pointer to [**ScheduleDays**](schedule-days) | | [optional]
**Hours** | [**ScheduleHours**](schedule-hours) | | [required]
**Expiration** | Pointer to **System.DateTime** | Specifies the time after which this schedule will no longer occur. | [optional]
**TimeZoneId** | Pointer to **String** | The time zone to use when running the schedule. For instance, if the schedule is scheduled to run at 1AM, and this field is set to ""CST"", the schedule will run at 1AM CST. | [optional]
## Examples
- Prepare the resource
```powershell
$Schedule = Initialize-PSSailpoint.BetaSchedule -Type WEEKLY `
-Months null `
-Days null `
-Hours null `
-Expiration null `
-TimeZoneId CST
```
- Convert the resource to JSON
```powershell
$Schedule | ConvertTo-JSON
```
[[Back to top]](#)