autosde_openapi_client 1.2.5 → 1.2.8

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0fdd08ca3a731e08d28e49174932d639d3cf58f4718a6fa698f2508c2600091a
4
- data.tar.gz: 749192fd0062aac3bb96133167d6f2667280952f022b6568dc0e77fb87e1b1ef
3
+ metadata.gz: 33b0a9a738ed2492593eb9381273ee7db2072b86bd2e6bb98460f8f1da878b7a
4
+ data.tar.gz: 4030d5a9e64aab4eb4564ba71d058bc8924514543ebdae7b891b058ce7858454
5
5
  SHA512:
6
- metadata.gz: 456ded9eb63f29c4f72669e9057a89e74c56e49c06c1e3dffb5f3a692f8ada9f1fb952df4865c63c2580b2ace6611d5fe346ac200e282dfe51893fcf072ed029
7
- data.tar.gz: 22868fad8696b126adefe3caea605a6416363651f1de588f056b3b2fd7b69d488ecbd8b72bfaf373e634562041cea6c915c44901800195c5ef92138394d99dc1
6
+ metadata.gz: c26ed1de4b3da3d1d26822784b4069ceabaabc23c75a50ce310e11c8f0bec1b24e79643962ed35f8621af0d66e11391eb944e15f6a37c00df6bf34163978dfc7
7
+ data.tar.gz: 8a999ab01036ef8c16aba184f947f296e0cf26f66d2b283702f7169244c1ab29eae860c1738e882b3a66295dcb6201c7af921c3b8c6d8ca8ddb6f488ad85164d
data/docs/Event.md CHANGED
@@ -4,7 +4,6 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **created_at** | **Time** | created_at | [optional] |
8
7
  | **description** | **String** | description | [optional] |
9
8
  | **error_code** | **String** | error_code | [optional] |
10
9
  | **event_id** | **Integer** | event_id | [optional] |
@@ -21,7 +20,6 @@
21
20
  require 'autosde_openapi_client'
22
21
 
