iron_titan 0.4.5 → 0.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -6
  3. data/lib/iron_titan/api/groups_api.rb +9 -5
  4. data/lib/iron_titan/api/jobs_api.rb +1 -1
  5. data/lib/iron_titan/api/runner_api.rb +1 -1
  6. data/lib/iron_titan/api_client.rb +1 -1
  7. data/lib/iron_titan/api_error.rb +1 -1
  8. data/lib/iron_titan/configuration.rb +1 -1
  9. data/lib/iron_titan/models/complete.rb +1 -1
  10. data/lib/iron_titan/models/error.rb +1 -1
  11. data/lib/iron_titan/models/error_body.rb +1 -1
  12. data/lib/iron_titan/models/group.rb +1 -1
  13. data/lib/iron_titan/models/group_wrapper.rb +1 -1
  14. data/lib/iron_titan/models/groups_wrapper.rb +1 -1
  15. data/lib/iron_titan/models/id_status.rb +1 -1
  16. data/lib/iron_titan/models/job.rb +1 -1
  17. data/lib/iron_titan/models/job_wrapper.rb +1 -1
  18. data/lib/iron_titan/models/jobs_wrapper.rb +1 -1
  19. data/lib/iron_titan/models/new_job.rb +1 -1
  20. data/lib/iron_titan/models/new_jobs_wrapper.rb +1 -1
  21. data/lib/iron_titan/models/start.rb +1 -1
  22. data/lib/iron_titan/version.rb +2 -2
  23. data/lib/iron_titan.rb +1 -1
  24. data/spec/api/groups_api_spec.rb +2 -1
  25. data/spec/api/jobs_api_spec.rb +1 -1
  26. data/spec/api/runner_api_spec.rb +1 -1
  27. data/spec/api_client_spec.rb +1 -1
  28. data/spec/configuration_spec.rb +1 -1
  29. data/spec/models/complete_spec.rb +1 -1
  30. data/spec/models/error_body_spec.rb +1 -1
  31. data/spec/models/error_spec.rb +1 -1
  32. data/spec/models/group_spec.rb +1 -1
  33. data/spec/models/group_wrapper_spec.rb +1 -1
  34. data/spec/models/groups_wrapper_spec.rb +1 -1
  35. data/spec/models/id_status_spec.rb +1 -1
  36. data/spec/models/job_spec.rb +1 -1
  37. data/spec/models/job_wrapper_spec.rb +1 -1
  38. data/spec/models/jobs_wrapper_spec.rb +1 -1
  39. data/spec/models/new_job_spec.rb +1 -1
  40. data/spec/models/new_jobs_wrapper_spec.rb +1 -1
  41. data/spec/models/start_spec.rb +1 -1
  42. data/spec/spec_helper.rb +1 -1
  43. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d10fd5b9b4a997a1b051342e44216cc24501afcd
4
- data.tar.gz: 966349eda7f140e98c7a9aa15c701507594c6526
3
+ metadata.gz: 437b80edf900541865f7a9e6e508db7cd5b2a4b6
4
+ data.tar.gz: b28f4d1a88d4262ed837adad22f5a665db9cfada
5
5
  SHA512:
6
- metadata.gz: da026aa2f4e91cb14dcf86ee5415f397a0c44ce73f16768cc64eec461519fc441fea117e27c327048ae5735325cde388c5be734efb6ddec97d31f0ced0cdac0a
7
- data.tar.gz: 57e0f9ccbf9bc62e8a1286f8a9cb04201dadb0eb39365554db0b14750c577b4e41834ac204e514f642e46b5fd2a37f1b90973e45481ce8f7f79054004d0709c1
6
+ metadata.gz: 48642755584909c24cd72572482b1a4cd7d30c9c34bcbd3413eea312212b4b48bdae2a88120a2f99bafa06400bbd6f8795e0a7063f2d5a76143ed7d1978d44a1
7
+ data.tar.gz: 18571fef6e448e33d3e52b41888636bdba74eb890f27aac25af61583b333e2ee6fe789e97378185d9ae00aefad72ffc0646ec1473ce8b97c3a12a65a4498bbc2
data/README.md CHANGED
@@ -6,9 +6,9 @@ The ultimate, language agnostic, container based job processing framework.
6
6
 
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
- - API version: 0.4.4
10
- - Package version: 0.4.5
11
- - Build date: 2016-06-20T22:31:54.061Z
9
+ - API version: 0.4.6
10
+ - Package version: 0.4.6
11
+ - Build date: 2016-06-20T23:00:50.631Z
12
12
  - Build package: class io.swagger.codegen.languages.RubyClientCodegen
