Interface PolicyRule.UpdateStages.WithPrefixesToFilterFor
-
- All Known Subinterfaces:
PolicyRule.Update
- Enclosing interface:
- PolicyRule.UpdateStages
public static interface PolicyRule.UpdateStages.WithPrefixesToFilterForTHe stage of the management policy rule update allowing to specify the prefixes for the blobs that the rule will apply to.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PolicyRule.UpdatewithoutPrefixesToFilterFor()The function that clears all blob prefixes so the rule will apply to blobs regardless of prefixes.PolicyRule.UpdatewithPrefixesToFilterFor(List<String> prefixes)The function that specifies the list of prefixes for the blobs that the rule will apply to.PolicyRule.UpdatewithPrefixToFilterFor(String prefix)The function that specifies a prefix for the blobs that the rule will apply to.
-
-
-
Method Detail
-
withPrefixesToFilterFor
PolicyRule.Update withPrefixesToFilterFor(List<String> prefixes)
The function that specifies the list of prefixes for the blobs that the rule will apply to.- Parameters:
prefixes- a list of the prefixes for the blobs that the rule will apply to.- Returns:
- the next stage of the management policy rule update.
-
withPrefixToFilterFor
PolicyRule.Update withPrefixToFilterFor(String prefix)
The function that specifies a prefix for the blobs that the rule will apply to.- Parameters:
prefix- a prefix for the blobs that the rule will apply to.- Returns:
- the next stage of the management policy rule update.
-
withoutPrefixesToFilterFor
PolicyRule.Update withoutPrefixesToFilterFor()
The function that clears all blob prefixes so the rule will apply to blobs regardless of prefixes.- Returns:
- the next stage of the management policy rule update.
-
-