iron_titan 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b7c9388dbc96ca53f6fc4112c0d31abe26a4dfc5
4
- data.tar.gz: c7a4845a7cd45f567f8745a126d9e2d52d7de2c5
3
+ metadata.gz: 307b52a98bf126f51fe7dc60c2476947040a15c1
4
+ data.tar.gz: f1b22ec241975007a3c2ca4156c8d1d8412e592c
5
5
  SHA512:
6
- metadata.gz: abefa960d8f1eff606ca920fd4569cf29d5cac944c64a6e69d2f875c784ccfc2fdf318e53dd6de0cac1fbb74832280769e9b6779c6c7f554c6d04b13f57867c8
7
- data.tar.gz: 522b3d48ac0c79d9468836847359dbc13cb56e3bb2af35dc125a42ed419252eb678999c54d03dd565639bb4a03e5efe85488ccf18b11772aa5f513e9aae2a79c
6
+ metadata.gz: a9367d8eb876b3bd8388764eaf3c9871a706d26849893257ad1ee7e29e770b09b0aa4ef6cb630f38651631efffc7973adffded9a0c4c8e31159402c69393e028
7
+ data.tar.gz: 49f3691965c83eee8390091685a3b8caf9d39c0bbbf974d36ed5c36bf0e7fc04ed2c2c131e2e163ba6fb3b5a1a841f016b572f0ae3a011bf203917ca64ee4523
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -53,6 +53,9 @@ module IronTitan
53
53
  # Unique identifier representing a specific job.
54
54
  attr_accessor :id
55
55
 
56
+ # If this field is set, then the job was retried and RetryId points to new job.
57
+ attr_accessor :retry_id
58
+
56
59
  # Status of job. One of: [pending, running, success, error, timeout]
57
60
  attr_accessor :status
58
61
 
@@ -86,6 +89,8 @@ module IronTitan
86
89
 
87
90
  :'id' => :'id',
88
91
 
92
+ :'retry_id' => :'retry_id',
93
+
89
94
  :'status' => :'status'
90
95
 
91
96
  }
@@ -107,6 +112,7 @@ module IronTitan
107
112
  :'name' => :'String',
108
113
  :'started_at' => :'DateTime',
109
114
  :'id' => :'String',
115
+ :'retry_id' => :'String',
110
116
  :'status' => :'String'
111
117
 
112
118
  }
@@ -171,6 +177,10 @@ module IronTitan
171
177
  self.id = attributes[:'id']
172
178
  end
173
179
 
180
+ if attributes[:'retry_id']
181
+ self.retry_id = attributes[:'retry_id']
182
+ end
183
+
174
184
  if attributes[:'status']
175
185
  self.status = attributes[:'status']
176
186
  end
@@ -194,6 +204,7 @@ module IronTitan
194
204
  name == o.name &&
195
205
  started_at == o.started_at &&
196
206
  id == o.id &&
207
+ retry_id == o.retry_id &&
197
208
  status == o.status
198
209
  end
199
210
 
@@ -204,7 +215,7 @@ module IronTitan
204
215
 
205
216
  # Calculate hash code according to all attributes.
206
217
  def hash
207
- [image, created_at, priority, retries_delay, error, timeout, retries, completed_at, delay, payload, name, started_at, id, status].hash
218
+ [image, created_at, priority, retries_delay, error, timeout, retries, completed_at, delay, payload, name, started_at, id, retry_id, status].hash
208
219
  end
209
220
 
210
221
  # build the object from hash
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -11,5 +11,5 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
11
  =end
12
12
 
13
13
  module IronTitan
14
- VERSION = "0.0.5"
14
+ VERSION = "0.0.6"
15
15
  end
data/lib/iron_titan.rb CHANGED
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -162,6 +162,16 @@ describe 'Job' do
162
162
  end
163
163
  end
164
164
 
165
+ describe 'test attribute "retry_id"' do
166
+ it 'should work' do
167
+ # assertion here
168
+ # should be_a()
169
+ # should be_nil
170
+ # should ==
171
+ # should_not ==
172
+ end
173
+ end
174
+
165
175
  describe 'test attribute "status"' do
166
176
  it 'should work' do
167
177
  # assertion here
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@ Titan API
3
3
 
4
4
  The ultimate, language agnostic, container based job processing framework.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iron_titan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Travis Reeder