Backupoptions
Backup options control what will be included in the backup.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| include_types | []str | Object type names to be included in a Configuration Hub backup command. | [optional] |
| object_options | map[string]Objectexportimportnames | Additional options targeting specific objects related to each item in the includeTypes field. | [optional] |
| } |
Example
from sailpoint.configuration_hub.models.backupoptions import Backupoptions
backupoptions = Backupoptions(
include_types=[
'TRIGGER_SUBSCRIPTION'
],
object_options={"TRIGGER_SUBSCRIPTION":{"includedNames":["Trigger Subscription name"]}}
)