Skip to main content

Backupoptions

Backup options control what will be included in the backup.

Properties

NameTypeDescriptionNotes
include_types[]strObject type names to be included in a Configuration Hub backup command.[optional]
object_optionsmap[string]ObjectexportimportnamesAdditional 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"]}}
)

[Back to top]