RemoteAddressMatchConditionParameters Class
Defines the parameters for RemoteAddress match conditions.
Constructor
RemoteAddressMatchConditionParameters()
Variables
| Name | Description |
|---|---|
|
operator
|
Describes operator to be matched. Required. Known values are: "Any", "IPMatch", and "GeoMatch". |
|
negate_condition
|
Describes if this is negate condition or not. |
|
match_values
|
Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match. |
|
transforms
|
List of transforms. |
|
type_name
|
Literal[DeliveryRuleConditionParametersType.DELIVERY_RULE_REMOTE_ADDRESS_CONDITION_PARAMETERS]
Required. DELIVERY_RULE_REMOTE_ADDRESS_CONDITION_PARAMETERS. |
Attributes
matchValues
Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
matchValues: list[str]
negateCondition
Describes if this is negate condition or not.
negateCondition: bool
operator
"Any", "IPMatch", and "GeoMatch".
operator: Required[str | RemoteAddressOperator]
transforms
List of transforms.
transforms: list[typing.Union[str, ForwardRef('Transform')]]
typeName
Required. DELIVERY_RULE_REMOTE_ADDRESS_CONDITION_PARAMETERS.
typeName: DELIVERY_RULE_REMOTE_ADDRESS_CONDITION_PARAMETERS: 'DeliveryRuleRemoteAddressConditionParameters'>]]