autosde_openapi_client 1.1.6 → 1.1.10
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 +8 -0
- 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/lib/autosde_openapi_client/api/user_api.rb +321 -0
- data/lib/autosde_openapi_client/models/provisioning_strategy.rb +3 -3
- data/lib/autosde_openapi_client/models/user.rb +395 -0
- data/lib/autosde_openapi_client/models/user_create.rb +395 -0
- data/lib/autosde_openapi_client/models/user_update.rb +280 -0
- data/lib/autosde_openapi_client/version.rb +2 -2
- data/lib/autosde_openapi_client.rb +4 -0
- data/spec/api/user_api_spec.rb +85 -0
- 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
- metadata +85 -69
@@ -0,0 +1,85 @@
|
|
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
|
+
|
16
|
+
# Unit tests for AutosdeOpenapiClient::UserApi
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'UserApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@api_instance = AutosdeOpenapiClient::UserApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of UserApi' do
|
30
|
+
it 'should create an instance of UserApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(AutosdeOpenapiClient::UserApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for autosde_users_get
|
36
|
+
# @param [Hash] opts the optional parameters
|
37
|
+
# @return [Array<UserCreate>]
|
38
|
+
describe 'autosde_users_get test' do
|
39
|
+
it 'should work' do
|
40
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
# unit tests for autosde_users_pk_delete
|
45
|
+
# @param pk
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [Array<User>]
|
48
|
+
describe 'autosde_users_pk_delete test' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
# unit tests for autosde_users_pk_get
|
55
|
+
# @param pk
|
56
|
+
# @param [Hash] opts the optional parameters
|
57
|
+
# @return [Array<UserCreate>]
|
58
|
+
describe 'autosde_users_pk_get test' 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
|
+
# unit tests for autosde_users_pk_put
|
65
|
+
# @param pk
|
66
|
+
# @param user_update
|
67
|
+
# @param [Hash] opts the optional parameters
|
68
|
+
# @return [UserCreate]
|
69
|
+
describe 'autosde_users_pk_put test' do
|
70
|
+
it 'should work' do
|
71
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
# unit tests for autosde_users_post
|
76
|
+
# @param user_create
|
77
|
+
# @param [Hash] opts the optional parameters
|
78
|
+
# @return [UserCreate]
|
79
|
+
describe 'autosde_users_post test' do
|
80
|
+
it 'should work' do
|
81
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
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 AutosdeOpenapiClient::UserCreate
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::UserCreate do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::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(AutosdeOpenapiClient::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 AutosdeOpenapiClient::User
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::User do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::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(AutosdeOpenapiClient::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 AutosdeOpenapiClient::UserUpdate
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::UserUpdate do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::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(AutosdeOpenapiClient::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
|
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.1.
|
4
|
+
version: 1.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -137,6 +137,10 @@ files:
|
|
137
137
|
- docs/SystemType.md
|
138
138
|
- docs/SystemTypeApi.md
|
139
139
|
- docs/SystemTypeCreate.md
|
140
|
+
- docs/User.md
|
141
|
+
- docs/UserApi.md
|
142
|
+
- docs/UserCreate.md
|
143
|
+
- docs/UserUpdate.md
|
140
144
|
- docs/Volume.md
|
141
145
|
- docs/VolumeApi.md
|
142
146
|
- docs/VolumeCreate.md
|
@@ -172,6 +176,7 @@ files:
|
|
172
176
|
- lib/autosde_openapi_client/api/storage_resource_api.rb
|
173
177
|
- lib/autosde_openapi_client/api/storage_system_api.rb
|
174
178
|
- lib/autosde_openapi_client/api/system_type_api.rb
|
179
|
+
- lib/autosde_openapi_client/api/user_api.rb
|
175
180
|
- lib/autosde_openapi_client/api/volume_api.rb
|
176
181
|
- lib/autosde_openapi_client/api/volume_safe_delete_api.rb
|
177
182
|
- lib/autosde_openapi_client/api_client.rb
|
@@ -227,6 +232,9 @@ files:
|
|
227
232
|
- lib/autosde_openapi_client/models/storage_system_update.rb
|
228
233
|
- lib/autosde_openapi_client/models/system_type.rb
|
229
234
|
- lib/autosde_openapi_client/models/system_type_create.rb
|
235
|
+
- lib/autosde_openapi_client/models/user.rb
|
236
|
+
- lib/autosde_openapi_client/models/user_create.rb
|
237
|
+
- lib/autosde_openapi_client/models/user_update.rb
|
230
238
|
- lib/autosde_openapi_client/models/volume.rb
|
231
239
|
- lib/autosde_openapi_client/models/volume_create.rb
|
232
240
|
- lib/autosde_openapi_client/models/volume_response.rb
|
@@ -259,6 +267,7 @@ files:
|
|
259
267
|
- spec/api/storage_resource_api_spec.rb
|
260
268
|
- spec/api/storage_system_api_spec.rb
|
261
269
|
- spec/api/system_type_api_spec.rb
|
270
|
+
- spec/api/user_api_spec.rb
|
262
271
|
- spec/api/volume_api_spec.rb
|
263
272
|
- spec/api/volume_safe_delete_api_spec.rb
|
264
273
|
- spec/api_client_spec.rb
|
@@ -313,6 +322,9 @@ files:
|
|
313
322
|
- spec/models/storage_system_update_spec.rb
|
314
323
|
- spec/models/system_type_create_spec.rb
|
315
324
|
- spec/models/system_type_spec.rb
|
325
|
+
- spec/models/user_create_spec.rb
|
326
|
+
- spec/models/user_spec.rb
|
327
|
+
- spec/models/user_update_spec.rb
|
316
328
|
- spec/models/volume_create_spec.rb
|
317
329
|
- spec/models/volume_response_spec.rb
|
318
330
|
- spec/models/volume_safe_delete_create_spec.rb
|
@@ -344,89 +356,93 @@ signing_key:
|
|
344
356
|
specification_version: 4
|
345
357
|
summary: Site Manager API Ruby Gem
|
346
358
|
test_files:
|
347
|
-
- spec/api/storage_system_api_spec.rb
|
348
|
-
- spec/api/host_volume_connection_api_spec.rb
|
349
|
-
- spec/api/service_resource_attachment_api_spec.rb
|
350
359
|
- spec/api/native_capability_api_spec.rb
|
351
|
-
- spec/api/storage_host_volume_mapping_api_spec.rb
|
352
|
-
- spec/api/snapshot_api_spec.rb
|
353
|
-
- spec/api/authentication_api_spec.rb
|
354
|
-
- spec/api/profile_api_spec.rb
|
355
|
-
- spec/api/host_cluster_membership_api_spec.rb
|
356
|
-
- spec/api/storage_resource_api_spec.rb
|
357
360
|
- spec/api/host_cluster_api_spec.rb
|
361
|
+
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
362
|
+
- spec/api/host_api_spec.rb
|
363
|
+
- spec/api/address_api_spec.rb
|
364
|
+
- spec/api/host_volume_connection_api_spec.rb
|
358
365
|
- spec/api/capability_translation_api_spec.rb
|
359
|
-
- spec/api/
|
366
|
+
- spec/api/profile_api_spec.rb
|
367
|
+
- spec/api/auto_sde_project_api_spec.rb
|
360
368
|
- spec/api/volume_safe_delete_api_spec.rb
|
361
|
-
- spec/api/
|
362
|
-
- spec/api/auto_sde_role_api_spec.rb
|
363
|
-
- spec/api/host_api_spec.rb
|
364
|
-
- spec/api/account_api_spec.rb
|
365
|
-
- spec/api/system_type_api_spec.rb
|
366
|
-
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
369
|
+
- spec/api/service_api_spec.rb
|
367
370
|
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
371
|
+
- spec/api/storage_host_volume_mapping_api_spec.rb
|
368
372
|
- spec/api/provisioning_strategy_api_spec.rb
|
369
|
-
- spec/api/
|
370
|
-
- spec/api/
|
371
|
-
- spec/api/
|
372
|
-
- spec/api/
|
373
|
+
- spec/api/storage_host_api_spec.rb
|
374
|
+
- spec/api/storage_system_api_spec.rb
|
375
|
+
- spec/api/user_api_spec.rb
|
376
|
+
- spec/api/system_type_api_spec.rb
|
377
|
+
- spec/api/service_resource_attachment_api_spec.rb
|
378
|
+
- spec/api/auto_sde_role_api_spec.rb
|
379
|
+
- spec/api/authentication_api_spec.rb
|
373
380
|
- spec/api/abstract_capability_api_spec.rb
|
381
|
+
- spec/api/host_cluster_membership_api_spec.rb
|
382
|
+
- spec/api/volume_api_spec.rb
|
383
|
+
- spec/api/snapshot_api_spec.rb
|
384
|
+
- spec/api/account_api_spec.rb
|
385
|
+
- spec/api/storage_resource_api_spec.rb
|
386
|
+
- spec/api/job_api_spec.rb
|
374
387
|
- spec/api_client_spec.rb
|
375
388
|
- spec/configuration_spec.rb
|
376
|
-
- spec/models/host_cluster_response_spec.rb
|
377
|
-
- spec/models/authentication_spec.rb
|
378
|
-
- spec/models/storage_host_response_spec.rb
|
379
|
-
- spec/models/service_create_spec.rb
|
380
|
-
- spec/models/abstract_capability_spec.rb
|
381
|
-
- spec/models/storage_resource_create_spec.rb
|
382
|
-
- spec/models/snapshot_create_spec.rb
|
383
|
-
- spec/models/job_spec.rb
|
384
|
-
- spec/models/host_create_spec.rb
|
385
|
-
- spec/models/volume_update_spec.rb
|
386
|
-
- spec/models/volume_spec.rb
|
387
|
-
- spec/models/volume_safe_delete_spec.rb
|
388
|
-
- spec/models/storage_resource_response_spec.rb
|
389
|
-
- spec/models/volume_response_spec.rb
|
390
|
-
- spec/models/system_type_create_spec.rb
|
391
|
-
- spec/models/profile_spec.rb
|
392
|
-
- spec/models/capability_translation_create_spec.rb
|
393
|
-
- spec/models/snapshot_spec.rb
|
394
|
-
- spec/models/provisioning_strategy_spec.rb
|
395
389
|
- spec/models/service_spec.rb
|
396
|
-
- spec/models/
|
397
|
-
- spec/models/auto_sde_role_spec.rb
|
398
|
-
- spec/models/host_spec.rb
|
390
|
+
- spec/models/host_cluster_spec.rb
|
399
391
|
- spec/models/host_volume_connection_create_spec.rb
|
400
|
-
- spec/models/
|
401
|
-
- spec/models/
|
402
|
-
- spec/models/
|
392
|
+
- spec/models/profile_spec.rb
|
393
|
+
- spec/models/address_create_spec.rb
|
394
|
+
- spec/models/host_cluster_response_spec.rb
|
395
|
+
- spec/models/address_spec.rb
|
403
396
|
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
404
|
-
- spec/models/
|
405
|
-
- spec/models/
|
397
|
+
- spec/models/volume_update_spec.rb
|
398
|
+
- spec/models/provisioning_strategy_spec.rb
|
399
|
+
- spec/models/storage_host_volume_mapping_spec.rb
|
400
|
+
- spec/models/system_type_create_spec.rb
|
406
401
|
- spec/models/storage_host_volume_mapping_create_spec.rb
|
407
|
-
- spec/models/
|
408
|
-
- spec/models/
|
402
|
+
- spec/models/capability_translation_create_spec.rb
|
403
|
+
- spec/models/user_update_spec.rb
|
409
404
|
- spec/models/storage_resource_spec.rb
|
410
|
-
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
411
|
-
- spec/models/storage_host_spec.rb
|
412
|
-
- spec/models/storage_host_volume_mapping_response_spec.rb
|
413
|
-
- spec/models/volume_safe_delete_create_spec.rb
|
414
405
|
- spec/models/native_capability_spec.rb
|
415
|
-
- spec/models/
|
416
|
-
- spec/models/storage_system_update_spec.rb
|
417
|
-
- spec/models/storage_host_update_spec.rb
|
418
|
-
- spec/models/address_create_spec.rb
|
419
|
-
- spec/models/system_type_spec.rb
|
420
|
-
- spec/models/host_cluster_volume_mapping_spec.rb
|
421
|
-
- spec/models/account_post_response_spec.rb
|
422
|
-
- spec/models/service_abstract_capability_value_spec.rb
|
423
|
-
- spec/models/address_spec.rb
|
424
|
-
- spec/models/storage_system_spec.rb
|
425
|
-
- spec/models/storage_host_volume_mapping_spec.rb
|
426
|
-
- spec/models/auth_response_spec.rb
|
406
|
+
- spec/models/volume_response_spec.rb
|
427
407
|
- spec/models/storage_host_create_spec.rb
|
408
|
+
- spec/models/host_cluster_create_spec.rb
|
428
409
|
- spec/models/volume_create_spec.rb
|
429
|
-
- spec/models/
|
410
|
+
- spec/models/storage_host_volume_mapping_response_spec.rb
|
411
|
+
- spec/models/auto_sde_role_spec.rb
|
412
|
+
- spec/models/host_volume_connection_spec.rb
|
413
|
+
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
430
414
|
- spec/models/account_spec.rb
|
431
|
-
- spec/models/
|
415
|
+
- spec/models/storage_host_update_spec.rb
|
416
|
+
- spec/models/storage_system_spec.rb
|
417
|
+
- spec/models/storage_host_wwpn_candidates_spec.rb
|
418
|
+
- spec/models/account_post_response_spec.rb
|
419
|
+
- spec/models/storage_resource_create_spec.rb
|
420
|
+
- spec/models/volume_spec.rb
|
421
|
+
- spec/models/host_create_spec.rb
|
422
|
+
- spec/models/capability_translation_spec.rb
|
423
|
+
- spec/models/snapshot_create_spec.rb
|
424
|
+
- spec/models/abstract_capability_spec.rb
|
425
|
+
- spec/models/auth_response_spec.rb
|
426
|
+
- spec/models/host_cluster_volume_mapping_spec.rb
|
427
|
+
- spec/models/job_create_spec.rb
|
428
|
+
- spec/models/storage_resource_response_spec.rb
|
429
|
+
- spec/models/job_spec.rb
|
430
|
+
- spec/models/snapshot_spec.rb
|
431
|
+
- spec/models/user_create_spec.rb
|
432
|
+
- spec/models/storage_host_spec.rb
|
433
|
+
- spec/models/service_create_spec.rb
|
434
|
+
- spec/models/service_resource_attachment_spec.rb
|
435
|
+
- spec/models/authentication_spec.rb
|
436
|
+
- spec/models/user_spec.rb
|
437
|
+
- spec/models/storage_host_response_spec.rb
|
438
|
+
- spec/models/host_cluster_membership_spec.rb
|
439
|
+
- spec/models/service_abstract_capability_value_spec.rb
|
440
|
+
- spec/models/auto_sde_project_spec.rb
|
441
|
+
- spec/models/account_post_request_spec.rb
|
442
|
+
- spec/models/storage_system_create_spec.rb
|
443
|
+
- spec/models/volume_safe_delete_spec.rb
|
444
|
+
- spec/models/volume_safe_delete_create_spec.rb
|
445
|
+
- spec/models/host_spec.rb
|
446
|
+
- spec/models/system_type_spec.rb
|
447
|
+
- spec/models/storage_system_update_spec.rb
|
432
448
|
- spec/spec_helper.rb
|