lib/aws-sdk-elasticloadbalancingv2/client.rb in aws-sdk-elasticloadbalancingv2-1.0.0.rc11 vs lib/aws-sdk-elasticloadbalancingv2/client.rb in aws-sdk-elasticloadbalancingv2-1.0.0.rc12
- old
+ new
@@ -2952,11 +2952,11 @@
operation: config.api.operation(operation_name),
client: self,
params: params,
config: config)
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
- context[:gem_version] = '1.0.0.rc11'
+ context[:gem_version] = '1.0.0.rc12'
Seahorse::Client::Request.new(handlers, context)
end
# Polls an API operation until a resource enters a desired state.
#
@@ -3023,10 +3023,12 @@
# | waiter_name | params | :delay | :max_attempts |
# | ----------------------- | -------------------------- | -------- | ------------- |
# | load_balancer_available | {#describe_load_balancers} | 15 | 40 |
# | load_balancer_exists | {#describe_load_balancers} | 15 | 40 |
# | load_balancers_deleted | {#describe_load_balancers} | 15 | 40 |
+ # | target_deregistered | {#describe_target_health} | 15 | 40 |
+ # | target_in_service | {#describe_target_health} | 15 | 40 |
#
# @raise [Errors::FailureStateError] Raised when the waiter terminates
# because the waiter has entered a state that it will not transition
# out of, preventing success.
#
@@ -3075,10 +3077,12 @@
def waiters
{
load_balancer_available: Waiters::LoadBalancerAvailable,
load_balancer_exists: Waiters::LoadBalancerExists,
- load_balancers_deleted: Waiters::LoadBalancersDeleted
+ load_balancers_deleted: Waiters::LoadBalancersDeleted,
+ target_deregistered: Waiters::TargetDeregistered,
+ target_in_service: Waiters::TargetInService
}
end
class << self