Class RuleUpdatePropertiesParameters
- java.lang.Object
-
- com.azure.resourcemanager.cdn.fluent.models.RuleUpdatePropertiesParameters
-
- Direct Known Subclasses:
RuleProperties
public class RuleUpdatePropertiesParameters extends Object
The JSON object that contains the properties of the rule to update.
-
-
Constructor Summary
Constructors Constructor Description RuleUpdatePropertiesParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DeliveryRuleAction>actions()Get the actions property: A list of actions that are executed when all the conditions of a rule are satisfied.List<DeliveryRuleCondition>conditions()Get the conditions property: A list of conditions that must be matched for the actions to be executed.MatchProcessingBehaviormatchProcessingBehavior()Get the matchProcessingBehavior property: If this rule is a match should the rules engine continue running the remaining rules or stop.Integerorder()Get the order property: The order in which the rules are applied for the endpoint.StringruleSetName()Get the ruleSetName property: The name of the rule set containing the rule.voidvalidate()Validates the instance.RuleUpdatePropertiesParameterswithActions(List<DeliveryRuleAction> actions)Set the actions property: A list of actions that are executed when all the conditions of a rule are satisfied.RuleUpdatePropertiesParameterswithConditions(List<DeliveryRuleCondition> conditions)Set the conditions property: A list of conditions that must be matched for the actions to be executed.RuleUpdatePropertiesParameterswithMatchProcessingBehavior(MatchProcessingBehavior matchProcessingBehavior)Set the matchProcessingBehavior property: If this rule is a match should the rules engine continue running the remaining rules or stop.RuleUpdatePropertiesParameterswithOrder(Integer order)Set the order property: The order in which the rules are applied for the endpoint.
-
-
-
Method Detail
-
ruleSetName
public String ruleSetName()
Get the ruleSetName property: The name of the rule set containing the rule.- Returns:
- the ruleSetName value.
-
order
public Integer order()
Get the order property: The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.- Returns:
- the order value.
-
withOrder
public RuleUpdatePropertiesParameters withOrder(Integer order)
Set the order property: The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.- Parameters:
order- the order value to set.- Returns:
- the RuleUpdatePropertiesParameters object itself.
-
conditions
public List<DeliveryRuleCondition> conditions()
Get the conditions property: A list of conditions that must be matched for the actions to be executed.- Returns:
- the conditions value.
-
withConditions
public RuleUpdatePropertiesParameters withConditions(List<DeliveryRuleCondition> conditions)
Set the conditions property: A list of conditions that must be matched for the actions to be executed.- Parameters:
conditions- the conditions value to set.- Returns:
- the RuleUpdatePropertiesParameters object itself.
-
actions
public List<DeliveryRuleAction> actions()
Get the actions property: A list of actions that are executed when all the conditions of a rule are satisfied.- Returns:
- the actions value.
-
withActions
public RuleUpdatePropertiesParameters withActions(List<DeliveryRuleAction> actions)
Set the actions property: A list of actions that are executed when all the conditions of a rule are satisfied.- Parameters:
actions- the actions value to set.- Returns:
- the RuleUpdatePropertiesParameters object itself.
-
matchProcessingBehavior
public MatchProcessingBehavior matchProcessingBehavior()
Get the matchProcessingBehavior property: If this rule is a match should the rules engine continue running the remaining rules or stop. If not present, defaults to Continue.- Returns:
- the matchProcessingBehavior value.
-
withMatchProcessingBehavior
public RuleUpdatePropertiesParameters withMatchProcessingBehavior(MatchProcessingBehavior matchProcessingBehavior)
Set the matchProcessingBehavior property: If this rule is a match should the rules engine continue running the remaining rules or stop. If not present, defaults to Continue.- Parameters:
matchProcessingBehavior- the matchProcessingBehavior value to set.- Returns:
- the RuleUpdatePropertiesParameters object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-