Class: Aws::Deadline::Waiters::JobCreateComplete
- Inherits:
-
Object
- Object
- Aws::Deadline::Waiters::JobCreateComplete
- Defined in:
- lib/aws-sdk-deadline/waiters.rb
Overview
Wait until a Job is created. Use this after invoking CreateJob.
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ JobCreateComplete
constructor
A new instance of JobCreateComplete.
-
#wait(params = {}) ⇒ Types::GetJobResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ JobCreateComplete
Returns a new instance of JobCreateComplete.
142 143 144 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 |
# File 'lib/aws-sdk-deadline/waiters.rb', line 142 def initialize() @client = .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()) end |
Instance Attribute Details
#waiter ⇒ Object (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.
198 199 200 |
# File 'lib/aws-sdk-deadline/waiters.rb', line 198 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetJobResponse
Returns a response object which responds to the following methods:
-
#job_id => String
-
#name => String
-
#lifecycle_status => String
-
#lifecycle_status_message => String
-
#priority => Integer
-
#created_at => Time
-
#created_by => String
-
#updated_at => Time
-
#updated_by => String
-
#started_at => Time
-
#ended_at => Time
-
#task_run_status => String
-
#target_task_run_status => String
-
#task_run_status_counts => Hash<String,Integer>
-
#storage_profile_id => String
-
#max_failed_tasks_count => Integer
-
#max_retries_per_task => Integer
-
#parameters => Hash<String,Types::JobParameter>
-
#attachments => Types::Attachments
-
#description => String
-
#source_job_id => String
193 194 195 |
# File 'lib/aws-sdk-deadline/waiters.rb', line 193 def wait(params = {}) @waiter.wait(client: @client, params: params) end |