mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
adding powershell sdk docs back
This commit is contained in:
45
docs/tools/sdk/powershell/Reference/Beta/Models/Schedule1.md
Normal file
45
docs/tools/sdk/powershell/Reference/Beta/Models/Schedule1.md
Normal file
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: beta-schedule1
|
||||
title: Schedule1
|
||||
pagination_label: Schedule1
|
||||
sidebar_label: Schedule1
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'Schedule1', 'BetaSchedule1']
|
||||
slug: /tools/sdk/powershell/beta/models/schedule1
|
||||
tags: ['SDK', 'Software Development Kit', 'Schedule1', 'BetaSchedule1']
|
||||
---
|
||||
|
||||
|
||||
# Schedule1
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | [**ScheduleType**](schedule-type) | | [required]
|
||||
**Months** | Pointer to [**Schedule1Months**](schedule1-months) | | [optional]
|
||||
**Days** | Pointer to [**Schedule1Days**](schedule1-days) | | [optional]
|
||||
**Hours** | [**Schedule1Hours**](schedule1-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
|
||||
$Schedule1 = Initialize-PSSailpoint.BetaSchedule1 -Type null `
|
||||
-Months null `
|
||||
-Days null `
|
||||
-Hours null `
|
||||
-Expiration 2018-06-25T20:22:28.104Z `
|
||||
-TimeZoneId America/Chicago
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$Schedule1 | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user