Interface PolicyRule.UpdateStages.WithBlobTypesToFilterFor
-
- All Known Subinterfaces:
PolicyRule.Update
- Enclosing interface:
- PolicyRule.UpdateStages
public static interface PolicyRule.UpdateStages.WithBlobTypesToFilterForThe stage of the management policy rule update allowing to specify the blob types that the rule will apply to.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PolicyRule.UpdatewithBlobTypesToFilterFor(List<BlobTypes> blobTypes)The function that specifies the list of blob types that the rule will apply to.PolicyRule.UpdatewithBlobTypeToFilterFor(BlobTypes blobType)The function that specifies a blob type that the rule will apply to.PolicyRule.UpdatewithBlobTypeToFilterForRemoved(BlobTypes blobType)The function that specifies to remove a blob type that the rule will apply to.
-
-
-
Method Detail
-
withBlobTypesToFilterFor
PolicyRule.Update withBlobTypesToFilterFor(List<BlobTypes> blobTypes)
The function that specifies the list of blob types that the rule will apply to.- Parameters:
blobTypes- a list of the types of blob the rule will apply to.- Returns:
- the next stage of the management policy rule update.
-
withBlobTypeToFilterFor
PolicyRule.Update withBlobTypeToFilterFor(BlobTypes blobType)
The function that specifies a blob type that the rule will apply to.- Parameters:
blobType- a blob type that the rule will apply to.- Returns:
- the next stage of the management policy rule update.
-
withBlobTypeToFilterForRemoved
PolicyRule.Update withBlobTypeToFilterForRemoved(BlobTypes blobType)
The function that specifies to remove a blob type that the rule will apply to.- Parameters:
blobType- the blob type that you wish the rule to no longer apply to.- Returns:
- the next stage of the management policy rule update.
-
-