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