Interface TrafficManagerEndpoint.UpdateStages.WithSubnet
-
- All Known Subinterfaces:
TrafficManagerEndpoint.Update,TrafficManagerEndpoint.UpdateAzureEndpoint,TrafficManagerEndpoint.UpdateExternalEndpoint,TrafficManagerEndpoint.UpdateNestedProfileEndpoint
- Enclosing interface:
- TrafficManagerEndpoint.UpdateStages
public static interface TrafficManagerEndpoint.UpdateStages.WithSubnetThe stage of the traffic manager endpoint update allowing to specify subnets.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TrafficManagerEndpoint.UpdatewithoutSubnet(String subnetStartIp, int scope)Specifies that the given subnet CIDR (start ip, mask) should be removed.TrafficManagerEndpoint.UpdatewithoutSubnet(String subnetStartIp, String subnetEndIp)Specifies that subnet with the given range should be removed.TrafficManagerEndpoint.UpdatewithSubnet(String subnetStartIp, int mask)Specifies the subnets for the endpoint in CIDR format (start ip, mask).TrafficManagerEndpoint.UpdatewithSubnet(String subnetStartIp, String subnetEndIp)Specifies the subnets for the endpoint as an ip range.TrafficManagerEndpoint.UpdatewithSubnets(List<EndpointPropertiesSubnetsItem> subnets)Specifies the subnets for this endpoint.
-
-
-
Method Detail
-
withSubnet
TrafficManagerEndpoint.Update withSubnet(String subnetStartIp, int mask)
Specifies the subnets for the endpoint in CIDR format (start ip, mask).- Parameters:
subnetStartIp- the first ip in the subnetmask- the subnet mask- Returns:
- the next stage of the update
-
withSubnet
TrafficManagerEndpoint.Update withSubnet(String subnetStartIp, String subnetEndIp)
Specifies the subnets for the endpoint as an ip range.- Parameters:
subnetStartIp- the first ip in the subnetsubnetEndIp- the last ip in the subnet- Returns:
- the next stage of the update
-
withSubnets
TrafficManagerEndpoint.Update withSubnets(List<EndpointPropertiesSubnetsItem> subnets)
Specifies the subnets for this endpoint.- Parameters:
subnets- the array of subnet descriptions- Returns:
- the next stage of the update
-
withoutSubnet
TrafficManagerEndpoint.Update withoutSubnet(String subnetStartIp, int scope)
Specifies that the given subnet CIDR (start ip, mask) should be removed.- Parameters:
subnetStartIp- the first ip in the subnetscope- the subnet scope- Returns:
- the next stage of the update
-
withoutSubnet
TrafficManagerEndpoint.Update withoutSubnet(String subnetStartIp, String subnetEndIp)
Specifies that subnet with the given range should be removed.- Parameters:
subnetStartIp- the first ip in the subnetsubnetEndIp- the last ip in the subnet- Returns:
- the next stage of the update
-
-