Class: Aws::EKS::Waiters::NodegroupActive

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) ⇒ NodegroupActive

Returns a new instance of NodegroupActive.

Parameters:

  • options (Hash)

Options Hash (options):

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


376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
# File 'lib/aws-sdk-eks/waiters.rb', line 376

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 80,
    delay: 30,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_nodegroup,
      acceptors: [
        {
          "expected" => "CREATE_FAILED",
          "matcher" => "path",
          "state" => "failure",
          "argument" => "nodegroup.status"
        },
        {
          "expected" => "ACTIVE",
          "matcher" => "path",
          "state" => "success",
          "argument" => "nodegroup.status"
        }
      ]
    )
  }.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.



408
409
410
# File 'lib/aws-sdk-eks/waiters.rb', line 408

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:



403
404
405
# File 'lib/aws-sdk-eks/waiters.rb', line 403

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