adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: beta-schedule-hours
title: ScheduleHours
pagination_label: ScheduleHours
sidebar_label: ScheduleHours
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ScheduleHours', 'BetaScheduleHours']
slug: /tools/sdk/powershell/beta/models/schedule-hours
tags: ['SDK', 'Software Development Kit', 'ScheduleHours', 'BetaScheduleHours']
---
# ScheduleHours
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "LIST", "RANGE" ] | Enum type to specify hours value | [required]
**Values** | **[]String** | Values of the days based on the enum type mentioned above | [required]
**Interval** | Pointer to **Int64** | Interval between the cert generations | [optional]
## Examples
- Prepare the resource
```powershell
$ScheduleHours = Initialize-PSSailpoint.BetaScheduleHours -Type LIST `
-Values [1] `
-Interval 2
```
- Convert the resource to JSON
```powershell
$ScheduleHours | ConvertTo-JSON
```
[[Back to top]](#)