allq_rest 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/Gemfile.lock +69 -0
  4. data/README.md +111 -0
  5. data/Rakefile +8 -0
  6. data/allq_client-1.2.0.gem +0 -0
  7. data/allq_client.gemspec +46 -0
  8. data/allq_rest.gemspec +34 -0
  9. data/deploy.sh +3 -0
  10. data/docs/ActionsApi.md +544 -0
  11. data/docs/AdminApi.md +98 -0
  12. data/docs/BasicPayload.md +11 -0
  13. data/docs/BasicResponse.md +8 -0
  14. data/docs/JobRef.md +8 -0
  15. data/docs/JobResponse.md +12 -0
  16. data/docs/NewJob.md +13 -0
  17. data/docs/NewParentJob.md +16 -0
  18. data/docs/StatsInfo.md +9 -0
  19. data/docs/StatsResults.md +10 -0
  20. data/docs/StatsTube.md +14 -0
  21. data/docs/Throttle.md +9 -0
  22. data/docs/TubeRef.md +8 -0
  23. data/git_push.sh +55 -0
  24. data/lib/.DS_Store +0 -0
  25. data/lib/allq_client.rb +53 -0
  26. data/lib/allq_client/.DS_Store +0 -0
  27. data/lib/allq_client/api/actions_api.rb +702 -0
  28. data/lib/allq_client/api/admin_api.rb +181 -0
  29. data/lib/allq_client/api_client.rb +388 -0
  30. data/lib/allq_client/api_error.rb +38 -0
  31. data/lib/allq_client/configuration.rb +202 -0
  32. data/lib/allq_client/models/basic_payload.rb +218 -0
  33. data/lib/allq_client/models/basic_response.rb +188 -0
  34. data/lib/allq_client/models/job_ref.rb +190 -0
  35. data/lib/allq_client/models/job_response.rb +249 -0
  36. data/lib/allq_client/models/multiple_job_response.rb +187 -0
  37. data/lib/allq_client/models/new_job.rb +270 -0
  38. data/lib/allq_client/models/new_parent_job.rb +302 -0
  39. data/lib/allq_client/models/stats_info.rb +204 -0
  40. data/lib/allq_client/models/stats_results.rb +253 -0
  41. data/lib/allq_client/models/stats_tube.rb +285 -0
  42. data/lib/allq_client/models/throttle.rb +209 -0
  43. data/lib/allq_client/models/tube_ref.rb +190 -0
  44. data/lib/allq_client/version.rb +15 -0
  45. data/spec/.DS_Store +0 -0
  46. data/spec/api/actions_api_spec.rb +575 -0
  47. data/spec/api/admin_api_spec.rb +58 -0
  48. data/spec/api_client_spec.rb +226 -0
  49. data/spec/configuration_spec.rb +42 -0
  50. data/spec/models/basic_payload_spec.rb +60 -0
  51. data/spec/models/basic_response_spec.rb +42 -0
  52. data/spec/models/job_ref_spec.rb +42 -0
  53. data/spec/models/job_response_spec.rb +66 -0
  54. data/spec/models/new_job_spec.rb +72 -0
  55. data/spec/models/new_parent_job_spec.rb +90 -0
  56. data/spec/models/stats_info_spec.rb +48 -0
  57. data/spec/models/stats_results_spec.rb +54 -0
  58. data/spec/models/stats_tube_spec.rb +78 -0
  59. data/spec/models/throttle_spec.rb +48 -0
  60. data/spec/models/tube_ref_spec.rb +42 -0
  61. data/spec/spec_helper.rb +111 -0
  62. metadata +299 -0
