Skip to main content

ScheduledActionPayloadContentBackupOptions

Options for BACKUP type jobs. Required for BACKUP jobs.

Properties

NameTypeDescriptionNotes
include_types[]strObject types that are to be included in the backup.[optional]
object_optionsmap[string]ScheduledActionResponseContentBackupOptionsObjectOptionsValueMap of objectType string to the options to be passed to the target service for that objectType.[optional]
}

Example

from sailpoint.v2024.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]}}
)

[Back to top]