Interface TrafficManagerEndpoint.DefinitionStages.WithGeographicLocation<ParentT>
-
- Type Parameters:
ParentT- the return type ofAttachable.InDefinition.attach()
- All Known Subinterfaces:
TrafficManagerEndpoint.Definition<ParentT>,TrafficManagerEndpoint.DefinitionStages.WithAttach<ParentT>,TrafficManagerEndpoint.DefinitionStages.WithEndpointThreshold<ParentT>
- Enclosing interface:
- TrafficManagerEndpoint.DefinitionStages
public static interface TrafficManagerEndpoint.DefinitionStages.WithGeographicLocation<ParentT>The stage of the traffic manager endpoint definition allowing to specify the geographic region.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TrafficManagerEndpoint.DefinitionStages.WithAttach<ParentT>withGeographicLocation(GeographicLocation geographicLocation)Specifies the geographic location for the endpoint that will be used when the parent profile is configured with geographic based routing methodTrafficRoutingMethod.GEOGRAPHIC.TrafficManagerEndpoint.DefinitionStages.WithAttach<ParentT>withGeographicLocation(String geographicLocationCode)Specifies the geographic location for the endpoint that will be used when the parent profile is configured with geographic based routing methodTrafficRoutingMethod.GEOGRAPHIC.TrafficManagerEndpoint.DefinitionStages.WithAttach<ParentT>withGeographicLocations(Collection<String> geographicLocationCodes)Specifies the list of geographic location for the endpoint that will be used when the parent profile is configured with geographic based routing methodTrafficRoutingMethod.GEOGRAPHIC.TrafficManagerEndpoint.DefinitionStages.WithAttach<ParentT>withGeographicLocations(List<GeographicLocation> geographicLocations)Specifies the list of geographic location for the endpoint that will be used when the parent profile is configured with geographic based routing methodTrafficRoutingMethod.GEOGRAPHIC.
-
-
-
Method Detail
-
withGeographicLocation
TrafficManagerEndpoint.DefinitionStages.WithAttach<ParentT> withGeographicLocation(GeographicLocation geographicLocation)
Specifies the geographic location for the endpoint that will be used when the parent profile is configured with geographic based routing methodTrafficRoutingMethod.GEOGRAPHIC.- Parameters:
geographicLocation- the geographic location- Returns:
- the next stage of the definition
-
withGeographicLocations
TrafficManagerEndpoint.DefinitionStages.WithAttach<ParentT> withGeographicLocations(List<GeographicLocation> geographicLocations)
Specifies the list of geographic location for the endpoint that will be used when the parent profile is configured with geographic based routing methodTrafficRoutingMethod.GEOGRAPHIC.- Parameters:
geographicLocations- the geographic locations- Returns:
- the next stage of the definition
-
withGeographicLocation
TrafficManagerEndpoint.DefinitionStages.WithAttach<ParentT> withGeographicLocation(String geographicLocationCode)
Specifies the geographic location for the endpoint that will be used when the parent profile is configured with geographic based routing methodTrafficRoutingMethod.GEOGRAPHIC.- Parameters:
geographicLocationCode- the geographic location code- Returns:
- the next stage of the definition
-
withGeographicLocations
TrafficManagerEndpoint.DefinitionStages.WithAttach<ParentT> withGeographicLocations(Collection<String> geographicLocationCodes)
Specifies the list of geographic location for the endpoint that will be used when the parent profile is configured with geographic based routing methodTrafficRoutingMethod.GEOGRAPHIC.- Parameters:
geographicLocationCodes- the geographic location codes- Returns:
- the next stage of the definition
-
-