Spconfigrule
Format of Config Hub object rules.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| path | str | JSONPath expression denoting the path within the object where a value substitution should be applied. | [optional] |
| value | SpconfigruleValue | [optional] | |
| modes | []str | Draft modes the rule will apply to. | [optional] |
| } |
Example
from sailpoint.sp_config.models.spconfigrule import Spconfigrule
spconfigrule = Spconfigrule(
path='$.enabled',
value=,
modes=["RESTORE","PROMOTE"]
)