Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/SelectorAccountMatchConfigMatchExpression.md
2025-04-01 09:23:12 -04:00

1.4 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
v2025-selector-account-match-config-match-expression SelectorAccountMatchConfigMatchExpression SelectorAccountMatchConfigMatchExpression SelectorAccountMatchConfigMatchExpression pythonsdk
python
Python
sdk
SelectorAccountMatchConfigMatchExpression
V2025SelectorAccountMatchConfigMatchExpression
/tools/sdk/python/v2025/models/selector-account-match-config-match-expression
SDK
Software Development Kit
SelectorAccountMatchConfigMatchExpression
V2025SelectorAccountMatchConfigMatchExpression

SelectorAccountMatchConfigMatchExpression

Properties

Name Type Description Notes
match_terms []MatchTerm [optional]
var_and bool If it is AND operators for match terms [optional] [default to True]
}

Example

from sailpoint.v2025.models.selector_account_match_config_match_expression import SelectorAccountMatchConfigMatchExpression

selector_account_match_config_match_expression = SelectorAccountMatchConfigMatchExpression(
match_terms=[{name=, value=, op=null, container=true, and=false, children=[{name=businessCategory, value=Service, op=eq, container=false, and=false, children=null}]}],
var_and=True
)

[Back to top]