autosde_openapi_client 1.2.6 → 1.2.9
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 +4 -4
- data/docs/Event.md +0 -2
- data/docs/EventResponse.md +0 -2
- data/docs/Job.md +2 -0
- data/docs/RefreshSystem.md +1 -1
- data/lib/autosde_openapi_client/models/event.rb +1 -11
- data/lib/autosde_openapi_client/models/event_response.rb +1 -11
- data/lib/autosde_openapi_client/models/job.rb +13 -1
- data/lib/autosde_openapi_client/models/refresh_system.rb +1 -2
- data/lib/autosde_openapi_client/version.rb +2 -2
- data/spec/models/event_response_spec.rb +0 -6
- data/spec/models/event_spec.rb +0 -6
- data/spec/models/job_spec.rb +6 -0
- metadata +78 -78
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 575aa4aa366bd6e9fad041b3ed97260ab47d50f01f60a0842f6622f7530fbcc2
|
4
|
+
data.tar.gz: 4acbf78c9593d846da1935208e29c4c5d373d92c1f8fcb0d8ce315f6a555da36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7cc7b0928dc2df8aef7f1f40126ddc2e8d7210524377dcd5ee0afeda2106b8a65508c4c3a6dc50ae591aa3e64df1f5e7c5f42ea27a0f8da874fd2ca81235c2b
|
7
|
+
data.tar.gz: 050d5cf70a260741f732eb0f0abe090be28cbe1acf03cf5bd5fe95c898ad4e195ca931c49d105cb6487cdc639272d590c071c36b51eb328280d672c631e304e6
|
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,
|
data/docs/EventResponse.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::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,7 @@
|
|
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'] |
|
10
11
|
| **result** | **String** | result | [optional] |
|
11
12
|
| **status** | **String** | status | [optional] |
|
12
13
|
| **task_args** | **String** | task_args | [optional] |
|
@@ -23,6 +24,7 @@ instance = AutosdeOpenapiClient::Job.new(
|
|
23
24
|
date_finished: null,
|
24
25
|
date_started: null,
|
25
26
|
extra: null,
|
27
|
+
object_id: null,
|
26
28
|
result: null,
|
27
29
|
status: null,
|
28
30
|
task_args: null,
|
data/docs/RefreshSystem.md
CHANGED
@@ -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
|
-
[
|
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
|
-
[
|
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,9 @@ module AutosdeOpenapiClient
|
|
25
25
|
# extra
|
26
26
|
attr_accessor :extra
|
27
27
|
|
28
|
+
# object_id
|
29
|
+
attr_accessor :object_id
|
30
|
+
|
28
31
|
# result
|
29
32
|
attr_accessor :result
|
30
33
|
|
@@ -49,6 +52,7 @@ module AutosdeOpenapiClient
|
|
49
52
|
:'date_finished' => :'date_finished',
|
50
53
|
:'date_started' => :'date_started',
|
51
54
|
:'extra' => :'extra',
|
55
|
+
:'object_id' => :'object_id',
|
52
56
|
:'result' => :'result',
|
53
57
|
:'status' => :'status',
|
54
58
|
:'task_args' => :'task_args',
|
@@ -69,6 +73,7 @@ module AutosdeOpenapiClient
|
|
69
73
|
:'date_finished' => :'Time',
|
70
74
|
:'date_started' => :'Time',
|
71
75
|
:'extra' => :'String',
|
76
|
+
:'object_id' => :'String',
|
72
77
|
:'result' => :'String',
|
73
78
|
:'status' => :'String',
|
74
79
|
:'task_args' => :'String',
|
@@ -111,6 +116,12 @@ module AutosdeOpenapiClient
|
|
111
116
|
self.extra = attributes[:'extra']
|
112
117
|
end
|
113
118
|
|
119
|
+
if attributes.key?(:'object_id')
|
120
|
+
self.object_id = attributes[:'object_id']
|
121
|
+
else
|
122
|
+
self.object_id = 'null'
|
123
|
+
end
|
124
|
+
|
114
125
|
if attributes.key?(:'result')
|
115
126
|
self.result = attributes[:'result']
|
116
127
|
end
|
@@ -157,6 +168,7 @@ module AutosdeOpenapiClient
|
|
157
168
|
date_finished == o.date_finished &&
|
158
169
|
date_started == o.date_started &&
|
159
170
|
extra == o.extra &&
|
171
|
+
object_id == o.object_id &&
|
160
172
|
result == o.result &&
|
161
173
|
status == o.status &&
|
162
174
|
task_args == o.task_args &&
|
@@ -174,7 +186,7 @@ module AutosdeOpenapiClient
|
|
174
186
|
# Calculates hash code according to all attributes.
|
175
187
|
# @return [Integer] Hash code
|
176
188
|
def hash
|
177
|
-
[date_finished, date_started, extra, result, 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
|
178
190
|
end
|
179
191
|
|
180
192
|
# Builds the object from hash
|
@@ -16,7 +16,6 @@ require 'time'
|
|
16
16
|
module AutosdeOpenapiClient
|
17
17
|
# RefreshSystem object represents refreshing of the storage system.
|
18
18
|
class RefreshSystem
|
19
|
-
# uuid
|
20
19
|
attr_accessor :uuid
|
21
20
|
|
22
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -34,7 +33,7 @@ module AutosdeOpenapiClient
|
|
34
33
|
# Attribute type mapping.
|
35
34
|
def self.openapi_types
|
36
35
|
{
|
37
|
-
:'uuid' => :'
|
36
|
+
:'uuid' => :'StorageSystem'
|
38
37
|
}
|
39
38
|
end
|
40
39
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Site Manager API
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
6
|
+
The version of the OpenAPI document: 1.2.9
|
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.
|
14
|
+
VERSION = '1.2.9'
|
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
|
data/spec/models/event_spec.rb
CHANGED
@@ -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
|
data/spec/models/job_spec.rb
CHANGED
@@ -43,6 +43,12 @@ 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
|
+
|
46
52
|
describe 'test attribute "result"' 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.
|
4
|
+
version: 1.2.9
|
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-09-
|
11
|
+
date: 2022-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -390,103 +390,103 @@ specification_version: 4
|
|
390
390
|
summary: Site Manager API Ruby Gem
|
391
391
|
test_files:
|
392
392
|
- spec/api/volume_safe_delete_api_spec.rb
|
393
|
+
- spec/api/host_volume_connection_api_spec.rb
|
394
|
+
- spec/api/address_api_spec.rb
|
395
|
+
- spec/api/storage_host_api_spec.rb
|
396
|
+
- spec/api/event_api_spec.rb
|
397
|
+
- spec/api/capability_translation_api_spec.rb
|
393
398
|
- spec/api/auto_sde_project_api_spec.rb
|
399
|
+
- spec/api/auto_sde_role_api_spec.rb
|
400
|
+
- spec/api/service_resource_attachment_api_spec.rb
|
401
|
+
- spec/api/snapshot_api_spec.rb
|
402
|
+
- spec/api/celery_config_api_spec.rb
|
403
|
+
- spec/api/abstract_capability_api_spec.rb
|
404
|
+
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
394
405
|
- spec/api/job_api_spec.rb
|
406
|
+
- spec/api/native_capability_api_spec.rb
|
407
|
+
- spec/api/storage_system_api_spec.rb
|
408
|
+
- spec/api/user_api_spec.rb
|
409
|
+
- spec/api/host_cluster_api_spec.rb
|
410
|
+
- spec/api/provisioning_strategy_api_spec.rb
|
411
|
+
- spec/api/storage_resource_api_spec.rb
|
412
|
+
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
413
|
+
- spec/api/system_type_api_spec.rb
|
414
|
+
- spec/api/account_api_spec.rb
|
395
415
|
- spec/api/profile_api_spec.rb
|
396
416
|
- spec/api/refresh_system_api_spec.rb
|
397
|
-
- spec/api/
|
417
|
+
- spec/api/host_cluster_membership_api_spec.rb
|
398
418
|
- spec/api/validate_system_api_spec.rb
|
399
|
-
- spec/api/capability_translation_api_spec.rb
|
400
|
-
- spec/api/celery_config_api_spec.rb
|
401
|
-
- 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
419
|
- spec/api/volume_api_spec.rb
|
406
|
-
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
407
420
|
- spec/api/authentication_api_spec.rb
|
408
|
-
- spec/api/
|
409
|
-
- spec/api/native_capability_api_spec.rb
|
410
|
-
- spec/api/snapshot_api_spec.rb
|
421
|
+
- spec/api/storage_hosts_mapping_api_spec.rb
|
411
422
|
- spec/api/host_api_spec.rb
|
412
|
-
- spec/api/
|
413
|
-
- spec/api/service_resource_attachment_api_spec.rb
|
414
|
-
- spec/api/event_api_spec.rb
|
415
|
-
- spec/api/user_api_spec.rb
|
416
|
-
- 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
|
-
- spec/api/host_cluster_volume_mapping_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/
|
427
|
-
- spec/models/
|
426
|
+
- spec/models/storage_hosts_mapping_response_spec.rb
|
427
|
+
- spec/models/job_create_spec.rb
|
428
428
|
- spec/models/snapshot_spec.rb
|
429
|
+
- spec/models/celery_config_spec.rb
|
430
|
+
- spec/models/account_post_response_spec.rb
|
431
|
+
- spec/models/storage_host_spec.rb
|
432
|
+
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
433
|
+
- spec/models/service_spec.rb
|
434
|
+
- spec/models/async_response_spec.rb
|
435
|
+
- spec/models/system_type_spec.rb
|
429
436
|
- 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
|
-
- spec/models/storage_resource_create_spec.rb
|
434
|
-
- spec/models/host_cluster_create_spec.rb
|
435
|
-
- spec/models/host_spec.rb
|
436
|
-
- spec/models/auto_sde_project_spec.rb
|
437
|
-
- spec/models/native_capability_spec.rb
|
438
437
|
- spec/models/service_create_spec.rb
|
439
|
-
- spec/models/
|
440
|
-
- spec/models/storage_system_update_spec.rb
|
441
|
-
- spec/models/host_cluster_spec.rb
|
442
|
-
- 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
|
-
- spec/models/account_post_request_spec.rb
|
448
|
-
- spec/models/address_spec.rb
|
449
|
-
- spec/models/provisioning_strategy_spec.rb
|
450
|
-
- spec/models/refresh_system_spec.rb
|
438
|
+
- spec/models/storage_resource_spec.rb
|
451
439
|
- spec/models/event_response_spec.rb
|
452
|
-
- spec/models/
|
453
|
-
- spec/models/
|
454
|
-
- spec/models/volume_update_spec.rb
|
455
|
-
- 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
|
440
|
+
- spec/models/address_spec.rb
|
441
|
+
- spec/models/storage_host_response_spec.rb
|
459
442
|
- spec/models/authentication_spec.rb
|
460
443
|
- spec/models/volume_response_spec.rb
|
461
|
-
- spec/models/
|
444
|
+
- spec/models/storage_resource_update_spec.rb
|
445
|
+
- spec/models/auto_sde_project_spec.rb
|
446
|
+
- spec/models/native_capability_spec.rb
|
462
447
|
- spec/models/host_cluster_volume_mapping_spec.rb
|
463
|
-
- spec/models/host_create_spec.rb
|
464
448
|
- spec/models/event_spec.rb
|
465
|
-
- spec/models/
|
466
|
-
- spec/models/
|
467
|
-
- spec/models/
|
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
|
-
- spec/models/service_abstract_capability_value_spec.rb
|
474
|
-
- spec/models/user_spec.rb
|
449
|
+
- spec/models/storage_hosts_mapping_create_spec.rb
|
450
|
+
- spec/models/abstract_capability_spec.rb
|
451
|
+
- spec/models/host_volume_connection_create_spec.rb
|
475
452
|
- spec/models/job_spec.rb
|
476
|
-
- spec/models/
|
477
|
-
- spec/models/
|
453
|
+
- spec/models/storage_host_create_spec.rb
|
454
|
+
- spec/models/host_spec.rb
|
455
|
+
- spec/models/profile_spec.rb
|
456
|
+
- spec/models/volume_safe_delete_spec.rb
|
457
|
+
- spec/models/storage_hosts_mapping_spec.rb
|
458
|
+
- spec/models/auth_response_spec.rb
|
459
|
+
- spec/models/volume_spec.rb
|
460
|
+
- spec/models/capability_translation_create_spec.rb
|
461
|
+
- spec/models/host_create_spec.rb
|
462
|
+
- spec/models/validate_system_spec.rb
|
478
463
|
- spec/models/storage_host_wwpn_candidates_spec.rb
|
479
|
-
- spec/models/
|
480
|
-
- spec/models/
|
481
|
-
- spec/models/
|
464
|
+
- spec/models/snapshot_create_spec.rb
|
465
|
+
- spec/models/storage_host_update_spec.rb
|
466
|
+
- spec/models/storage_resource_create_spec.rb
|
482
467
|
- spec/models/address_create_spec.rb
|
468
|
+
- spec/models/storage_system_create_spec.rb
|
469
|
+
- spec/models/volume_create_spec.rb
|
470
|
+
- spec/models/service_resource_attachment_spec.rb
|
471
|
+
- spec/models/refresh_system_spec.rb
|
472
|
+
- spec/models/user_create_spec.rb
|
473
|
+
- spec/models/host_cluster_spec.rb
|
474
|
+
- spec/models/storage_system_spec.rb
|
475
|
+
- spec/models/auto_sde_role_spec.rb
|
476
|
+
- spec/models/storage_system_update_spec.rb
|
477
|
+
- spec/models/host_cluster_response_spec.rb
|
478
|
+
- spec/models/host_cluster_create_spec.rb
|
479
|
+
- spec/models/service_abstract_capability_value_spec.rb
|
480
|
+
- spec/models/volume_safe_delete_create_spec.rb
|
483
481
|
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
484
|
-
- spec/models/
|
485
|
-
- spec/models/
|
486
|
-
- spec/models/
|
487
|
-
- spec/models/
|
482
|
+
- spec/models/storage_resource_response_spec.rb
|
483
|
+
- spec/models/provisioning_strategy_spec.rb
|
484
|
+
- spec/models/account_post_request_spec.rb
|
485
|
+
- spec/models/user_update_spec.rb
|
488
486
|
- spec/models/account_spec.rb
|
489
|
-
- spec/models/
|
490
|
-
- spec/models/
|
491
|
-
- spec/models/
|
487
|
+
- spec/models/host_volume_connection_spec.rb
|
488
|
+
- spec/models/user_spec.rb
|
489
|
+
- spec/models/capability_translation_spec.rb
|
490
|
+
- spec/models/volume_update_spec.rb
|
491
|
+
- spec/models/system_type_create_spec.rb
|
492
492
|
- spec/spec_helper.rb
|