Skip to main content

Spconfigrules

Rules to be applied to the config object during the draft process.

Properties

NameTypeDescriptionNotes
take_from_target_rules[]Spconfigrule[optional]
default_rules[]Spconfigrule[optional]
editableboolIndicates whether the object can be edited.[optional] [default to False]
}

Example

from sailpoint.sp_config.models.spconfigrules import Spconfigrules

spconfigrules = Spconfigrules(
take_from_target_rules=[
sailpoint.sp_config.models.config_object_rule.Config Object Rule(
path = '$.enabled',
value = null,
modes = ["RESTORE","PROMOTE"], )
],
default_rules=[
sailpoint.sp_config.models.config_object_rule.Config Object Rule(
path = '$.enabled',
value = null,
modes = ["RESTORE","PROMOTE"], )
],
editable=True
)

[Back to top]