mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
---
|
||||
id: beta-scheduled-attributes
|
||||
title: ScheduledAttributes
|
||||
pagination_label: ScheduledAttributes
|
||||
sidebar_label: ScheduledAttributes
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'ScheduledAttributes', 'BetaScheduledAttributes']
|
||||
slug: /tools/sdk/powershell/beta/models/scheduled-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'ScheduledAttributes', 'BetaScheduledAttributes']
|
||||
---
|
||||
|
||||
|
||||
# ScheduledAttributes
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Frequency** | **Enum** [ "daily", "weekly", "monthly", "yearly", "cronSchedule" ] | Frequency of execution | [required]
|
||||
**TimeZone** | Pointer to **String** | Time zone identifier | [optional]
|
||||
**CronString** | Pointer to **String** | | [optional]
|
||||
**WeeklyDays** | Pointer to **[]String** | Scheduled days of the week for execution | [optional]
|
||||
**WeeklyTimes** | Pointer to **[]String** | Scheduled execution times | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$ScheduledAttributes = Initialize-PSSailpoint.BetaScheduledAttributes -Frequency null `
|
||||
-TimeZone America/Chicago `
|
||||
-CronString 0 9 * * 1 `
|
||||
-WeeklyDays Monday `
|
||||
-WeeklyTimes Monday
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$ScheduledAttributes | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user