Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/ScheduledActionResponseContentBackupOptions.md
2025-03-25 19:09:00 +00:00

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
v2024-scheduled-action-response-content-backup-options ScheduledActionResponseContentBackupOptions ScheduledActionResponseContentBackupOptions ScheduledActionResponseContentBackupOptions pythonsdk
python
Python
sdk
ScheduledActionResponseContentBackupOptions
V2024ScheduledActionResponseContentBackupOptions
/tools/sdk/python/v2024/models/scheduled-action-response-content-backup-options
SDK
Software Development Kit
ScheduledActionResponseContentBackupOptions
V2024ScheduledActionResponseContentBackupOptions

ScheduledActionResponseContentBackupOptions

Options for BACKUP type jobs. Optional, applicable for BACKUP jobs only.

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.v2024.models.scheduled_action_response_content_backup_options import ScheduledActionResponseContentBackupOptions

scheduled_action_response_content_backup_options = ScheduledActionResponseContentBackupOptions(
include_types=[ROLE, IDENTITY_PROFILE],
object_options={SOURCE={includedNames=[Source1, Source2]}, ROLE={includedNames=[Admin Role, User Role]}}
)

[Back to top]