mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: v2024-schedule2
|
||||
title: Schedule2
|
||||
pagination_label: Schedule2
|
||||
sidebar_label: Schedule2
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'Schedule2', 'V2024Schedule2']
|
||||
slug: /tools/sdk/powershell/v2024/models/schedule2
|
||||
tags: ['SDK', 'Software Development Kit', 'Schedule2', 'V2024Schedule2']
|
||||
---
|
||||
|
||||
|
||||
# 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]](#)
|
||||
|
||||
Reference in New Issue
Block a user