13
13
 
14
14
  ## Installation
@@ -24,15 +24,15 @@ gem build iron_titan.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./iron_titan-0.4.5.gem
27
+ gem install ./iron_titan-0.4.6.gem
28
28
  ```
29
- (for development, run `gem install --dev ./iron_titan-0.4.5.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./iron_titan-0.4.6.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'iron_titan', '~> 0.4.5'
35
+ gem 'iron_titan', '~> 0.4.6'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -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.4.4
6
+ OpenAPI spec version: 0.4.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -143,27 +143,31 @@ module IronTitan
143
143
 
144
144
  # Create/update a job group.
145
145
  # You can set group level settings here.
146
+ # @param name name of the group.
146
147
  # @param body Group to post.
147
148
  # @param [Hash] opts the optional parameters
148
149
  # @return [GroupWrapper]
149
- def groups_name_put(body, opts = {})
150
- data, _status_code, _headers = groups_name_put_with_http_info(body, opts)
150
+ def groups_name_put(name, body, opts = {})
151
+ data, _status_code, _headers = groups_name_put_with_http_info(name, body, opts)
151
152
  return data
152
153
  end
153
154
 
154
155
  # Create/update a job group.
155
156
  # You can set group level settings here.
157
+ # @param name name of the group.
156
158
  # @param body Group to post.
157
159
  # @param [Hash] opts the optional parameters
158
160
  # @return [Array<(GroupWrapper, Fixnum, Hash)>] GroupWrapper data, response status code and response headers
159
- def groups_name_put_with_http_info(body, opts = {})
161
+ def groups_name_put_with_http_info(name, body, opts = {})
160
162
  if @api_client.config.debugging
161
163
  @api_client.config.logger.debug "Calling API: GroupsApi.groups_name_put ..."
162
164
  end
165
+ # verify the required parameter 'name' is set
166
+ fail ArgumentError, "Missing the required parameter 'name' when calling GroupsApi.groups_name_put" if name.nil?
163
167
  # verify the required parameter 'body' is set
164
168
  fail ArgumentError, "Missing the required parameter 'body' when calling GroupsApi.groups_name_put" if body.nil?
165
169
  # resource path
166
- local_var_path = "/groups/{name}".sub('{format}','json')
170
+ local_var_path = "/groups/{name}".sub('{format}','json').sub('{' + 'name' + '}', name.to_s)
167
171
 
168
172
  # query parameters
169
173
  query_params = {}
@@ -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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -22,5 +22,5 @@ limitations under the License.
22
22
  =end
23
23
 
24
24
  module IronTitan
25
- VERSION = "0.4.5"
25
+ VERSION = "0.4.6"
26
26
  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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -69,6 +69,7 @@ describe 'GroupsApi' do
69
69
  # unit tests for groups_name_put
70
70
  # Create/update a job group.
71
71
  # You can set group level settings here.
72
+ # @param name name of the group.
72
73
  # @param body Group to post.
73
74
  # @param [Hash] opts the optional parameters
74
75
  # @return [GroupWrapper]
@@ -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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.4
6
+ OpenAPI spec version: 0.4.6
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
data/spec/spec_helper.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.4.4
6
+ OpenAPI spec version: 0.4.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.4.5
4
+ version: 0.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Travis Reeder