Interface TrafficManagerProfile.DefinitionStages.WithMonitoringConfiguration
-
- All Known Subinterfaces:
TrafficManagerProfile.Definition,TrafficManagerProfile.DefinitionStages.WithCreate
- Enclosing interface:
- TrafficManagerProfile.DefinitionStages
public static interface TrafficManagerProfile.DefinitionStages.WithMonitoringConfigurationThe stage of the traffic manager profile definition allowing to specify the endpoint monitoring configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TrafficManagerProfile.DefinitionStages.WithCreatewithHttpMonitoring()Specify to use HTTP monitoring for the endpoints that checks for HTTP 200 response from the path '/' at regular intervals, using port 80.TrafficManagerProfile.DefinitionStages.WithCreatewithHttpMonitoring(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.TrafficManagerProfile.DefinitionStages.WithCreatewithHttpsMonitoring()Specify to use HTTPS monitoring for the endpoints that checks for HTTPS 200 response from the path '/' at regular intervals, using port 443.TrafficManagerProfile.DefinitionStages.WithCreatewithHttpsMonitoring(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 Detail
-
withHttpMonitoring
TrafficManagerProfile.DefinitionStages.WithCreate 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 definition
-
withHttpsMonitoring
TrafficManagerProfile.DefinitionStages.WithCreate 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 definition
-
withHttpMonitoring
TrafficManagerProfile.DefinitionStages.WithCreate 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.- Parameters:
port- the monitoring portpath- the monitoring path- Returns:
- the next stage of the definition
-
withHttpsMonitoring
TrafficManagerProfile.DefinitionStages.WithCreate 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.- Parameters:
port- the monitoring portpath- the monitoring path- Returns:
- the next stage of the definition
-
-