Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/ScheduledActionResponse.md
2025-04-01 09:23:12 -04:00

2.3 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-response ScheduledActionResponse ScheduledActionResponse ScheduledActionResponse pythonsdk
python
Python
sdk
ScheduledActionResponse
V2025ScheduledActionResponse
/tools/sdk/python/v2025/models/scheduled-action-response
SDK
Software Development Kit
ScheduledActionResponse
V2025ScheduledActionResponse

ScheduledActionResponse

Properties

Name Type Description Notes
id str Unique identifier for this scheduled action. [optional]
created datetime The time when this scheduled action was created. [optional]
job_type Enum [ 'BACKUP', 'CREATE_DRAFT', 'CONFIG_DEPLOY_DRAFT' ] Type of the scheduled job. [optional]
content ScheduledActionResponseContent [optional]
start_time datetime The time when this scheduled action should start. [optional]
cron_string str Cron expression defining the schedule for this action. [optional]
time_zone_id str Time zone ID for interpreting the cron expression. [optional]
}

Example

from sailpoint.v2025.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.v2025.models.scheduled_action_response_content.ScheduledActionResponse_content(
                    name = 'Daily Backup', 
                    backup_options = sailpoint.v2025.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]