Spconfigrules
Rules to be applied to the config object during the draft process.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| take_from_target_rules | []Spconfigrule | [optional] | |
| default_rules | []Spconfigrule | [optional] | |
| editable | bool | Indicates 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
)