23
22
  instance = AutosdeOpenapiClient::Event.new(
24
- created_at: null,
25
23
  description: null,
26
24
  error_code: null,
27
25
  event_id: null,
@@ -4,7 +4,6 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **created_at** | **Time** | created_at | [optional] |
8
7
  | **description** | **String** | description | [optional] |
9
8
  | **error_code** | **String** | error_code | [optional] |
10
9
  | **event_id** | **Integer** | event_id | [optional] |
@@ -21,7 +20,6 @@
21
20
  require 'autosde_openapi_client'
22
21
 
23
22
  instance = AutosdeOpenapiClient::EventResponse.new(
24
- created_at: null,
25
23
  description: null,
26
24
  error_code: null,
27
25
  event_id: null,
data/docs/Job.md CHANGED
@@ -7,6 +7,8 @@
7
7
  | **date_finished** | **Time** | date_finished | [optional] |
8
8
  | **date_started** | **Time** | date_started | [optional] |
9
9
  | **extra** | **String** | extra | [optional] |
10
+ | **object_id** | **String** | object_id | [optional][default to 'null'] |
11
+ | **result** | **String** | result | [optional] |
10
12
  | **status** | **String** | status | [optional] |
11
13
  | **task_args** | **String** | task_args | [optional] |
12
14
  | **task_id** | **String** | task_id | [optional] |
@@ -22,6 +24,8 @@ instance = AutosdeOpenapiClient::Job.new(
22
24
  date_finished: null,
23
25
  date_started: null,
24
26
  extra: null,
27
+ object_id: null,
28
+ result: null,
25
29
  status: null,
26
30
  task_args: null,
27
31
  task_id: null,
@@ -16,9 +16,6 @@ require 'time'
16
16
  module AutosdeOpenapiClient
17
17
  # Event
18
18
  class Event
19
- # created_at
20
- attr_accessor :created_at
21
-
22
19
  # description
23
20
  attr_accessor :description
24
21
 
@@ -48,7 +45,6 @@ module AutosdeOpenapiClient
48
45
  # Attribute mapping from ruby-style variable name to JSON key.
49
46
  def self.attribute_map
50
47
  {
51
- :'created_at' => :'created_at',
52
48
  :'description' => :'description',
53
49
  :'error_code' => :'error_code',
54
50
  :'event_id' => :'event_id',
@@ -69,7 +65,6 @@ module AutosdeOpenapiClient
69
65
  # Attribute type mapping.
70
66
  def self.openapi_types
71
67
  {
72
- :'created_at' => :'Time',
73
68
  :'description' => :'String',
74
69
  :'error_code' => :'String',
75
70
  :'event_id' => :'Integer',
@@ -103,10 +98,6 @@ module AutosdeOpenapiClient
103
98
  h[k.to_sym] = v
104
99
  }
105
100
 
106
- if attributes.key?(:'created_at')
107
- self.created_at = attributes[:'created_at']
108
- end
109
-
110
101
  if attributes.key?(:'description')
111
102
  self.description = attributes[:'description']
112
103
  end
@@ -162,7 +153,6 @@ module AutosdeOpenapiClient
162
153
  def ==(o)
163
154
  return true if self.equal?(o)
164
155
  self.class == o.class &&
165
- created_at == o.created_at &&
166
156
  description == o.description &&
167
157
  error_code == o.error_code &&
168
158
  event_id == o.event_id &&
@@ -183,7 +173,7 @@ module AutosdeOpenapiClient
183
173
  # Calculates hash code according to all attributes.
184
174
  # @return [Integer] Hash code
185
175
  def hash
186
- [created_at, description, error_code, event_id, event_type, fixed, last_timestamp, refresh_interval, storage_system, uuid].hash
176
+ [description, error_code, event_id, event_type, fixed, last_timestamp, refresh_interval, storage_system, uuid].hash
187
177
  end
188
178
 
189
179
  # Builds the object from hash
@@ -16,9 +16,6 @@ require 'time'
16
16
  module AutosdeOpenapiClient
17
17
  # TODO add description
18
18
  class EventResponse
19
- # created_at
20
- attr_accessor :created_at
21
-
22
19
  # description
23
20
  attr_accessor :description
24
21
 
@@ -49,7 +46,6 @@ module AutosdeOpenapiClient
49
46
  # Attribute mapping from ruby-style variable name to JSON key.
50
47
  def self.attribute_map
51
48
  {
52
- :'created_at' => :'created_at',
53
49
  :'description' => :'description',
54
50
  :'error_code' => :'error_code',
55
51
  :'event_id' => :'event_id',
@@ -70,7 +66,6 @@ module AutosdeOpenapiClient
70
66
  # Attribute type mapping.
71
67
  def self.openapi_types
72
68
  {
73
- :'created_at' => :'Time',
74
69
  :'description' => :'String',
75
70
  :'error_code' => :'String',
76
71
  :'event_id' => :'Integer',
@@ -104,10 +99,6 @@ module AutosdeOpenapiClient
104
99
  h[k.to_sym] = v
105
100
  }
106
101
 
107
- if attributes.key?(:'created_at')
108
- self.created_at = attributes[:'created_at']
109
- end
110
-
111
102
  if attributes.key?(:'description')
112
103
  self.description = attributes[:'description']
113
104
  end
@@ -163,7 +154,6 @@ module AutosdeOpenapiClient
163
154
  def ==(o)
164
155
  return true if self.equal?(o)
165
156
  self.class == o.class &&
166
- created_at == o.created_at &&
167
157
  description == o.description &&
168
158
  error_code == o.error_code &&
169
159
  event_id == o.event_id &&
@@ -184,7 +174,7 @@ module AutosdeOpenapiClient
184
174
  # Calculates hash code according to all attributes.
185
175
  # @return [Integer] Hash code
186
176
  def hash
187
- [created_at, description, error_code, event_id, event_type, fixed, last_timestamp, refresh_interval, storage_system, uuid].hash
177
+ [description, error_code, event_id, event_type, fixed, last_timestamp, refresh_interval, storage_system, uuid].hash
188
178
  end
189
179
 
190
180
  # Builds the object from hash
@@ -25,6 +25,12 @@ module AutosdeOpenapiClient
25
25
  # extra
26
26
  attr_accessor :extra
27
27
 
28
+ # object_id
29
+ attr_accessor :object_id
30
+
31
+ # result
32
+ attr_accessor :result
33
+
28
34
  # status
29
35
  attr_accessor :status
30
36
 
@@ -46,6 +52,8 @@ module AutosdeOpenapiClient
46
52
  :'date_finished' => :'date_finished',
47
53
  :'date_started' => :'date_started',
48
54
  :'extra' => :'extra',
55
+ :'object_id' => :'object_id',
56
+ :'result' => :'result',
49
57
  :'status' => :'status',
50
58
  :'task_args' => :'task_args',
51
59
  :'task_id' => :'task_id',
@@ -65,6 +73,8 @@ module AutosdeOpenapiClient
65
73
  :'date_finished' => :'Time',
66
74
  :'date_started' => :'Time',
67
75
  :'extra' => :'String',
76
+ :'object_id' => :'String',
77
+ :'result' => :'String',
68
78
  :'status' => :'String',
69
79
  :'task_args' => :'String',
70
80
  :'task_id' => :'String',
@@ -106,6 +116,16 @@ module AutosdeOpenapiClient
106
116
  self.extra = attributes[:'extra']
107
117
  end
108
118
 
119
+ if attributes.key?(:'object_id')
120
+ self.object_id = attributes[:'object_id']
121
+ else
122
+ self.object_id = 'null'
123
+ end
124
+
125
+ if attributes.key?(:'result')
126
+ self.result = attributes[:'result']
127
+ end
128
+
109
129
  if attributes.key?(:'status')
110
130
  self.status = attributes[:'status']
111
131
  end
@@ -148,6 +168,8 @@ module AutosdeOpenapiClient
148
168
  date_finished == o.date_finished &&
149
169
  date_started == o.date_started &&
150
170
  extra == o.extra &&
171
+ object_id == o.object_id &&
172
+ result == o.result &&
151
173
  status == o.status &&
152
174
  task_args == o.task_args &&
153
175
  task_id == o.task_id &&
@@ -164,7 +186,7 @@ module AutosdeOpenapiClient
164
186
  # Calculates hash code according to all attributes.
165
187
  # @return [Integer] Hash code
166
188
  def hash
167
- [date_finished, date_started, extra, status, task_args, task_id, task_kwargs, task_name].hash
189
+ [date_finished, date_started, extra, object_id, result, status, task_args, task_id, task_kwargs, task_name].hash
168
190
  end
169
191
 
170
192
  # 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.8
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.8'
15
15
  end
@@ -25,12 +25,6 @@ describe AutosdeOpenapiClient::EventResponse do
25
25
  expect(instance).to be_instance_of(AutosdeOpenapiClient::EventResponse)
26
26
  end
27
27
  end
28
- describe 'test attribute "created_at"' do
29
- it 'should work' do
30
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
- end
32
- end
33
-
34
28
  describe 'test attribute "description"' do
35
29
  it 'should work' do
36
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -25,12 +25,6 @@ describe AutosdeOpenapiClient::Event do
25
25
  expect(instance).to be_instance_of(AutosdeOpenapiClient::Event)
26
26
  end
27
27
  end
28
- describe 'test attribute "created_at"' do
29
- it 'should work' do
30
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
- end
32
- end
33
-
34
28
  describe 'test attribute "description"' do
35
29
  it 'should work' do
36
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -43,6 +43,18 @@ describe AutosdeOpenapiClient::Job do
43
43
  end
44
44
  end
45
45
 
46
+ describe 'test attribute "object_id"' 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
+
52
+ describe 'test attribute "result"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
46
58
  describe 'test attribute "status"' do
47
59
  it 'should work' do
48
60
  # 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.8
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-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -389,104 +389,104 @@ signing_key:
389
389
  specification_version: 4
390
390
  summary: Site Manager API Ruby Gem
391
391
  test_files:
392
- - spec/api/volume_safe_delete_api_spec.rb
393
- - spec/api/auto_sde_project_api_spec.rb
394
- - spec/api/job_api_spec.rb
395
- - spec/api/profile_api_spec.rb
396
- - spec/api/refresh_system_api_spec.rb
392
+ - spec/api/service_resource_attachment_api_spec.rb
397
393
  - spec/api/account_api_spec.rb
394
+ - spec/api/host_volume_connection_api_spec.rb
395
+ - spec/api/refresh_system_api_spec.rb
396
+ - spec/api/auto_sde_project_api_spec.rb
397
+ - spec/api/host_api_spec.rb
398
+ - spec/api/address_api_spec.rb
399
+ - spec/api/authentication_api_spec.rb
398
400
  - spec/api/validate_system_api_spec.rb
401
+ - spec/api/host_cluster_api_spec.rb
399
402
  - spec/api/capability_translation_api_spec.rb
400
- - spec/api/celery_config_api_spec.rb
401
403
  - spec/api/storage_host_api_spec.rb
402
- - spec/api/host_volume_connection_api_spec.rb
403
- - spec/api/storage_hosts_mapping_api_spec.rb
404
- - spec/api/storage_resource_api_spec.rb
405
- - spec/api/volume_api_spec.rb
404
+ - spec/api/event_api_spec.rb
406
405
  - spec/api/storage_host_wwpn_candidates_api_spec.rb
407
- - spec/api/authentication_api_spec.rb
408
- - spec/api/service_api_spec.rb
409
- - spec/api/native_capability_api_spec.rb
406
+ - spec/api/job_api_spec.rb
410
407
  - spec/api/snapshot_api_spec.rb
411
- - spec/api/host_api_spec.rb
408
+ - spec/api/storage_system_api_spec.rb
409
+ - spec/api/host_cluster_membership_api_spec.rb
410
+ - spec/api/storage_resource_api_spec.rb
411
+ - spec/api/native_capability_api_spec.rb
412
+ - spec/api/volume_safe_delete_api_spec.rb
413
+ - spec/api/provisioning_strategy_api_spec.rb
414
+ - spec/api/profile_api_spec.rb
415
+ - spec/api/celery_config_api_spec.rb
416
+ - spec/api/volume_api_spec.rb
412
417
  - spec/api/abstract_capability_api_spec.rb
413
- - spec/api/service_resource_attachment_api_spec.rb
414
- - spec/api/event_api_spec.rb
415
- - spec/api/user_api_spec.rb
416
418
  - spec/api/system_type_api_spec.rb
417
- - spec/api/provisioning_strategy_api_spec.rb
418
- - spec/api/auto_sde_role_api_spec.rb
419
- - spec/api/host_cluster_membership_api_spec.rb
420
- - spec/api/host_cluster_api_spec.rb
421
- - spec/api/address_api_spec.rb
422
- - spec/api/storage_system_api_spec.rb
423
419
  - spec/api/host_cluster_volume_mapping_api_spec.rb
420
+ - spec/api/user_api_spec.rb
421
+ - spec/api/storage_hosts_mapping_api_spec.rb
422
+ - spec/api/auto_sde_role_api_spec.rb
423
+ - spec/api/service_api_spec.rb
424
424
  - spec/api_client_spec.rb
425
425
  - spec/configuration_spec.rb
426
+ - spec/models/host_cluster_volume_mapping_spec.rb
427
+ - spec/models/storage_host_response_spec.rb
428
+ - spec/models/address_create_spec.rb
429
+ - spec/models/host_cluster_response_spec.rb
430
+ - spec/models/volume_safe_delete_spec.rb
431
+ - spec/models/volume_response_spec.rb
432
+ - spec/models/capability_translation_create_spec.rb
433
+ - spec/models/storage_host_update_spec.rb
434
+ - spec/models/system_type_create_spec.rb
435
+ - spec/models/system_type_spec.rb
436
+ - spec/models/user_create_spec.rb
437
+ - spec/models/storage_resource_response_spec.rb
438
+ - spec/models/storage_system_create_spec.rb
439
+ - spec/models/host_cluster_volume_mapping_create_spec.rb
440
+ - spec/models/authentication_spec.rb
441
+ - spec/models/storage_hosts_mapping_spec.rb
442
+ - spec/models/refresh_system_spec.rb
443
+ - spec/models/capability_translation_spec.rb
444
+ - spec/models/host_cluster_membership_spec.rb
445
+ - spec/models/storage_hosts_mapping_response_spec.rb
446
+ - spec/models/user_spec.rb
447
+ - spec/models/snapshot_spec.rb
448
+ - spec/models/host_cluster_create_spec.rb
449
+ - spec/models/host_cluster_volume_mapping_response_spec.rb
450
+ - spec/models/provisioning_strategy_spec.rb
451
+ - spec/models/storage_host_create_spec.rb
426
452
  - spec/models/auth_response_spec.rb
453
+ - spec/models/account_post_response_spec.rb
454
+ - spec/models/storage_host_spec.rb
455
+ - spec/models/storage_system_update_spec.rb
456
+ - spec/models/service_resource_attachment_spec.rb
457
+ - spec/models/storage_host_wwpn_candidates_spec.rb
458
+ - spec/models/profile_spec.rb
459
+ - spec/models/native_capability_spec.rb
460
+ - spec/models/storage_hosts_mapping_create_spec.rb
461
+ - spec/models/validate_system_spec.rb
427
462
  - spec/models/service_spec.rb
428
- - spec/models/snapshot_spec.rb
429
- - spec/models/host_cluster_membership_spec.rb
430
- - spec/models/system_type_create_spec.rb
431
- - spec/models/job_create_spec.rb
432
- - spec/models/abstract_capability_spec.rb
433
463
  - spec/models/storage_resource_create_spec.rb
434
- - spec/models/host_cluster_create_spec.rb
464
+ - spec/models/host_cluster_spec.rb
465
+ - spec/models/host_create_spec.rb
466
+ - spec/models/job_spec.rb
467
+ - spec/models/volume_update_spec.rb
468
+ - spec/models/event_spec.rb
469
+ - spec/models/auto_sde_role_spec.rb
470
+ - spec/models/service_create_spec.rb
435
471
  - spec/models/host_spec.rb
472
+ - spec/models/host_volume_connection_spec.rb
436
473
  - spec/models/auto_sde_project_spec.rb
437
- - spec/models/native_capability_spec.rb
438
- - spec/models/service_create_spec.rb
439
- - spec/models/auto_sde_role_spec.rb
440
- - spec/models/storage_system_update_spec.rb
441
- - spec/models/host_cluster_spec.rb
474
+ - spec/models/volume_spec.rb
475
+ - spec/models/account_spec.rb
476
+ - spec/models/snapshot_create_spec.rb
442
477
  - spec/models/host_volume_connection_create_spec.rb
443
- - spec/models/system_type_spec.rb
444
- - spec/models/storage_hosts_mapping_create_spec.rb
445
- - spec/models/service_resource_attachment_spec.rb
446
- - spec/models/capability_translation_spec.rb
447
478
  - spec/models/account_post_request_spec.rb
479
+ - spec/models/storage_resource_update_spec.rb
480
+ - spec/models/storage_system_spec.rb
448
481
  - spec/models/address_spec.rb
449
- - spec/models/provisioning_strategy_spec.rb
450
- - spec/models/refresh_system_spec.rb
451
- - spec/models/event_response_spec.rb
452
- - spec/models/profile_spec.rb
453
482
  - spec/models/volume_create_spec.rb
454
- - spec/models/volume_update_spec.rb
483
+ - spec/models/storage_resource_spec.rb
484
+ - spec/models/celery_config_spec.rb
485
+ - spec/models/abstract_capability_spec.rb
486
+ - spec/models/event_response_spec.rb
455
487
  - spec/models/volume_safe_delete_create_spec.rb
456
- - spec/models/storage_system_create_spec.rb
457
- - spec/models/storage_resource_response_spec.rb
458
- - spec/models/snapshot_create_spec.rb
459
- - spec/models/authentication_spec.rb
460
- - spec/models/volume_response_spec.rb
461
488
  - spec/models/async_response_spec.rb
462
- - spec/models/host_cluster_volume_mapping_spec.rb
463
- - spec/models/host_create_spec.rb
464
- - spec/models/event_spec.rb
465
- - spec/models/storage_resource_update_spec.rb
466
- - spec/models/celery_config_spec.rb
467
- - spec/models/capability_translation_create_spec.rb
468
- - spec/models/storage_host_response_spec.rb
469
- - spec/models/storage_hosts_mapping_spec.rb
470
- - spec/models/host_volume_connection_spec.rb
471
- - spec/models/storage_system_spec.rb
472
- - spec/models/storage_host_create_spec.rb
473
489
  - spec/models/service_abstract_capability_value_spec.rb
474
- - spec/models/user_spec.rb
475
- - spec/models/job_spec.rb
476
- - spec/models/account_post_response_spec.rb
477
- - spec/models/host_cluster_response_spec.rb
478
- - spec/models/storage_host_wwpn_candidates_spec.rb
479
- - spec/models/storage_hosts_mapping_response_spec.rb
480
490
  - spec/models/user_update_spec.rb
481
- - spec/models/user_create_spec.rb
482
- - spec/models/address_create_spec.rb
483
- - spec/models/host_cluster_volume_mapping_response_spec.rb
484
- - spec/models/storage_host_spec.rb
485
- - spec/models/volume_spec.rb
486
- - spec/models/host_cluster_volume_mapping_create_spec.rb
487
- - spec/models/storage_resource_spec.rb
488
- - spec/models/account_spec.rb
489
- - spec/models/validate_system_spec.rb
490
- - spec/models/volume_safe_delete_spec.rb
491
- - spec/models/storage_host_update_spec.rb
491
+ - spec/models/job_create_spec.rb
492
492
  - spec/spec_helper.rb