mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.6 KiB
1.6 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-scheduled-action-payload-content-backup-options | ScheduledActionPayloadContentBackupOptions | ScheduledActionPayloadContentBackupOptions | ScheduledActionPayloadContentBackupOptions | pythonsdk |
|
/tools/sdk/python/v2025/models/scheduled-action-payload-content-backup-options |
|
ScheduledActionPayloadContentBackupOptions
Options for BACKUP type jobs. Required for BACKUP jobs.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| include_types | []str | Object types that are to be included in the backup. | [optional] |
| object_options | map[string]ScheduledActionResponseContentBackupOptionsObjectOptionsValue | Map of objectType string to the options to be passed to the target service for that objectType. | [optional] |
| } |
Example
from sailpoint.v2025.models.scheduled_action_payload_content_backup_options import ScheduledActionPayloadContentBackupOptions
scheduled_action_payload_content_backup_options = ScheduledActionPayloadContentBackupOptions(
include_types=[ROLE, IDENTITY_PROFILE],
object_options={SOURCE={includedNames=[Source1, Source2]}, ROLE={includedNames=[Admin Role, User Role]}}
)