Class: SmplkitGeneratedClient::Jobs::Run
- Inherits:
-
ApiModelBase
- Object
- ApiModelBase
- SmplkitGeneratedClient::Jobs::Run
- Defined in:
- lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb
Overview
One occurrence of a job executing.
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#created_at ⇒ Object
When the run was enqueued (became ‘PENDING`).
-
#environment ⇒ Object
The environment this run executed in.
-
#error ⇒ Object
Free-text failure detail, if any.
-
#failure_reason ⇒ Object
Why a ‘FAILED` run failed; `null` otherwise.
-
#finished_at ⇒ Object
When execution finished.
-
#job ⇒ Object
The id of the job this run belongs to.
-
#job_version ⇒ Object
The job’s version at the time the run executed.
-
#pending_duration_ms ⇒ Object
Milliseconds the run waited as ‘PENDING` before starting.
-
#request ⇒ Object
Snapshot of the request that was sent (header values redacted).
-
#rerun_of ⇒ Object
The source run’s id; set only when ‘trigger` is `RERUN`.
-
#result ⇒ Object
Outcome of the call.
-
#run_duration_ms ⇒ Object
Milliseconds the run spent executing.
-
#scheduled_for ⇒ Object
The intended fire time for a scheduled run; ‘null` for manual / rerun runs.
-
#started_at ⇒ Object
When execution started.
-
#status ⇒ Object
Lifecycle state of the run.
-
#total_duration_ms ⇒ Object
Milliseconds from enqueue to finish.
-
#trigger ⇒ Object
Why the run exists: ‘SCHEDULE`, `MANUAL` (Run now), or `RERUN`.
Class Method Summary collapse
-
.acceptable_attribute_map ⇒ Object
Returns attribute mapping this model knows about.
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ Run
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Methods inherited from ApiModelBase
_deserialize, #_to_hash, #to_body, #to_s
Constructor Details
#initialize(attributes = {}) ⇒ Run
Initializes the object
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 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 262 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 169 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `SmplkitGeneratedClient::Jobs::Run` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key acceptable_attribute_map = self.class.acceptable_attribute_map attributes = attributes.each_with_object({}) { |(k, v), h| if (!acceptable_attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `SmplkitGeneratedClient::Jobs::Run`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'job') self.job = attributes[:'job'] else self.job = nil end if attributes.key?(:'job_version') self.job_version = attributes[:'job_version'] end if attributes.key?(:'environment') self.environment = attributes[:'environment'] else self.environment = nil end if attributes.key?(:'trigger') self.trigger = attributes[:'trigger'] else self.trigger = nil end if attributes.key?(:'rerun_of') self.rerun_of = attributes[:'rerun_of'] end if attributes.key?(:'scheduled_for') self.scheduled_for = attributes[:'scheduled_for'] end if attributes.key?(:'status') self.status = attributes[:'status'] else self.status = nil end if attributes.key?(:'started_at') self.started_at = attributes[:'started_at'] end if attributes.key?(:'finished_at') self.finished_at = attributes[:'finished_at'] end if attributes.key?(:'pending_duration_ms') self.pending_duration_ms = attributes[:'pending_duration_ms'] end if attributes.key?(:'run_duration_ms') self.run_duration_ms = attributes[:'run_duration_ms'] end if attributes.key?(:'total_duration_ms') self.total_duration_ms = attributes[:'total_duration_ms'] end if attributes.key?(:'failure_reason') self.failure_reason = attributes[:'failure_reason'] end if attributes.key?(:'error') self.error = attributes[:'error'] end if attributes.key?(:'request') if (value = attributes[:'request']).is_a?(Hash) self.request = value end end if attributes.key?(:'result') if (value = attributes[:'result']).is_a?(Hash) self.result = value end end if attributes.key?(:'created_at') self.created_at = attributes[:'created_at'] end end |
Instance Attribute Details
#created_at ⇒ Object
When the run was enqueued (became ‘PENDING`).
68 69 70 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 68 def created_at @created_at end |
#environment ⇒ Object
The environment this run executed in. A scheduled run inherits the firing job-environment; a manual run is created in the environment you name with the ‘X-Smplkit-Environment` header; a rerun copies its source run’s environment.
26 27 28 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 26 def environment @environment end |
#error ⇒ Object
Free-text failure detail, if any.
59 60 61 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 59 def error @error end |
#failure_reason ⇒ Object
Why a ‘FAILED` run failed; `null` otherwise.
56 57 58 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 56 def failure_reason @failure_reason end |
#finished_at ⇒ Object
When execution finished.
44 45 46 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 44 def finished_at @finished_at end |
#job ⇒ Object
The id of the job this run belongs to.
20 21 22 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 20 def job @job end |
#job_version ⇒ Object
The job’s version at the time the run executed.
23 24 25 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 23 def job_version @job_version end |
#pending_duration_ms ⇒ Object
Milliseconds the run waited as ‘PENDING` before starting.
47 48 49 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 47 def pending_duration_ms @pending_duration_ms end |
#request ⇒ Object
Snapshot of the request that was sent (header values redacted). Forensics only.
62 63 64 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 62 def request @request end |
#rerun_of ⇒ Object
The source run’s id; set only when ‘trigger` is `RERUN`.
32 33 34 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 32 def rerun_of @rerun_of end |
#result ⇒ Object
Outcome of the call. For ‘http`: `status`, `headers`, `body` (capped at 64 KiB), `body_truncated`, and the original `body_bytes`.
65 66 67 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 65 def result @result end |
#run_duration_ms ⇒ Object
Milliseconds the run spent executing.
50 51 52 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 50 def run_duration_ms @run_duration_ms end |
#scheduled_for ⇒ Object
The intended fire time for a scheduled run; ‘null` for manual / rerun runs.
35 36 37 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 35 def scheduled_for @scheduled_for end |
#started_at ⇒ Object
When execution started.
41 42 43 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 41 def started_at @started_at end |
#status ⇒ Object
Lifecycle state of the run.
38 39 40 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 38 def status @status end |
#total_duration_ms ⇒ Object
Milliseconds from enqueue to finish.
53 54 55 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 53 def total_duration_ms @total_duration_ms end |
#trigger ⇒ Object
Why the run exists: ‘SCHEDULE`, `MANUAL` (Run now), or `RERUN`.
29 30 31 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 29 def trigger @trigger end |
Class Method Details
.acceptable_attribute_map ⇒ Object
Returns attribute mapping this model knows about
116 117 118 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 116 def self.acceptable_attribute_map attribute_map end |
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
121 122 123 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 121 def self.acceptable_attributes acceptable_attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 93 def self.attribute_map { :'job' => :'job', :'job_version' => :'job_version', :'environment' => :'environment', :'trigger' => :'trigger', :'rerun_of' => :'rerun_of', :'scheduled_for' => :'scheduled_for', :'status' => :'status', :'started_at' => :'started_at', :'finished_at' => :'finished_at', :'pending_duration_ms' => :'pending_duration_ms', :'run_duration_ms' => :'run_duration_ms', :'total_duration_ms' => :'total_duration_ms', :'failure_reason' => :'failure_reason', :'error' => :'error', :'request' => :'request', :'result' => :'result', :'created_at' => :'created_at' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 394 def self.build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) transformed_hash = {} openapi_types.each_pair do |key, type| if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil? transformed_hash["#{key}"] = nil elsif type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[attribute_map[key]].is_a?(Array) transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) } end elsif !attributes[attribute_map[key]].nil? transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]]) end end new(transformed_hash) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 149 def self.openapi_nullable Set.new([ :'job_version', :'rerun_of', :'scheduled_for', :'started_at', :'finished_at', :'pending_duration_ms', :'run_duration_ms', :'total_duration_ms', :'failure_reason', :'error', :'request', :'result', :'created_at' ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 126 def self.openapi_types { :'job' => :'String', :'job_version' => :'Integer', :'environment' => :'String', :'trigger' => :'String', :'rerun_of' => :'String', :'scheduled_for' => :'Time', :'status' => :'String', :'started_at' => :'Time', :'finished_at' => :'Time', :'pending_duration_ms' => :'Integer', :'run_duration_ms' => :'Integer', :'total_duration_ms' => :'Integer', :'failure_reason' => :'String', :'error' => :'String', :'request' => :'Hash<String, Object>', :'result' => :'Hash<String, Object>', :'created_at' => :'Time' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 357 def ==(o) return true if self.equal?(o) self.class == o.class && job == o.job && job_version == o.job_version && environment == o.environment && trigger == o.trigger && rerun_of == o.rerun_of && scheduled_for == o.scheduled_for && status == o.status && started_at == o.started_at && finished_at == o.finished_at && pending_duration_ms == o.pending_duration_ms && run_duration_ms == o.run_duration_ms && total_duration_ms == o.total_duration_ms && failure_reason == o.failure_reason && error == o.error && request == o.request && result == o.result && created_at == o.created_at end |
#eql?(o) ⇒ Boolean
381 382 383 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 381 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
387 388 389 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 387 def hash [job, job_version, environment, trigger, rerun_of, scheduled_for, status, started_at, finished_at, pending_duration_ms, run_duration_ms, total_duration_ms, failure_reason, error, request, result, created_at].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 266 def list_invalid_properties warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' invalid_properties = Array.new if @job.nil? invalid_properties.push('invalid value for "job", job cannot be nil.') end if @environment.nil? invalid_properties.push('invalid value for "environment", environment cannot be nil.') end if @trigger.nil? invalid_properties.push('invalid value for "trigger", trigger cannot be nil.') end if @status.nil? invalid_properties.push('invalid value for "status", status cannot be nil.') end invalid_properties end |
#to_hash ⇒ Hash
Returns the object in the form of hash
416 417 418 419 420 421 422 423 424 425 426 427 428 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 416 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'lib/smplkit/_generated/jobs/lib/smplkit_jobs_client/models/run.rb', line 290 def valid? warn '[DEPRECATED] the `valid?` method is obsolete' return false if @job.nil? return false if @environment.nil? return false if @trigger.nil? trigger_validator = EnumAttributeValidator.new('String', ["SCHEDULE", "MANUAL", "RERUN"]) return false unless trigger_validator.valid?(@trigger) return false if @status.nil? status_validator = EnumAttributeValidator.new('String', ["PENDING", "RUNNING", "SUCCEEDED", "FAILED", "CANCELED"]) return false unless status_validator.valid?(@status) failure_reason_validator = EnumAttributeValidator.new('String', ["TIMEOUT", "CONNECTION_ERROR", "NON_SUCCESS_STATUS", "SSRF_BLOCKED", "QUOTA_EXCEEDED", "WORKER_LOST"]) return false unless failure_reason_validator.valid?(@failure_reason) true end |