Interface ApplicationGatewayProbe.UpdateStages.WithHealthyHttpResponseStatusCodeRanges
-
- All Known Subinterfaces:
ApplicationGatewayProbe.Update
- Enclosing interface:
- ApplicationGatewayProbe.UpdateStages
public static interface ApplicationGatewayProbe.UpdateStages.WithHealthyHttpResponseStatusCodeRangesThe stage of an application gateway probe update allowing to specify healthy HTTP response status code ranges.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGatewayProbe.UpdatewithHealthyHttpResponseStatusCodeRange(int from, int to)Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.ApplicationGatewayProbe.UpdatewithHealthyHttpResponseStatusCodeRange(String range)Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.ApplicationGatewayProbe.UpdatewithHealthyHttpResponseStatusCodeRanges(Set<String> ranges)Specifies the ranges of the backend's HTTP response status codes that are to be considered healthy.ApplicationGatewayProbe.UpdatewithoutHealthyHttpResponseStatusCodeRanges()Removes all healthy HTTP status response code ranges.
-
-
-
Method Detail
-
withHealthyHttpResponseStatusCodeRanges
ApplicationGatewayProbe.Update withHealthyHttpResponseStatusCodeRanges(Set<String> ranges)
Specifies the ranges of the backend's HTTP response status codes that are to be considered healthy.- Parameters:
ranges- number ranges expressed in the format "###-###", for example "200-399", which is the default- Returns:
- the next stage of the update
-
withHealthyHttpResponseStatusCodeRange
ApplicationGatewayProbe.Update withHealthyHttpResponseStatusCodeRange(String range)
Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.- Parameters:
range- a number range expressed in the format "###-###", for example "200-399", which is the default- Returns:
- the next stage of the update
-
withHealthyHttpResponseStatusCodeRange
ApplicationGatewayProbe.Update withHealthyHttpResponseStatusCodeRange(int from, int to)
Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.- Parameters:
from- the lowest number in the rangeto- the highest number in the range- Returns:
- the next stage of the update
-
withoutHealthyHttpResponseStatusCodeRanges
ApplicationGatewayProbe.Update withoutHealthyHttpResponseStatusCodeRanges()
Removes all healthy HTTP status response code ranges.- Returns:
- the next stage of the update
-
-