eilam_test 1.1.12 → 1.1.13
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/README.md +15 -0
- data/docs/Event.md +32 -0
- data/docs/EventApi.md +276 -0
- data/docs/SystemType.md +1 -1
- data/docs/SystemTypeCreate.md +1 -1
- data/docs/User.md +38 -0
- data/docs/UserApi.md +346 -0
- data/docs/UserCreate.md +38 -0
- data/docs/UserUpdate.md +30 -0
- data/docs/ValidateSystem.md +26 -0
- data/docs/ValidateSystemApi.md +75 -0
- data/lib/eilam_test/api/event_api.rb +254 -0
- data/lib/eilam_test/api/user_api.rb +321 -0
- data/lib/eilam_test/api/validate_system_api.rb +83 -0
- data/lib/eilam_test/models/event.rb +289 -0
- data/lib/eilam_test/models/system_type.rb +3 -3
- data/lib/eilam_test/models/system_type_create.rb +3 -3
- data/lib/eilam_test/models/user.rb +395 -0
- data/lib/eilam_test/models/user_create.rb +395 -0
- data/lib/eilam_test/models/user_update.rb +280 -0
- data/lib/eilam_test/models/validate_system.rb +260 -0
- data/lib/eilam_test/version.rb +2 -2
- data/lib/eilam_test.rb +8 -0
- data/spec/api/event_api_spec.rb +74 -0
- data/spec/api/user_api_spec.rb +85 -0
- data/spec/api/validate_system_api_spec.rb +45 -0
- data/spec/models/event_spec.rb +76 -0
- data/spec/models/system_type_create_spec.rb +1 -1
- data/spec/models/system_type_spec.rb +1 -1
- data/spec/models/user_create_spec.rb +94 -0
- data/spec/models/user_spec.rb +94 -0
- data/spec/models/user_update_spec.rb +70 -0
- data/spec/models/validate_system_spec.rb +58 -0
- metadata +98 -66
@@ -0,0 +1,94 @@
|
|
1
|
+
=begin
|
2
|
+
#Site Manager API
|
3
|
+
|
4
|
+
#Site Manager API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: autosde@il.ibm.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for EilamTest::UserCreate
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe EilamTest::UserCreate do
|
21
|
+
let(:instance) { EilamTest::UserCreate.new }
|
22
|
+
|
23
|
+
describe 'test an instance of UserCreate' do
|
24
|
+
it 'should create an instance of UserCreate' do
|
25
|
+
expect(instance).to be_instance_of(EilamTest::UserCreate)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "date_joined"' 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
|
+
describe 'test attribute "email"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "first_name"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "is_active"' 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 "is_staff"' 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
|
+
|
58
|
+
describe 'test attribute "is_superuser"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "last_login"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "last_name"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "password"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe 'test attribute "username"' do
|
83
|
+
it 'should work' do
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe 'test attribute "uuid"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
end
|
@@ -0,0 +1,94 @@
|
|
1
|
+
=begin
|
2
|
+
#Site Manager API
|
3
|
+
|
4
|
+
#Site Manager API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: autosde@il.ibm.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for EilamTest::User
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe EilamTest::User do
|
21
|
+
let(:instance) { EilamTest::User.new }
|
22
|
+
|
23
|
+
describe 'test an instance of User' do
|
24
|
+
it 'should create an instance of User' do
|
25
|
+
expect(instance).to be_instance_of(EilamTest::User)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "date_joined"' 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
|
+
describe 'test attribute "email"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "first_name"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "is_active"' 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 "is_staff"' 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
|
+
|
58
|
+
describe 'test attribute "is_superuser"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "last_login"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "last_name"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "password"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe 'test attribute "username"' do
|
83
|
+
it 'should work' do
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe 'test attribute "uuid"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
=begin
|
2
|
+
#Site Manager API
|
3
|
+
|
4
|
+
#Site Manager API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: autosde@il.ibm.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for EilamTest::UserUpdate
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe EilamTest::UserUpdate do
|
21
|
+
let(:instance) { EilamTest::UserUpdate.new }
|
22
|
+
|
23
|
+
describe 'test an instance of UserUpdate' do
|
24
|
+
it 'should create an instance of UserUpdate' do
|
25
|
+
expect(instance).to be_instance_of(EilamTest::UserUpdate)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "email"' 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
|
+
describe 'test attribute "first_name"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "is_active"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "is_staff"' 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 "last_name"' 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
|
+
|
58
|
+
describe 'test attribute "password"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "username"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
=begin
|
2
|
+
#Site Manager API
|
3
|
+
|
4
|
+
#Site Manager API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: autosde@il.ibm.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for EilamTest::ValidateSystem
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe EilamTest::ValidateSystem do
|
21
|
+
let(:instance) { EilamTest::ValidateSystem.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ValidateSystem' do
|
24
|
+
it 'should create an instance of ValidateSystem' do
|
25
|
+
expect(instance).to be_instance_of(EilamTest::ValidateSystem)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "management_ip"' 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
|
+
describe 'test attribute "name"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "password"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "system_type"' 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 "user"' 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
|
+
|
58
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eilam_test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
@@ -80,6 +80,8 @@ files:
|
|
80
80
|
- docs/CapabilityTranslation.md
|
81
81
|
- docs/CapabilityTranslationApi.md
|
82
82
|
- docs/CapabilityTranslationCreate.md
|
83
|
+
- docs/Event.md
|
84
|
+
- docs/EventApi.md
|
83
85
|
- docs/Host.md
|
84
86
|
- docs/HostApi.md
|
85
87
|
- docs/HostCluster.md
|
@@ -136,6 +138,12 @@ files:
|
|
136
138
|
- docs/SystemType.md
|
137
139
|
- docs/SystemTypeApi.md
|
138
140
|
- docs/SystemTypeCreate.md
|
141
|
+
- docs/User.md
|
142
|
+
- docs/UserApi.md
|
143
|
+
- docs/UserCreate.md
|
144
|
+
- docs/UserUpdate.md
|
145
|
+
- docs/ValidateSystem.md
|
146
|
+
- docs/ValidateSystemApi.md
|
139
147
|
- docs/Volume.md
|
140
148
|
- docs/VolumeApi.md
|
141
149
|
- docs/VolumeCreate.md
|
@@ -154,6 +162,7 @@ files:
|
|
154
162
|
- lib/eilam_test/api/auto_sde_project_api.rb
|
155
163
|
- lib/eilam_test/api/auto_sde_role_api.rb
|
156
164
|
- lib/eilam_test/api/capability_translation_api.rb
|
165
|
+
- lib/eilam_test/api/event_api.rb
|
157
166
|
- lib/eilam_test/api/host_api.rb
|
158
167
|
- lib/eilam_test/api/host_cluster_api.rb
|
159
168
|
- lib/eilam_test/api/host_cluster_membership_api.rb
|
@@ -172,6 +181,8 @@ files:
|
|
172
181
|
- lib/eilam_test/api/storage_resource_api.rb
|
173
182
|
- lib/eilam_test/api/storage_system_api.rb
|
174
183
|
- lib/eilam_test/api/system_type_api.rb
|
184
|
+
- lib/eilam_test/api/user_api.rb
|
185
|
+
- lib/eilam_test/api/validate_system_api.rb
|
175
186
|
- lib/eilam_test/api/volume_api.rb
|
176
187
|
- lib/eilam_test/api/volume_safe_delete_api.rb
|
177
188
|
- lib/eilam_test/api_client.rb
|
@@ -189,6 +200,7 @@ files:
|
|
189
200
|
- lib/eilam_test/models/auto_sde_role.rb
|
190
201
|
- lib/eilam_test/models/capability_translation.rb
|
191
202
|
- lib/eilam_test/models/capability_translation_create.rb
|
203
|
+
- lib/eilam_test/models/event.rb
|
192
204
|
- lib/eilam_test/models/host.rb
|
193
205
|
- lib/eilam_test/models/host_cluster.rb
|
194
206
|
- lib/eilam_test/models/host_cluster_create.rb
|
@@ -227,6 +239,10 @@ files:
|
|
227
239
|
- lib/eilam_test/models/storage_system_update.rb
|
228
240
|
- lib/eilam_test/models/system_type.rb
|
229
241
|
- lib/eilam_test/models/system_type_create.rb
|
242
|
+
- lib/eilam_test/models/user.rb
|
243
|
+
- lib/eilam_test/models/user_create.rb
|
244
|
+
- lib/eilam_test/models/user_update.rb
|
245
|
+
- lib/eilam_test/models/validate_system.rb
|
230
246
|
- lib/eilam_test/models/volume.rb
|
231
247
|
- lib/eilam_test/models/volume_create.rb
|
232
248
|
- lib/eilam_test/models/volume_response.rb
|
@@ -241,6 +257,7 @@ files:
|
|
241
257
|
- spec/api/auto_sde_project_api_spec.rb
|
242
258
|
- spec/api/auto_sde_role_api_spec.rb
|
243
259
|
- spec/api/capability_translation_api_spec.rb
|
260
|
+
- spec/api/event_api_spec.rb
|
244
261
|
- spec/api/host_api_spec.rb
|
245
262
|
- spec/api/host_cluster_api_spec.rb
|
246
263
|
- spec/api/host_cluster_membership_api_spec.rb
|
@@ -259,6 +276,8 @@ files:
|
|
259
276
|
- spec/api/storage_resource_api_spec.rb
|
260
277
|
- spec/api/storage_system_api_spec.rb
|
261
278
|
- spec/api/system_type_api_spec.rb
|
279
|
+
- spec/api/user_api_spec.rb
|
280
|
+
- spec/api/validate_system_api_spec.rb
|
262
281
|
- spec/api/volume_api_spec.rb
|
263
282
|
- spec/api/volume_safe_delete_api_spec.rb
|
264
283
|
- spec/api_client_spec.rb
|
@@ -275,6 +294,7 @@ files:
|
|
275
294
|
- spec/models/auto_sde_role_spec.rb
|
276
295
|
- spec/models/capability_translation_create_spec.rb
|
277
296
|
- spec/models/capability_translation_spec.rb
|
297
|
+
- spec/models/event_spec.rb
|
278
298
|
- spec/models/host_cluster_create_spec.rb
|
279
299
|
- spec/models/host_cluster_membership_spec.rb
|
280
300
|
- spec/models/host_cluster_response_spec.rb
|
@@ -313,6 +333,10 @@ files:
|
|
313
333
|
- spec/models/storage_system_update_spec.rb
|
314
334
|
- spec/models/system_type_create_spec.rb
|
315
335
|
- spec/models/system_type_spec.rb
|
336
|
+
- spec/models/user_create_spec.rb
|
337
|
+
- spec/models/user_spec.rb
|
338
|
+
- spec/models/user_update_spec.rb
|
339
|
+
- spec/models/validate_system_spec.rb
|
316
340
|
- spec/models/volume_create_spec.rb
|
317
341
|
- spec/models/volume_response_spec.rb
|
318
342
|
- spec/models/volume_safe_delete_create_spec.rb
|
@@ -344,89 +368,97 @@ signing_key:
|
|
344
368
|
specification_version: 4
|
345
369
|
summary: Site Manager API Ruby Gem
|
346
370
|
test_files:
|
347
|
-
- spec/api/storage_system_api_spec.rb
|
348
|
-
- spec/api/capability_translation_api_spec.rb
|
349
|
-
- spec/api/authentication_api_spec.rb
|
350
|
-
- spec/api/abstract_capability_api_spec.rb
|
351
|
-
- spec/api/host_cluster_api_spec.rb
|
352
371
|
- spec/api/volume_api_spec.rb
|
353
|
-
- spec/api/
|
354
|
-
- spec/api/provisioning_strategy_api_spec.rb
|
355
|
-
- spec/api/address_api_spec.rb
|
356
|
-
- spec/api/host_volume_connection_api_spec.rb
|
357
|
-
- spec/api/system_type_api_spec.rb
|
372
|
+
- spec/api/validate_system_api_spec.rb
|
358
373
|
- spec/api/auto_sde_role_api_spec.rb
|
374
|
+
- spec/api/user_api_spec.rb
|
375
|
+
- spec/api/host_cluster_membership_api_spec.rb
|
376
|
+
- spec/api/storage_host_volume_mapping_api_spec.rb
|
359
377
|
- spec/api/native_capability_api_spec.rb
|
360
|
-
- spec/api/
|
378
|
+
- spec/api/host_cluster_api_spec.rb
|
379
|
+
- spec/api/capability_translation_api_spec.rb
|
380
|
+
- spec/api/address_api_spec.rb
|
381
|
+
- spec/api/storage_system_api_spec.rb
|
382
|
+
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
383
|
+
- spec/api/provisioning_strategy_api_spec.rb
|
384
|
+
- spec/api/job_api_spec.rb
|
361
385
|
- spec/api/host_api_spec.rb
|
362
386
|
- spec/api/service_api_spec.rb
|
363
|
-
- spec/api/
|
364
|
-
- spec/api/
|
365
|
-
- spec/api/job_api_spec.rb
|
366
|
-
- spec/api/storage_host_volume_mapping_api_spec.rb
|
367
|
-
- spec/api/storage_host_api_spec.rb
|
368
|
-
- spec/api/snapshot_api_spec.rb
|
387
|
+
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
388
|
+
- spec/api/event_api_spec.rb
|
369
389
|
- spec/api/account_api_spec.rb
|
390
|
+
- spec/api/authentication_api_spec.rb
|
391
|
+
- spec/api/host_volume_connection_api_spec.rb
|
370
392
|
- spec/api/service_resource_attachment_api_spec.rb
|
371
|
-
- spec/api/
|
393
|
+
- spec/api/storage_resource_api_spec.rb
|
394
|
+
- spec/api/profile_api_spec.rb
|
372
395
|
- spec/api/auto_sde_project_api_spec.rb
|
373
|
-
- spec/api/
|
396
|
+
- spec/api/snapshot_api_spec.rb
|
397
|
+
- spec/api/volume_safe_delete_api_spec.rb
|
398
|
+
- spec/api/abstract_capability_api_spec.rb
|
399
|
+
- spec/api/storage_host_api_spec.rb
|
400
|
+
- spec/api/system_type_api_spec.rb
|
374
401
|
- spec/api_client_spec.rb
|
375
402
|
- spec/configuration_spec.rb
|
376
|
-
- spec/models/
|
403
|
+
- spec/models/storage_system_create_spec.rb
|
404
|
+
- spec/models/storage_host_response_spec.rb
|
405
|
+
- spec/models/snapshot_create_spec.rb
|
406
|
+
- spec/models/event_spec.rb
|
407
|
+
- spec/models/capability_translation_create_spec.rb
|
408
|
+
- spec/models/validate_system_spec.rb
|
409
|
+
- spec/models/host_volume_connection_create_spec.rb
|
410
|
+
- spec/models/host_create_spec.rb
|
377
411
|
- spec/models/host_cluster_response_spec.rb
|
412
|
+
- spec/models/system_type_create_spec.rb
|
413
|
+
- spec/models/storage_resource_create_spec.rb
|
414
|
+
- spec/models/account_post_request_spec.rb
|
415
|
+
- spec/models/account_spec.rb
|
416
|
+
- spec/models/auto_sde_role_spec.rb
|
417
|
+
- spec/models/auto_sde_project_spec.rb
|
418
|
+
- spec/models/host_volume_connection_spec.rb
|
419
|
+
- spec/models/service_resource_attachment_spec.rb
|
420
|
+
- spec/models/authentication_spec.rb
|
421
|
+
- spec/models/service_spec.rb
|
422
|
+
- spec/models/host_spec.rb
|
378
423
|
- spec/models/system_type_spec.rb
|
379
|
-
- spec/models/
|
380
|
-
- spec/models/
|
424
|
+
- spec/models/service_abstract_capability_value_spec.rb
|
425
|
+
- spec/models/snapshot_spec.rb
|
426
|
+
- spec/models/host_cluster_create_spec.rb
|
427
|
+
- spec/models/volume_spec.rb
|
381
428
|
- spec/models/storage_host_volume_mapping_spec.rb
|
382
|
-
- spec/models/
|
429
|
+
- spec/models/volume_safe_delete_spec.rb
|
430
|
+
- spec/models/user_spec.rb
|
431
|
+
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
432
|
+
- spec/models/service_create_spec.rb
|
383
433
|
- spec/models/volume_safe_delete_create_spec.rb
|
384
|
-
- spec/models/auth_response_spec.rb
|
385
|
-
- spec/models/storage_system_spec.rb
|
386
434
|
- spec/models/volume_update_spec.rb
|
435
|
+
- spec/models/profile_spec.rb
|
436
|
+
- spec/models/abstract_capability_spec.rb
|
437
|
+
- spec/models/user_create_spec.rb
|
438
|
+
- spec/models/address_create_spec.rb
|
439
|
+
- spec/models/storage_host_wwpn_candidates_spec.rb
|
440
|
+
- spec/models/storage_system_spec.rb
|
441
|
+
- spec/models/storage_resource_response_spec.rb
|
387
442
|
- spec/models/storage_system_update_spec.rb
|
388
|
-
- spec/models/
|
389
|
-
- spec/models/
|
390
|
-
- spec/models/
|
391
|
-
- spec/models/
|
392
|
-
- spec/models/
|
443
|
+
- spec/models/storage_resource_spec.rb
|
444
|
+
- spec/models/storage_host_create_spec.rb
|
445
|
+
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
446
|
+
- spec/models/address_spec.rb
|
447
|
+
- spec/models/storage_host_volume_mapping_response_spec.rb
|
448
|
+
- spec/models/account_post_response_spec.rb
|
393
449
|
- spec/models/storage_host_update_spec.rb
|
394
|
-
- spec/models/
|
450
|
+
- spec/models/volume_response_spec.rb
|
451
|
+
- spec/models/auth_response_spec.rb
|
452
|
+
- spec/models/job_create_spec.rb
|
453
|
+
- spec/models/host_cluster_membership_spec.rb
|
454
|
+
- spec/models/user_update_spec.rb
|
395
455
|
- spec/models/native_capability_spec.rb
|
396
|
-
- spec/models/
|
397
|
-
- spec/models/storage_resource_create_spec.rb
|
398
|
-
- spec/models/host_cluster_spec.rb
|
399
|
-
- spec/models/snapshot_create_spec.rb
|
400
|
-
- spec/models/service_spec.rb
|
456
|
+
- spec/models/storage_host_volume_mapping_create_spec.rb
|
401
457
|
- spec/models/capability_translation_spec.rb
|
402
|
-
- spec/models/job_create_spec.rb
|
403
|
-
- spec/models/host_cluster_create_spec.rb
|
404
|
-
- spec/models/profile_spec.rb
|
405
|
-
- spec/models/auto_sde_project_spec.rb
|
406
|
-
- spec/models/storage_resource_spec.rb
|
407
|
-
- spec/models/authentication_spec.rb
|
408
|
-
- spec/models/host_volume_connection_spec.rb
|
409
|
-
- spec/models/system_type_create_spec.rb
|
410
|
-
- spec/models/address_create_spec.rb
|
411
|
-
- spec/models/storage_host_response_spec.rb
|
412
|
-
- spec/models/service_create_spec.rb
|
413
|
-
- spec/models/storage_host_volume_mapping_response_spec.rb
|
414
|
-
- spec/models/auto_sde_role_spec.rb
|
415
|
-
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
416
|
-
- spec/models/account_spec.rb
|
417
|
-
- spec/models/service_resource_attachment_spec.rb
|
418
|
-
- spec/models/snapshot_spec.rb
|
419
458
|
- spec/models/host_cluster_volume_mapping_spec.rb
|
420
|
-
- spec/models/
|
421
|
-
- spec/models/
|
422
|
-
- spec/models/
|
423
|
-
- spec/models/
|
424
|
-
- spec/models/
|
425
|
-
- spec/models/account_post_request_spec.rb
|
426
|
-
- spec/models/storage_host_wwpn_candidates_spec.rb
|
427
|
-
- spec/models/abstract_capability_spec.rb
|
428
|
-
- spec/models/storage_system_create_spec.rb
|
429
|
-
- spec/models/storage_host_create_spec.rb
|
430
|
-
- spec/models/host_spec.rb
|
431
|
-
- spec/models/storage_resource_response_spec.rb
|
459
|
+
- spec/models/storage_host_spec.rb
|
460
|
+
- spec/models/provisioning_strategy_spec.rb
|
461
|
+
- spec/models/volume_create_spec.rb
|
462
|
+
- spec/models/job_spec.rb
|
463
|
+
- spec/models/host_cluster_spec.rb
|
432
464
|
- spec/spec_helper.rb
|