LoadBalancingAliases Class

Summary

Contains Cake aliases for configuring Amazon Elastic Load Balancers
graph BT Type-->Base0["Object"] Type["LoadBalancingAliases"] class Type type-node

Syntax

public static class LoadBalancingAliases

Attributes

Type Description
CakeAliasCategoryAttribute
CakeNamespaceImportAttribute
CakeNamespaceImportAttribute

Methods

Name Value Summary
DeregisterLoadBalancerInstance(ICakeContext, string, LoadBalancingSettings) Task<bool>
Removes instances from the load balancer. Once the instance is deregistered, it will stop receiving traffic from the load balancer.
static
DeregisterLoadBalancerInstances(ICakeContext, string, IList<string>, LoadBalancingSettings) Task<bool>
Removes instances from the load balancer. Once the instance is deregistered, it will stop receiving traffic from the load balancer.
static
DeregisterLoadBalancerInstances(ICakeContext, string, string, LoadBalancingSettings) Task<bool>
Removes instances from the load balancer. Once the instance is deregistered, it will stop receiving traffic from the load balancer.
static
DisableAvailabilityZone(ICakeContext, string, LoadBalancingSettings) Task<bool>
Removes the current 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.
static
DisableAvailabilityZones(ICakeContext, string, IList<string>, LoadBalancingSettings) Task<bool>
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.
static
DisableAvailabilityZones(ICakeContext, string, string, LoadBalancingSettings) Task<bool>
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.
static
EnableAvailabilityZone(ICakeContext, string, LoadBalancingSettings) Task<bool>
Adds the current 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.
static
EnableAvailabilityZones(ICakeContext, string, IList<string>, LoadBalancingSettings) Task<bool>
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.
static
EnableAvailabilityZones(ICakeContext, string, string, LoadBalancingSettings) Task<bool>
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.
static
RegisterLoadBalancerInstance(ICakeContext, string, LoadBalancingSettings) Task<bool>
Adds the current 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.
static
RegisterLoadBalancerInstances(ICakeContext, string, IList<string>, LoadBalancingSettings) Task<bool>
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.
static
RegisterLoadBalancerInstances(ICakeContext, string, string, LoadBalancingSettings) Task<bool>
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.
static

Extension Methods

Name Value Summary
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin