Skip to main content

ScheduledActionResponse

Properties

NameTypeDescriptionNotes
idstrUnique identifier for this scheduled action.[optional]
createddatetimeThe time when this scheduled action was created.[optional]
job_typeEnum [ 'BACKUP', 'CREATE_DRAFT', 'CONFIG_DEPLOY_DRAFT' ]Type of the scheduled job.[optional]
contentScheduledActionResponseContent[optional]
start_timedatetimeThe time when this scheduled action should start.[optional]
cron_stringstrCron expression defining the schedule for this action.[optional]
time_zone_idstrTime zone ID for interpreting the cron expression.[optional]
}

Example

from sailpoint.v2024.models.scheduled_action_response import ScheduledActionResponse

scheduled_action_response = ScheduledActionResponse(
id='3469b87d-48ca-439a-868f-2160001da8c1',
created='2021-05-11T22:23:16Z',
job_type='BACKUP',
content=sailpoint.v2024.models.scheduled_action_response_content.ScheduledActionResponse_content(
name = 'Daily Backup',
backup_options = sailpoint.v2024.models.scheduled_action_response_content_backup_options.ScheduledActionResponse_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', ),
start_time='2021-05-12T10:00Z',
cron_string='0 0 12 * * ?',
time_zone_id='America/Chicago'
)

[Back to top]