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,39 @@
---
id: schedule1-hours
title: Schedule1Hours
pagination_label: Schedule1Hours
sidebar_label: Schedule1Hours
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Schedule1Hours']
slug: /tools/sdk/powershell/v3/models/schedule1-hours
tags: ['SDK', 'Software Development Kit', 'Schedule1Hours']
---
# Schedule1Hours
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | [**SelectorType**](selector-type) | | [required]
**Values** | **[]String** | The selected values. | [required]
**Interval** | Pointer to **Int32** | The selected interval for RANGE selectors. | [optional]
## Examples
- Prepare the resource
```powershell
$Schedule1Hours = Initialize-PSSailpoint.V3Schedule1Hours -Type null `
-Values [MON, WED] `
-Interval 3
```
- Convert the resource to JSON
```powershell
$Schedule1Hours | ConvertTo-JSON
```
[[Back to top]](#)