Interface ManagementPolicy.UpdateStages.Rule
-
- All Known Subinterfaces:
ManagementPolicy.Update
- Enclosing interface:
- ManagementPolicy.UpdateStages
public static interface ManagementPolicy.UpdateStages.RuleThe stage of the management policy update allowing to update a rule.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PolicyRule.UpdateupdateRule(String name)The function that updates a rule whose name is the inputted parameter name.ManagementPolicy.UpdatewithoutRule(String name)The function that removes a rule whose name is the inputted parameter name.
-
-
-
Method Detail
-
updateRule
PolicyRule.Update updateRule(String name)
The function that updates a rule whose name is the inputted parameter name.- Parameters:
name- the name of the rule to be updated.- Returns:
- the next stage of the management policy rule update.
-
withoutRule
ManagementPolicy.Update withoutRule(String name)
The function that removes a rule whose name is the inputted parameter name.- Parameters:
name- the name of the rule to be removed.- Returns:
- the next stage of the management policy update.
-
-