adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,45 @@
---
id: schedule2
title: Schedule2
pagination_label: Schedule2
sidebar_label: Schedule2
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Schedule2']
slug: /tools/sdk/powershell/v2024/models/schedule2
tags: ['SDK', 'Software Development Kit', 'Schedule2']
---
# Schedule2
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | [**ScheduleType**](schedule-type) | | [required]
**Months** | Pointer to [**Schedule2Months**](schedule2-months) | | [optional]
**Days** | Pointer to [**Schedule2Days**](schedule2-days) | | [optional]
**Hours** | [**Schedule2Hours**](schedule2-hours) | | [required]
**Expiration** | Pointer to **System.DateTime** | A date-time in ISO-8601 format | [optional]
**TimeZoneId** | Pointer to **String** | The canonical TZ identifier the schedule will run in (ex. America/New_York). If no timezone is specified, the org's default timezone is used. | [optional]
## Examples
- Prepare the resource
```powershell
$Schedule2 = Initialize-PSSailpoint.V2024Schedule2 -Type null `
-Months null `
-Days null `
-Hours null `
-Expiration 2018-06-25T20:22:28.104Z `
-TimeZoneId America/Chicago
```
- Convert the resource to JSON
```powershell
$Schedule2 | ConvertTo-JSON
```
[[Back to top]](#)