LoadBalancer.UpdateStages.WithBackend Interface

public static interface LoadBalancer.UpdateStages.WithBackend

The stage of the load balancer update allowing to add or remove backends.

Method Summary

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

Begins the definition of a new backend as part of this load balancer update.

abstract Update updateBackend(String name)

Begins the description of an update to an existing backend of this load balancer.

abstract Update withoutBackend(String name)

Removes the specified backend from the load balancer.

Method Details

defineBackend

public abstract LoadBalancerBackend.UpdateDefinitionStages.Blank defineBackend(String name)

Begins the definition of a new backend as part of this load balancer update.

Parameters:

name - the name for the new backend

Returns:

the first stage of the backend definition

updateBackend

public abstract LoadBalancerBackend.Update updateBackend(String name)

Begins the description of an update to an existing backend of this load balancer.

Parameters:

name - the name of the backend to update

Returns:

the first stage of the update

withoutBackend

public abstract LoadBalancer.Update withoutBackend(String name)

Removes the specified backend from the load balancer.

Parameters:

name - the name of the backend to remove

Returns:

the next stage of the update

Applies to