LoadBalancer.UpdateStages.WithLoadBalancingRule Interface

public static interface LoadBalancer.UpdateStages.WithLoadBalancingRule

The stage of the load balancer update allowing to add, remove or modify load balancing rules.

Method Summary

Modifier and Type Method and Description
abstract Blank<Update> defineLoadBalancingRule(String name)

Begins the definition of a new load balancing rule to add to the load balancer.

abstract Update updateLoadBalancingRule(String name)

Begins the description of an update to an existing load balancing rule on this load balancer.

abstract Update withoutLoadBalancingRule(String name)

Removes the specified load balancing rule from the load balancer, if present.

Method Details

defineLoadBalancingRule

public abstract LoadBalancingRule.UpdateDefinitionStages.Blank defineLoadBalancingRule(String name)

Begins the definition of a new load balancing rule to add to the load balancer.

Parameters:

name - the name of the load balancing rule

Returns:

the first stage of the new load balancing rule definition

updateLoadBalancingRule

public abstract LoadBalancingRule.Update updateLoadBalancingRule(String name)

Begins the description of an update to an existing load balancing rule on this load balancer.

Parameters:

name - the name of the load balancing rule to update

Returns:

the first stage of the load balancing rule update

withoutLoadBalancingRule

public abstract LoadBalancer.Update withoutLoadBalancingRule(String name)

Removes the specified load balancing rule from the load balancer, if present.

Parameters:

name - the name of the load balancing rule to remove

Returns:

the next stage of the update

Applies to