Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/SpConfigRule.md
2025-02-20 12:59:19 -05:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-sp-config-rule SpConfigRule SpConfigRule SpConfigRule pythonsdk
python
Python
sdk
SpConfigRule
V2024SpConfigRule
/tools/sdk/python/v2024/models/sp-config-rule
SDK
Software Development Kit
SpConfigRule
V2024SpConfigRule

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 object Value to be assigned at the jsonPath location within the object [optional]
mode []str Draft modes to which this rule will apply [optional]
}

Example

from sailpoint.v2024.models.sp_config_rule import SpConfigRule

sp_config_rule = SpConfigRule(
path='$.enabled',
value=sailpoint.v2024.models.value.value(),
mode=[RESTORE, PROMOTE]
)

[Back to top]