This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.AWS.ElasticLoadBalancing.
Summary
Used to access Amazon Elastic Load Balancers.
- Assembly
- Cake
.AWS . Elastic Load Balancing .dll - Namespace
- Cake
.AWS . Elastic Load Balancing - Implementing Types
graph BT
Type["ILoadBalancingManager"]
class Type type-node
Implementing0["LoadBalancingManager"]-.->Type
click Implementing0 "/api/Cake.AWS.ElasticLoadBalancing/LoadBalancingManager"
Syntax
public interface ILoadBalancingManager
Methods
Name | Value | Summary |
---|---|---|
DeregisterInstances |
Task |
Removes instances from the load balancer. Once the instance is deregistered, it will stop receiving traffic from the load balancer.
|
Disable |
Task |
Removes the specified Availability Zones from the set of Availability Zones for the specified load balancer.
There must be at least one Availability Zone registered with a load balancer at all times. After an Availability Zone is removed,
all instances registered with the load balancer that are in the removed Availability Zone go into the OutOfService state.
Then, the load balancer attempts to equally balance the traffic among its remaining Availability Zones.
|
Enable |
Task |
Adds the specified Availability Zones to the set of Availability Zones for the specified load balancer.
The load balancer evenly distributes requests across all its registered Availability Zones that contain instances.
|
RegisterInstances |
Task |
Adds new instances to the load balancer.
Once the instance is registered, it starts receiving traffic and requests from the load balancer.
Any instance that is not in any of the Availability Zones registered for the load balancer will be moved to the OutOfService state.
It will move to the InService state when the Availability Zone is added to the load balancer.
|
Extension Methods
Name | Value | Summary |
---|---|---|
Dump |
string |
Get a basic string representation of specified object.
From LoggingExtensions
Requires the Cake.Incubator addin
|
IsIn |
bool |
Checks if the source is contained in a list
From EnumerableExtensions
Requires the Cake.Incubator addin
|
NotNull |
void |
From IssuesArgumentChecks
Requires the Cake.Issues addin
|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From Extensions
Requires the Cake.Ftp addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ToDictionary |
IDictionary |
From ObjectHelpers
Requires the Cake.DeployParams addin
|
To |
string |
From StringExtensions
Requires the Cake.Issues addin
|