Interface TrafficManagerProfile.UpdateStages.WithMonitoringConfiguration
- All Known Subinterfaces:
TrafficManagerProfile.Update
- Enclosing interface:
- TrafficManagerProfile.UpdateStages
public static interface TrafficManagerProfile.UpdateStages.WithMonitoringConfiguration
The stage of the traffic manager profile update allowing to specify the endpoint monitoring configuration.
-
Method Summary
Modifier and TypeMethodDescriptionSpecify to use HTTP monitoring for the endpoints that checks for HTTP 200 response from the path '/' at regular intervals, using port 80.withHttpMonitoring(int port, String path) Specify the HTTP monitoring for the endpoints that checks for HTTP 200 response from the specified path at regular intervals, using the specified port.Specify to use HTTPS monitoring for the endpoints that checks for HTTPS 200 response from the path '/' at regular intervals, using port 443.withHttpsMonitoring(int port, String path) Specify the HTTPS monitoring for the endpoints that checks for HTTPS 200 response from the specified path at regular intervals, using the specified port.
-
Method Details
-
withHttpMonitoring
TrafficManagerProfile.Update withHttpMonitoring()Specify to use HTTP monitoring for the endpoints that checks for HTTP 200 response from the path '/' at regular intervals, using port 80.- Returns:
- the next stage of the traffic manager profile update
-
withHttpsMonitoring
TrafficManagerProfile.Update withHttpsMonitoring()Specify to use HTTPS monitoring for the endpoints that checks for HTTPS 200 response from the path '/' at regular intervals, using port 443.- Returns:
- the next stage of the traffic manager profile update
-
withHttpMonitoring
Specify the HTTP monitoring for the endpoints that checks for HTTP 200 response from the specified path at regular intervals, using the specified port.- Parameters:
port- the monitoring portpath- the monitoring path- Returns:
- the next stage of the traffic manager profile update
-
withHttpsMonitoring
Specify the HTTPS monitoring for the endpoints that checks for HTTPS 200 response from the specified path at regular intervals, using the specified port.- Parameters:
port- the monitoring portpath- the monitoring path- Returns:
- the next stage of the traffic manager profile update
-