docs/ActionsApi.md in allq_rest-1.2.0 vs docs/ActionsApi.md in allq_rest-1.2.1

- old
+ new

@@ -25,11 +25,11 @@ Bury Job ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new job_id = "job_id_example" # String | Job ID @@ -72,11 +72,11 @@ Finished Job ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new job_id = "job_id_example" # String | Job ID @@ -123,11 +123,11 @@ Get job from queue ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new tube = "tube_example" # String | Name of tube @@ -170,11 +170,11 @@ Put job into queue ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new new_job = Allq::NewJob.new # NewJob | New Job Object @@ -217,11 +217,11 @@ Create a parent job ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new new_parent_job = Allq::NewParentJob.new # NewParentJob | New Parent Job Data @@ -264,11 +264,11 @@ Peek at next job ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new tube = "tube_example" # String | Tube name @@ -315,11 +315,11 @@ Releases job back into queue ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new job_id = "job_id_example" # String | Job ID @@ -362,11 +362,11 @@ When a parent job doesn't know how many children are going to be added, this is the event that sets the final children count on the parent_job, allowing it to run when the children are done. ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new job_id = "job_id_example" # String | Job ID @@ -409,11 +409,11 @@ Creates a throttle on a tube ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new throttle = Allq::Throttle.new # Throttle | Throttle info @@ -456,11 +456,11 @@ Touch job ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new job_id = "job_id_example" # String | Job ID @@ -503,10 +503,10 @@ Delete all contents of tube ### Example ```ruby # load the gem -require 'allq_client' +require 'allq_rest' api_instance = Allq::ActionsApi.new tube = "tube_example" # String | Tube Name