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.configuration_hub.models.scheduledactionresponse_content_backup_options import ScheduledactionresponseContentBackupOptions
scheduledactionresponse_content_backup_options = ScheduledactionresponseContentBackupOptions(
include_types=["ROLE","IDENTITY_PROFILE"],
object_options={"SOURCE":{"includedNames":["Source1","Source2"]},"ROLE":{"includedNames":["Admin Role","User Role"]}}
)