Class: Aws::EKS::Waiters::NodegroupDeleted

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-sdk-eks/waiters.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ NodegroupDeleted

Returns a new instance of NodegroupDeleted.

Parameters:

  • options (Hash)

Options Hash (options):

  • :client (required, Client)
  • :max_attempts (Integer) — default: 40
  • :delay (Integer) — default: 30
  • :before_attempt (Proc)
  • :before_wait (Proc)


420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
# File 'lib/aws-sdk-eks/waiters.rb', line 420

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 40,
    delay: 30,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_nodegroup,
      acceptors: [
        {
          "expected" => "DELETE_FAILED",
          "matcher" => "path",
          "state" => "failure",
          "argument" => "nodegroup.status"
        },
        {
          "expected" => "ResourceNotFoundException",
          "matcher" => "error",
          "state" => "success"
        }
      ]
    )
  }.merge(options))
end

Instance Attribute Details

#waiterObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



451
452
453
# File 'lib/aws-sdk-eks/waiters.rb', line 451

def waiter
  @waiter
end

Instance Method Details

#wait(params = {}) ⇒ Types::DescribeNodegroupResponse

Returns a response object which responds to the following methods:

Options Hash (params):

  • :cluster_name (required, String)

    The name of your cluster.

  • :nodegroup_name (required, String)

    The name of the node group to describe.

Returns:



446
447
448
# File 'lib/aws-sdk-eks/waiters.rb', line 446

def wait(params = {})
  @waiter.wait(client: @client, params: params)
end