Class: Aws::EKS::Waiters::FargateProfileDeleted

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

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ FargateProfileDeleted

Returns a new instance of FargateProfileDeleted.

Parameters:

  • options (Hash)

Options Hash (options):

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


333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/waiters.rb', line 333

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

Instance Method Details

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

Returns a response object which responds to the following methods:

Parameters:

  • params (Hash) (defaults to: {})

    a customizable set of options

Options Hash (params):

  • :cluster_name (required, String)

    The name of your cluster.

  • :fargate_profile_name (required, String)

    The name of the Fargate profile to describe.

Returns:



359
360
361
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/waiters.rb', line 359

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