Class: Aws::Deadline::Waiters::JobComplete

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

Overview

Wait until a job reaches any terminal status. Waits up to 1 hour by default.

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ JobComplete

Returns a new instance of JobComplete.

Parameters:

  • options (Hash)

Options Hash (options):

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


145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/waiters.rb', line 145

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 240,
    delay: 15,
    poller: Aws::Waiters::Poller.new(
      operation_name: :get_job,
      acceptors: [
        {
          "matcher" => "path",
          "argument" => "task_run_status",
          "state" => "success",
          "expected" => "SUCCEEDED"
        },
        {
          "matcher" => "path",
          "argument" => "task_run_status",
          "state" => "success",
          "expected" => "FAILED"
        },
        {
          "matcher" => "path",
          "argument" => "task_run_status",
          "state" => "success",
          "expected" => "CANCELED"
        },
        {
          "matcher" => "path",
          "argument" => "task_run_status",
          "state" => "success",
          "expected" => "SUSPENDED"
        },
        {
          "matcher" => "path",
          "argument" => "task_run_status",
          "state" => "success",
          "expected" => "NOT_COMPATIBLE"
        },
        {
          "matcher" => "path",
          "argument" => "lifecycle_status",
          "state" => "success",
          "expected" => "ARCHIVED"
        }
      ]
    )
  }.merge(options))
end

Instance Method Details

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

Returns a response object which responds to the following methods:

Parameters:

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

    a customizable set of options

Options Hash (params):

  • :farm_id (required, String)

    The farm ID of the farm in the job.

  • :queue_id (required, String)

    The queue ID associated with the job.

  • :job_id (required, String)

    The job ID.

Returns:



196
197
198
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/waiters.rb', line 196

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