@@ -0,0 +1,187 @@
1
+ =begin
2
+ #AllQ
3
+
4
+ #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5
+
6
+ OpenAPI spec version: 1.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.2
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module Allq
16
+ # Multi-Job Instance
17
+ class MultipleJobResponse
18
+ # Array of jobs
19
+ attr_accessor :jobs
20
+
21
+ # Attribute mapping from ruby-style variable name to JSON key.
22
+ def self.attribute_map
23
+ {
24
+ :'jobs' => :'jobs'
25
+ }
26
+ end
27
+
28
+ # Attribute type mapping.
29
+ def self.swagger_types
30
+ {
31
+ :'jobs' => :'Array<JobResponse>'
32
+ }
33
+ end
34
+
35
+ # Initializes the object
36
+ # @param [Hash] attributes Model attributes in the form of hash
37
+ def initialize(attributes = {})
38
+ return unless attributes.is_a?(Hash)
39
+
40
+ # convert string to symbol for hash key
41
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
42
+
43
+ if attributes.has_key?(:'jobs')
44
+ if (value = attributes[:'jobs']).is_a?(Array)
45
+ self.jobs = value
46
+ end
47
+ end
48
+ end
49
+
50
+ # Show invalid properties with the reasons. Usually used together with valid?
51
+ # @return Array for valid properties with the reasons
52
+ def list_invalid_properties
53
+ invalid_properties = Array.new
54
+ invalid_properties
55
+ end
56
+
57
+ # Check to see if the all the properties in the model are valid
58
+ # @return true if the model is valid
59
+ def valid?
60
+ true
61
+ end
62
+
63
+ # Checks equality by comparing each attribute.
64
+ # @param [Object] Object to be compared
65
+ def ==(o)
66
+ return true if self.equal?(o)
67
+ self.class == o.class &&
68
+ jobs == o.jobs
69
+ end
70
+
71
+ # @see the `==` method
72
+ # @param [Object] Object to be compared
73
+ def eql?(o)
74
+ self == o
75
+ end
76
+
77
+ # Calculates hash code according to all attributes.
78
+ # @return [Fixnum] Hash code
79
+ def hash
80
+ [jobs].hash
81
+ end
82
+
83
+ # Builds the object from hash
84
+ # @param [Hash] attributes Model attributes in the form of hash
85
+ # @return [Object] Returns the model itself
86
+ def build_from_hash(attributes)
87
+ return nil unless attributes.is_a?(Hash)
88
+ self.class.swagger_types.each_pair do |key, type|
89
+ if type =~ /\AArray<(.*)>/i
90
+ # check to ensure the input is an array given that the the attribute
91
+ # is documented as an array but the input is not
92
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
93
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
94
+ end
95
+ elsif !attributes[self.class.attribute_map[key]].nil?
96
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
97
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
98
+ end
99
+
100
+ self
101
+ end
102
+
103
+ # Deserializes the data based on type
104
+ # @param string type Data type
105
+ # @param string value Value to be deserialized
106
+ # @return [Object] Deserialized data
107
+ def _deserialize(type, value)
108
+ case type.to_sym
109
+ when :DateTime
110
+ DateTime.parse(value)
111
+ when :Date
112
+ Date.parse(value)
113
+ when :String
114
+ value.to_s
115
+ when :Integer
116
+ value.to_i
117
+ when :Float
118
+ value.to_f
119
+ when :BOOLEAN
120
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
121
+ true
122
+ else
123
+ false
124
+ end
125
+ when :Object
126
+ # generic object (usually a Hash), return directly
127
+ value
128
+ when /\AArray<(?<inner_type>.+)>\z/
129
+ inner_type = Regexp.last_match[:inner_type]
130
+ value.map { |v| _deserialize(inner_type, v) }
131
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
132
+ k_type = Regexp.last_match[:k_type]
133
+ v_type = Regexp.last_match[:v_type]
134
+ {}.tap do |hash|
135
+ value.each do |k, v|
136
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
137
+ end
138
+ end
139
+ else # model
140
+ temp_model = Allq.const_get(type).new
141
+ temp_model.build_from_hash(value)
142
+ end
143
+ end
144
+
145
+ # Returns the string representation of the object
146
+ # @return [String] String presentation of the object
147
+ def to_s
148
+ to_hash.to_s
149
+ end
150
+
151
+ # to_body is an alias to to_hash (backward compatibility)
152
+ # @return [Hash] Returns the object in the form of hash
153
+ def to_body
154
+ to_hash
155
+ end
156
+
157
+ # Returns the object in the form of hash
158
+ # @return [Hash] Returns the object in the form of hash
159
+ def to_hash
160
+ hash = {}
161
+ self.class.attribute_map.each_pair do |attr, param|
162
+ value = self.send(attr)
163
+ next if value.nil?
164
+ hash[param] = _to_hash(value)
165
+ end
166
+ hash
167
+ end
168
+
169
+ # Outputs non-array value in the form of hash
170
+ # For object, use to_hash. Otherwise, just return the value
171
+ # @param [Object] value Any valid value
172
+ # @return [Hash] Returns the value in the form of hash
173
+ def _to_hash(value)
174
+ if value.is_a?(Array)
175
+ value.compact.map { |v| _to_hash(v) }
176
+ elsif value.is_a?(Hash)
177
+ {}.tap do |hash|
178
+ value.each { |k, v| hash[k] = _to_hash(v) }
179
+ end
180
+ elsif value.respond_to? :to_hash
181
+ value.to_hash
182
+ else
183
+ value
184
+ end
185
+ end
186
+ end
187
+ end
@@ -0,0 +1,270 @@
1
+ =begin
2
+ #AllQ
3
+
4
+ #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5
+
6
+ OpenAPI spec version: 1.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.2
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module Allq
16
+ # Values for a job submission
17
+ class NewJob
18
+ # Tube name
19
+ attr_accessor :tube
20
+
21
+ # Text payload
22
+ attr_accessor :body
23
+
24
+ # Time to live when reserved (in seconds)
25
+ attr_accessor :ttl
26
+
27
+ # Delay before becoming available for processing in seconds
28
+ attr_accessor :delay
29
+
30
+ # Priority of job in tube
31
+ attr_accessor :priority
32
+
33
+ # Parent job id (if applicable)
34
+ attr_accessor :parent_id
35
+
36
+ # Attribute mapping from ruby-style variable name to JSON key.
37
+ def self.attribute_map
38
+ {
39
+ :'tube' => :'tube',
40
+ :'body' => :'body',
41
+ :'ttl' => :'ttl',
42
+ :'delay' => :'delay',
43
+ :'priority' => :'priority',
44
+ :'parent_id' => :'parent_id'
45
+ }
46
+ end
47
+
48
+ # Attribute type mapping.
49
+ def self.swagger_types
50
+ {
51
+ :'tube' => :'String',
52
+ :'body' => :'String',
53
+ :'ttl' => :'Integer',
54
+ :'delay' => :'Integer',
55
+ :'priority' => :'Integer',
56
+ :'parent_id' => :'String'
57
+ }
58
+ end
59
+
60
+ # Initializes the object
61
+ # @param [Hash] attributes Model attributes in the form of hash
62
+ def initialize(attributes = {})
63
+ return unless attributes.is_a?(Hash)
64
+
65
+ # convert string to symbol for hash key
66
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
67
+
68
+ if attributes.has_key?(:'tube')
69
+ self.tube = attributes[:'tube']
70
+ else
71
+ self.tube = 'default'
72
+ end
73
+
74
+ if attributes.has_key?(:'body')
75
+ self.body = attributes[:'body']
76
+ else
77
+ self.body = '<BODY_TEXT>'
78
+ end
79
+
80
+ if attributes.has_key?(:'ttl')
81
+ self.ttl = attributes[:'ttl']
82
+ else
83
+ self.ttl = 1200
84
+ end
85
+
86
+ if attributes.has_key?(:'delay')
87
+ self.delay = attributes[:'delay']
88
+ else
89
+ self.delay = 0
90
+ end
91
+
92
+ if attributes.has_key?(:'priority')
93
+ self.priority = attributes[:'priority']
94
+ else
95
+ self.priority = 5
96
+ end
97
+
98
+ if attributes.has_key?(:'parent_id')
99
+ self.parent_id = attributes[:'parent_id']
100
+ end
101
+ end
102
+
103
+ # Show invalid properties with the reasons. Usually used together with valid?
104
+ # @return Array for valid properties with the reasons
105
+ def list_invalid_properties
106
+ invalid_properties = Array.new
107
+ if @tube.nil?
108
+ invalid_properties.push('invalid value for "tube", tube cannot be nil.')
109
+ end
110
+
111
+ if @body.nil?
112
+ invalid_properties.push('invalid value for "body", body cannot be nil.')
113
+ end
114
+
115
+ if @ttl.nil?
116
+ invalid_properties.push('invalid value for "ttl", ttl cannot be nil.')
117
+ end
118
+
119
+ if @delay.nil?
120
+ invalid_properties.push('invalid value for "delay", delay cannot be nil.')
121
+ end
122
+
123
+ if @priority.nil?
124
+ invalid_properties.push('invalid value for "priority", priority cannot be nil.')
125
+ end
126
+
127
+ invalid_properties
128
+ end
129
+
130
+ # Check to see if the all the properties in the model are valid
131
+ # @return true if the model is valid
132
+ def valid?
133
+ return false if @tube.nil?
134
+ return false if @body.nil?
135
+ return false if @ttl.nil?
136
+ return false if @delay.nil?
137
+ return false if @priority.nil?
138
+ true
139
+ end
140
+
141
+ # Checks equality by comparing each attribute.
142
+ # @param [Object] Object to be compared
143
+ def ==(o)
144
+ return true if self.equal?(o)
145
+ self.class == o.class &&
146
+ tube == o.tube &&
147
+ body == o.body &&
148
+ ttl == o.ttl &&
149
+ delay == o.delay &&
150
+ priority == o.priority &&
151
+ parent_id == o.parent_id
152
+ end
153
+
154
+ # @see the `==` method
155
+ # @param [Object] Object to be compared
156
+ def eql?(o)
157
+ self == o
158
+ end
159
+
160
+ # Calculates hash code according to all attributes.
161
+ # @return [Fixnum] Hash code
162
+ def hash
163
+ [tube, body, ttl, delay, priority, parent_id].hash
164
+ end
165
+
166
+ # Builds the object from hash
167
+ # @param [Hash] attributes Model attributes in the form of hash
168
+ # @return [Object] Returns the model itself
169
+ def build_from_hash(attributes)
170
+ return nil unless attributes.is_a?(Hash)
171
+ self.class.swagger_types.each_pair do |key, type|
172
+ if type =~ /\AArray<(.*)>/i
173
+ # check to ensure the input is an array given that the the attribute
174
+ # is documented as an array but the input is not
175
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
176
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
177
+ end
178
+ elsif !attributes[self.class.attribute_map[key]].nil?
179
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
180
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
181
+ end
182
+
183
+ self
184
+ end
185
+
186
+ # Deserializes the data based on type
187
+ # @param string type Data type
188
+ # @param string value Value to be deserialized
189
+ # @return [Object] Deserialized data
190
+ def _deserialize(type, value)
191
+ case type.to_sym
192
+ when :DateTime
193
+ DateTime.parse(value)
194
+ when :Date
195
+ Date.parse(value)
196
+ when :String
197
+ value.to_s
198
+ when :Integer
199
+ value.to_i
200
+ when :Float
201
+ value.to_f
202
+ when :BOOLEAN
203
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
204
+ true
205
+ else
206
+ false
207
+ end
208
+ when :Object
209
+ # generic object (usually a Hash), return directly
210
+ value
211
+ when /\AArray<(?<inner_type>.+)>\z/
212
+ inner_type = Regexp.last_match[:inner_type]
213
+ value.map { |v| _deserialize(inner_type, v) }
214
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
215
+ k_type = Regexp.last_match[:k_type]
216
+ v_type = Regexp.last_match[:v_type]
217
+ {}.tap do |hash|
218
+ value.each do |k, v|
219
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
220
+ end
221
+ end
222
+ else # model
223
+ temp_model = Allq.const_get(type).new
224
+ temp_model.build_from_hash(value)
225
+ end
226
+ end
227
+
228
+ # Returns the string representation of the object
229
+ # @return [String] String presentation of the object
230
+ def to_s
231
+ to_hash.to_s
232
+ end
233
+
234
+ # to_body is an alias to to_hash (backward compatibility)
235
+ # @return [Hash] Returns the object in the form of hash
236
+ def to_body
237
+ to_hash
238
+ end
239
+
240
+ # Returns the object in the form of hash
241
+ # @return [Hash] Returns the object in the form of hash
242
+ def to_hash
243
+ hash = {}
244
+ self.class.attribute_map.each_pair do |attr, param|
245
+ value = self.send(attr)
246
+ next if value.nil?
247
+ hash[param] = _to_hash(value)
248
+ end
249
+ hash
250
+ end
251
+
252
+ # Outputs non-array value in the form of hash
253
+ # For object, use to_hash. Otherwise, just return the value
254
+ # @param [Object] value Any valid value
255
+ # @return [Hash] Returns the value in the form of hash
256
+ def _to_hash(value)
257
+ if value.is_a?(Array)
258
+ value.compact.map { |v| _to_hash(v) }
259
+ elsif value.is_a?(Hash)
260
+ {}.tap do |hash|
261
+ value.each { |k, v| hash[k] = _to_hash(v) }
262
+ end
263
+ elsif value.respond_to? :to_hash
264
+ value.to_hash
265
+ else
266
+ value
267
+ end
268
+ end
269
+ end
270
+ end