Skip to main content

ScheduledactionresponseContent

Content details for the scheduled action.

Properties

NameTypeDescriptionNotes
namestrName of the scheduled action (maximum 50 characters).[optional]
backup_optionsScheduledactionresponseContentBackupOptions[optional]
source_backup_idstrID of the source backup. Required for CREATE_DRAFT jobs only.[optional]
source_tenantstrSource tenant identifier. Required for CREATE_DRAFT jobs only.[optional]
draft_idstrID of the draft to be deployed. Required for CONFIG_DEPLOY_DRAFT jobs only.[optional]
}

Example

from sailpoint.configuration_hub.models.scheduledactionresponse_content import ScheduledactionresponseContent

scheduledactionresponse_content = ScheduledactionresponseContent(
name='Daily Backup',
backup_options=sailpoint.configuration_hub.models.scheduledactionresponse_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'
)

[Back to top]