Class: Nomad::JobUpdate
Constant Summary
Constants inherited from Response
Instance Attribute Summary collapse
-
#auto_revert ⇒ Boolean
readonly
The job auto_revert.
-
#canary ⇒ Integer
readonly
The job canary.
-
#health_check ⇒ String
readonly
The job health_check.
-
#healthy_deadline ⇒ Duration
readonly
The job healthy_deadline.
-
#max_parallel ⇒ Integer
readonly
The job max_parallel.
-
#min_healthy_time ⇒ Duration
readonly
The job min_healthy_time.
-
#stagger ⇒ Duration
readonly
The job stagger.
Method Summary
Methods inherited from Response
#==, decode, #initialize, #to_h
Constructor Details
This class inherits a constructor from Nomad::Response
Instance Attribute Details
#auto_revert ⇒ Boolean (readonly)
The job auto_revert.
640 |
# File 'lib/nomad/api/job.rb', line 640 field :AutoRevert, as: :auto_revert |
#canary ⇒ Integer (readonly)
The job canary.
645 |
# File 'lib/nomad/api/job.rb', line 645 field :Canary, as: :canary |
#health_check ⇒ String (readonly)
The job health_check.
625 |
# File 'lib/nomad/api/job.rb', line 625 field :HealthCheck, as: :health_check, load: :string_as_nil |
#healthy_deadline ⇒ Duration (readonly)
The job healthy_deadline.
635 |
# File 'lib/nomad/api/job.rb', line 635 field :HealthyDeadline, as: :healthy_deadline, load: :nanoseconds_as_duration |
#max_parallel ⇒ Integer (readonly)
The job max_parallel.
620 |
# File 'lib/nomad/api/job.rb', line 620 field :MaxParallel, as: :max_parallel |
#min_healthy_time ⇒ Duration (readonly)
The job min_healthy_time.
630 |
# File 'lib/nomad/api/job.rb', line 630 field :MinHealthyTime, as: :min_healthy_time, load: :nanoseconds_as_duration |
#stagger ⇒ Duration (readonly)
The job stagger.
615 |
# File 'lib/nomad/api/job.rb', line 615 field :Stagger, as: :stagger, load: :nanoseconds_as_duration |