Class: Aws::Deadline::Waiters::JobCreateComplete

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

Overview

Wait until a job is created. Use this after invoking CreateJob.

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ JobCreateComplete

Returns a new instance of JobCreateComplete.

Parameters:

  • options (Hash)

Options Hash (options):

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


214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/waiters.rb', line 214

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 120,
    delay: 1,
    poller: Aws::Waiters::Poller.new(
      operation_name: :get_job,
      acceptors: [
        {
          "matcher" => "path",
          "argument" => "lifecycle_status",
          "state" => "success",
          "expected" => "CREATE_COMPLETE"
        },
        {
          "matcher" => "path",
          "argument" => "lifecycle_status",
          "state" => "success",
          "expected" => "UPDATE_IN_PROGRESS"
        },
        {
          "matcher" => "path",
          "argument" => "lifecycle_status",
          "state" => "success",
          "expected" => "UPDATE_FAILED"
        },
        {
          "matcher" => "path",
          "argument" => "lifecycle_status",
          "state" => "success",
          "expected" => "UPDATE_SUCCEEDED"
        },
        {
          "matcher" => "path",
          "argument" => "lifecycle_status",
          "state" => "failure",
          "expected" => "UPLOAD_FAILED"
        },
        {
          "matcher" => "path",
          "argument" => "lifecycle_status",
          "state" => "failure",
          "expected" => "CREATE_FAILED"
        }
      ]
    )
  }.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:



265
266
267
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/waiters.rb', line 265

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