add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
---
id: v2025-scheduled-action-payload
title: ScheduledActionPayload
pagination_label: ScheduledActionPayload
sidebar_label: ScheduledActionPayload
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ScheduledActionPayload', 'V2025ScheduledActionPayload']
slug: /tools/sdk/python/v2025/models/scheduled-action-payload
tags: ['SDK', 'Software Development Kit', 'ScheduledActionPayload', 'V2025ScheduledActionPayload']
---
# ScheduledActionPayload
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**job_type** | **Enum** [ 'BACKUP', 'CREATE_DRAFT', 'CONFIG_DEPLOY_DRAFT' ] | Type of the scheduled job. | [required]
**start_time** | **datetime** | The time when this scheduled action should start. Optional. | [optional]
**cron_string** | **str** | Cron expression defining the schedule for this action. Optional for repeated events. | [optional]
**time_zone_id** | **str** | Time zone ID for interpreting the cron expression. Optional, will default to current time zone. | [optional]
**content** | [**ScheduledActionPayloadContent**](scheduled-action-payload-content) | | [required]
}
## Example
```python
from sailpoint.v2025.models.scheduled_action_payload import ScheduledActionPayload
scheduled_action_payload = ScheduledActionPayload(
job_type='BACKUP',
start_time='2024-08-16T14:16:58.389Z',
cron_string='0 0 12 * * ?',
time_zone_id='America/Chicago',
content=sailpoint.v2025.models.scheduled_action_payload_content.ScheduledActionPayload_content(
name = 'Daily Backup',
backup_options = sailpoint.v2025.models.scheduled_action_payload_content_backup_options.ScheduledActionPayload_content_backupOptions(
include_types = [ROLE, IDENTITY_PROFILE],
object_options = {SOURCE={includedNames=[Source1, Source2]}, ROLE={includedNames=[Admin Role, User Role]}}, ),
source_backup_id = '5678b87d-48ca-439a-868f-2160001da8c2',
source_tenant = 'tenant-name',
draft_id = '9012b87d-48ca-439a-868f-2160001da8c3', )
)
```
[[Back to top]](#)