autosde_openapi_client 1.2.5 → 1.2.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
  SHA256:
3
- metadata.gz: 0fdd08ca3a731e08d28e49174932d639d3cf58f4718a6fa698f2508c2600091a
4
- data.tar.gz: 749192fd0062aac3bb96133167d6f2667280952f022b6568dc0e77fb87e1b1ef
3
+ metadata.gz: 910a9bfe4f38d4f2017ed88f501e47621984da2d40c4f0019683261490962ac7
4
+ data.tar.gz: 77424d941e712bd5f25aaaf925bd9cdb6d7a587d199034b3ceaeb39ce5901634
5
5
  SHA512:
6
- metadata.gz: 456ded9eb63f29c4f72669e9057a89e74c56e49c06c1e3dffb5f3a692f8ada9f1fb952df4865c63c2580b2ace6611d5fe346ac200e282dfe51893fcf072ed029
7
- data.tar.gz: 22868fad8696b126adefe3caea605a6416363651f1de588f056b3b2fd7b69d488ecbd8b72bfaf373e634562041cea6c915c44901800195c5ef92138394d99dc1
6
+ metadata.gz: 2b40165019a44453a6d9454078b7e40980892c2f8c89f27aa0839852fbe58abe491e0e65c9084dbbd2e12ec2faac4e9dffd55fefaaec5b744afa6808c51d3e30
7
+ data.tar.gz: 1348b630edc51971551ca0685ced3bf568109a499ac60276bdd7c73c2017b24c47c4035d3bcfe2e02375a7c16ad5c1f239c208c9d1c468750df9bf342c77778f
data/docs/Job.md CHANGED
@@ -7,6 +7,7 @@
7
7
  | **date_finished** | **Time** | date_finished | [optional] |
8
8
  | **date_started** | **Time** | date_started | [optional] |
9
9
  | **extra** | **String** | extra | [optional] |
10
+ | **result** | **String** | result | [optional] |
10
11
  | **status** | **String** | status | [optional] |
11
12
  | **task_args** | **String** | task_args | [optional] |
12
13
  | **task_id** | **String** | task_id | [optional] |
@@ -22,6 +23,7 @@ instance = AutosdeOpenapiClient::Job.new(
22
23
  date_finished: null,
23
24
  date_started: null,
24
25
  extra: null,
26
+ result: null,
25
27
  status: null,
26
28
  task_args: null,
27
29
  task_id: null,
@@ -25,6 +25,9 @@ module AutosdeOpenapiClient
25
25
  # extra
26
26
  attr_accessor :extra
27
27
 
28
+ # result
29
+ attr_accessor :result
30
+
28
31
  # status
29
32
  attr_accessor :status
30
33
 
@@ -46,6 +49,7 @@ module AutosdeOpenapiClient
46
49
  :'date_finished' => :'date_finished',
47
50
  :'date_started' => :'date_started',
48
51
  :'extra' => :'extra',
52
+ :'result' => :'result',
49
53
  :'status' => :'status',
50
54
  :'task_args' => :'task_args',
51
55
  :'task_id' => :'task_id',
@@ -65,6 +69,7 @@ module AutosdeOpenapiClient
65
69
  :'date_finished' => :'Time',
66
70
  :'date_started' => :'Time',
67
71
  :'extra' => :'String',
72
+ :'result' => :'String',
68
73
  :'status' => :'String',
69
74
  :'task_args' => :'String',
70
75
  :'task_id' => :'String',
@@ -106,6 +111,10 @@ module AutosdeOpenapiClient
106
111
  self.extra = attributes[:'extra']
107
112
  end
108
113
 
114
+ if attributes.key?(:'result')
115
+ self.result = attributes[:'result']
116
+ end
117
+
109
118
  if attributes.key?(:'status')
110
119
  self.status = attributes[:'status']
111
120
  end
@@ -148,6 +157,7 @@ module AutosdeOpenapiClient
148
157
  date_finished == o.date_finished &&
149
158
  date_started == o.date_started &&
150
159
  extra == o.extra &&
160
+ result == o.result &&
151
161
  status == o.status &&
152
162
  task_args == o.task_args &&
153
163
  task_id == o.task_id &&
@@ -164,7 +174,7 @@ module AutosdeOpenapiClient
164
174
  # Calculates hash code according to all attributes.
165
175
  # @return [Integer] Hash code
166
176
  def hash
167
- [date_finished, date_started, extra, status, task_args, task_id, task_kwargs, task_name].hash
177
+ [date_finished, date_started, extra, result, status, task_args, task_id, task_kwargs, task_name].hash
168
178
  end
169
179
 
170
180
  # Builds the object from hash
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Site Manager API
5
5
 
6
- The version of the OpenAPI document: 1.2.5
6
+ The version of the OpenAPI document: 1.2.6
7
7
  Contact: autosde@il.ibm.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.0.0
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.0.0
11
11
  =end
12
12
 
13
13
  module AutosdeOpenapiClient
14
- VERSION = '1.2.5'
14
+ VERSION = '1.2.6'
15
15
  end
@@ -43,6 +43,12 @@ describe AutosdeOpenapiClient::Job do
43
43
  end
44
44
  end
45
45
 
46
+ describe 'test attribute "result"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
46
52
  describe 'test attribute "status"' do
47
53
  it 'should work' do
48
54
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autosde_openapi_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.5
4
+ version: 1.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-30 00:00:00.000000000 Z
11
+ date: 2022-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus