mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
Update to powershell SDK docs: 14068083503
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
---
|
||||
id: v2024-scheduled-action-response
|
||||
title: ScheduledActionResponse
|
||||
pagination_label: ScheduledActionResponse
|
||||
sidebar_label: ScheduledActionResponse
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'ScheduledActionResponse', 'V2024ScheduledActionResponse']
|
||||
slug: /tools/sdk/powershell/v2024/models/scheduled-action-response
|
||||
tags: ['SDK', 'Software Development Kit', 'ScheduledActionResponse', 'V2024ScheduledActionResponse']
|
||||
---
|
||||
|
||||
|
||||
# ScheduledActionResponse
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | **String** | Unique identifier for this scheduled action. | [optional]
|
||||
**Created** | **System.DateTime** | The time when this scheduled action was created. | [optional]
|
||||
**JobType** | **Enum** [ "BACKUP", "CREATE_DRAFT", "CONFIG_DEPLOY_DRAFT" ] | Type of the scheduled job. | [optional]
|
||||
**Content** | [**ScheduledActionResponseContent**](scheduled-action-response-content) | | [optional]
|
||||
**StartTime** | **System.DateTime** | The time when this scheduled action should start. | [optional]
|
||||
**CronString** | **String** | Cron expression defining the schedule for this action. | [optional]
|
||||
**TimeZoneId** | **String** | Time zone ID for interpreting the cron expression. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$ScheduledActionResponse = Initialize-PSSailpoint.V2024ScheduledActionResponse -Id 3469b87d-48ca-439a-868f-2160001da8c1 `
|
||||
-Created 2021-05-11T22:23:16Z `
|
||||
-JobType BACKUP `
|
||||
-Content null `
|
||||
-StartTime 2021-05-12T10:00Z `
|
||||
-CronString 0 0 12 * * ? `
|
||||
-TimeZoneId America/Chicago
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$ScheduledActionResponse | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user