autosde_openapi_client 1.0.44 → 1.0.48
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 +58 -46
- data/docs/AbstractCapabilityApi.md +4 -4
- data/docs/AccountApi.md +2 -2
- data/docs/AddressApi.md +2 -2
- data/docs/AutoSDEProjectApi.md +4 -4
- data/docs/AutoSDERoleApi.md +4 -4
- data/docs/CapabilityTranslationApi.md +2 -2
- data/docs/HostApi.md +2 -2
- data/docs/HostCluster.md +32 -0
- data/docs/HostClusterApi.md +276 -0
- data/docs/HostClusterCreate.md +28 -0
- data/docs/HostClusterMembership.md +24 -0
- data/docs/HostClusterMembershipApi.md +276 -0
- data/docs/HostVolumeConnectionApi.md +2 -2
- data/docs/NativeCapabilityApi.md +2 -2
- data/docs/ProfileApi.md +4 -4
- data/docs/ProvisioningStrategyApi.md +2 -2
- data/docs/ServiceApi.md +2 -2
- data/docs/ServiceResourceAttachmentApi.md +2 -2
- data/docs/SnapshotApi.md +2 -2
- data/docs/StorageResourceApi.md +2 -2
- data/docs/StorageSystemApi.md +8 -8
- data/docs/StorageSystemUpdate.md +24 -0
- data/docs/SystemTypeApi.md +2 -2
- data/docs/VolumeApi.md +2 -2
- data/docs/VolumeSafeDeleteApi.md +2 -2
- data/lib/autosde_openapi_client/api/abstract_capability_api.rb +4 -4
- data/lib/autosde_openapi_client/api/account_api.rb +2 -2
- data/lib/autosde_openapi_client/api/address_api.rb +2 -2
- data/lib/autosde_openapi_client/api/auto_sde_project_api.rb +4 -4
- data/lib/autosde_openapi_client/api/auto_sde_role_api.rb +4 -4
- data/lib/autosde_openapi_client/api/capability_translation_api.rb +2 -2
- data/lib/autosde_openapi_client/api/host_api.rb +2 -2
- data/lib/autosde_openapi_client/api/host_cluster_api.rb +254 -0
- data/lib/autosde_openapi_client/api/host_cluster_membership_api.rb +254 -0
- data/lib/autosde_openapi_client/api/host_volume_connection_api.rb +2 -2
- data/lib/autosde_openapi_client/api/native_capability_api.rb +2 -2
- data/lib/autosde_openapi_client/api/profile_api.rb +4 -4
- data/lib/autosde_openapi_client/api/provisioning_strategy_api.rb +2 -2
- data/lib/autosde_openapi_client/api/service_api.rb +2 -2
- data/lib/autosde_openapi_client/api/service_resource_attachment_api.rb +2 -2
- data/lib/autosde_openapi_client/api/snapshot_api.rb +2 -2
- data/lib/autosde_openapi_client/api/storage_resource_api.rb +2 -2
- data/lib/autosde_openapi_client/api/storage_system_api.rb +11 -11
- data/lib/autosde_openapi_client/api/system_type_api.rb +2 -2
- data/lib/autosde_openapi_client/api/volume_api.rb +2 -2
- data/lib/autosde_openapi_client/api/volume_safe_delete_api.rb +2 -2
- data/lib/autosde_openapi_client/models/abstract_capability.rb +1 -1
- data/lib/autosde_openapi_client/models/host_cluster.rb +388 -0
- data/lib/autosde_openapi_client/models/host_cluster_create.rb +329 -0
- data/lib/autosde_openapi_client/models/host_cluster_membership.rb +287 -0
- data/lib/autosde_openapi_client/models/storage_system_update.rb +265 -0
- data/lib/autosde_openapi_client/version.rb +2 -2
- data/lib/autosde_openapi_client.rb +6 -0
- data/spec/api/host_cluster_api_spec.rb +74 -0
- data/spec/api/host_cluster_membership_api_spec.rb +74 -0
- data/spec/api/storage_system_api_spec.rb +1 -1
- data/spec/models/host_cluster_create_spec.rb +64 -0
- data/spec/models/host_cluster_membership_spec.rb +56 -0
- data/spec/models/host_cluster_spec.rb +80 -0
- data/spec/models/storage_system_update_spec.rb +52 -0
- metadata +81 -57
@@ -63,7 +63,7 @@ describe 'StorageSystemApi' do
|
|
63
63
|
|
64
64
|
# unit tests for storage_systems_pk_put
|
65
65
|
# @param pk
|
66
|
-
# @param
|
66
|
+
# @param storage_system_update
|
67
67
|
# @param [Hash] opts the optional parameters
|
68
68
|
# @return [StorageSystem]
|
69
69
|
describe 'storage_systems_pk_put test' do
|
@@ -0,0 +1,64 @@
|
|
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::HostClusterCreate
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::HostClusterCreate do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::HostClusterCreate.new }
|
22
|
+
|
23
|
+
describe 'test an instance of HostClusterCreate' do
|
24
|
+
it 'should create an instance of HostClusterCreate' do
|
25
|
+
expect(instance).to be_instance_of(AutosdeOpenapiClient::HostClusterCreate)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "name"' 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 "owner_id"' 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 "owner_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 "protocol"' 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 "status"' 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 "storage_system"' 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
|
+
end
|
@@ -0,0 +1,56 @@
|
|
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::HostClusterMembership
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::HostClusterMembership do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::HostClusterMembership.new }
|
22
|
+
|
23
|
+
describe 'test an instance of HostClusterMembership' do
|
24
|
+
it 'should create an instance of HostClusterMembership' do
|
25
|
+
expect(instance).to be_instance_of(AutosdeOpenapiClient::HostClusterMembership)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "cluster"' 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 "component_state"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["PENDING_CREATION", "CREATED", "DELETED", "PENDING_DELETION", "MODIFICATION", "PENDING_MODIFICATION"])
|
38
|
+
# validator.allowable_values.each do |value|
|
39
|
+
# expect { instance.component_state = value }.not_to raise_error
|
40
|
+
# end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
describe 'test attribute "host"' do
|
45
|
+
it 'should work' do
|
46
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe 'test attribute "uuid"' do
|
51
|
+
it 'should work' do
|
52
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
@@ -0,0 +1,80 @@
|
|
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::HostCluster
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::HostCluster do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::HostCluster.new }
|
22
|
+
|
23
|
+
describe 'test an instance of HostCluster' do
|
24
|
+
it 'should create an instance of HostCluster' do
|
25
|
+
expect(instance).to be_instance_of(AutosdeOpenapiClient::HostCluster)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "component_state"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["PENDING_CREATION", "CREATED", "DELETED", "PENDING_DELETION", "MODIFICATION", "PENDING_MODIFICATION"])
|
32
|
+
# validator.allowable_values.each do |value|
|
33
|
+
# expect { instance.component_state = value }.not_to raise_error
|
34
|
+
# end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe 'test attribute "name"' 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
|
+
describe 'test attribute "owner_id"' do
|
45
|
+
it 'should work' do
|
46
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe 'test attribute "owner_name"' do
|
51
|
+
it 'should work' do
|
52
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe 'test attribute "protocol"' do
|
57
|
+
it 'should work' do
|
58
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe 'test attribute "status"' do
|
63
|
+
it 'should work' do
|
64
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
describe 'test attribute "storage_system"' do
|
69
|
+
it 'should work' do
|
70
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe 'test attribute "uuid"' do
|
75
|
+
it 'should work' do
|
76
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
end
|
@@ -0,0 +1,52 @@
|
|
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::StorageSystemUpdate
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::StorageSystemUpdate do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::StorageSystemUpdate.new }
|
22
|
+
|
23
|
+
describe 'test an instance of StorageSystemUpdate' do
|
24
|
+
it 'should create an instance of StorageSystemUpdate' do
|
25
|
+
expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageSystemUpdate)
|
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 "user"' 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
|
+
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.0.
|
4
|
+
version: 1.0.48
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
11
|
+
date: 2021-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -82,6 +82,11 @@ files:
|
|
82
82
|
- docs/CapabilityTranslationCreate.md
|
83
83
|
- docs/Host.md
|
84
84
|
- docs/HostApi.md
|
85
|
+
- docs/HostCluster.md
|
86
|
+
- docs/HostClusterApi.md
|
87
|
+
- docs/HostClusterCreate.md
|
88
|
+
- docs/HostClusterMembership.md
|
89
|
+
- docs/HostClusterMembershipApi.md
|
85
90
|
- docs/HostCreate.md
|
86
91
|
- docs/HostVolumeConnection.md
|
87
92
|
- docs/HostVolumeConnectionApi.md
|
@@ -122,6 +127,7 @@ files:
|
|
122
127
|
- docs/StorageSystem.md
|
123
128
|
- docs/StorageSystemApi.md
|
124
129
|
- docs/StorageSystemCreate.md
|
130
|
+
- docs/StorageSystemUpdate.md
|
125
131
|
- docs/SystemType.md
|
126
132
|
- docs/SystemTypeApi.md
|
127
133
|
- docs/SystemTypeCreate.md
|
@@ -143,6 +149,8 @@ files:
|
|
143
149
|
- lib/autosde_openapi_client/api/auto_sde_role_api.rb
|
144
150
|
- lib/autosde_openapi_client/api/capability_translation_api.rb
|
145
151
|
- lib/autosde_openapi_client/api/host_api.rb
|
152
|
+
- lib/autosde_openapi_client/api/host_cluster_api.rb
|
153
|
+
- lib/autosde_openapi_client/api/host_cluster_membership_api.rb
|
146
154
|
- lib/autosde_openapi_client/api/host_volume_connection_api.rb
|
147
155
|
- lib/autosde_openapi_client/api/job_api.rb
|
148
156
|
- lib/autosde_openapi_client/api/native_capability_api.rb
|
@@ -175,6 +183,9 @@ files:
|
|
175
183
|
- lib/autosde_openapi_client/models/capability_translation.rb
|
176
184
|
- lib/autosde_openapi_client/models/capability_translation_create.rb
|
177
185
|
- lib/autosde_openapi_client/models/host.rb
|
186
|
+
- lib/autosde_openapi_client/models/host_cluster.rb
|
187
|
+
- lib/autosde_openapi_client/models/host_cluster_create.rb
|
188
|
+
- lib/autosde_openapi_client/models/host_cluster_membership.rb
|
178
189
|
- lib/autosde_openapi_client/models/host_create.rb
|
179
190
|
- lib/autosde_openapi_client/models/host_volume_connection.rb
|
180
191
|
- lib/autosde_openapi_client/models/host_volume_connection_create.rb
|
@@ -202,6 +213,7 @@ files:
|
|
202
213
|
- lib/autosde_openapi_client/models/storage_resource_response.rb
|
203
214
|
- lib/autosde_openapi_client/models/storage_system.rb
|
204
215
|
- lib/autosde_openapi_client/models/storage_system_create.rb
|
216
|
+
- lib/autosde_openapi_client/models/storage_system_update.rb
|
205
217
|
- lib/autosde_openapi_client/models/system_type.rb
|
206
218
|
- lib/autosde_openapi_client/models/system_type_create.rb
|
207
219
|
- lib/autosde_openapi_client/models/volume.rb
|
@@ -219,6 +231,8 @@ files:
|
|
219
231
|
- spec/api/auto_sde_role_api_spec.rb
|
220
232
|
- spec/api/capability_translation_api_spec.rb
|
221
233
|
- spec/api/host_api_spec.rb
|
234
|
+
- spec/api/host_cluster_api_spec.rb
|
235
|
+
- spec/api/host_cluster_membership_api_spec.rb
|
222
236
|
- spec/api/host_volume_connection_api_spec.rb
|
223
237
|
- spec/api/job_api_spec.rb
|
224
238
|
- spec/api/native_capability_api_spec.rb
|
@@ -249,6 +263,9 @@ files:
|
|
249
263
|
- spec/models/auto_sde_role_spec.rb
|
250
264
|
- spec/models/capability_translation_create_spec.rb
|
251
265
|
- spec/models/capability_translation_spec.rb
|
266
|
+
- spec/models/host_cluster_create_spec.rb
|
267
|
+
- spec/models/host_cluster_membership_spec.rb
|
268
|
+
- spec/models/host_cluster_spec.rb
|
252
269
|
- spec/models/host_create_spec.rb
|
253
270
|
- spec/models/host_spec.rb
|
254
271
|
- spec/models/host_volume_connection_create_spec.rb
|
@@ -277,6 +294,7 @@ files:
|
|
277
294
|
- spec/models/storage_resource_spec.rb
|
278
295
|
- spec/models/storage_system_create_spec.rb
|
279
296
|
- spec/models/storage_system_spec.rb
|
297
|
+
- spec/models/storage_system_update_spec.rb
|
280
298
|
- spec/models/system_type_create_spec.rb
|
281
299
|
- spec/models/system_type_spec.rb
|
282
300
|
- spec/models/volume_create_spec.rb
|
@@ -310,78 +328,84 @@ signing_key:
|
|
310
328
|
specification_version: 4
|
311
329
|
summary: Site Manager API Ruby Gem
|
312
330
|
test_files:
|
313
|
-
- spec/api/
|
314
|
-
- spec/api/
|
315
|
-
- spec/api/
|
316
|
-
- spec/api/
|
331
|
+
- spec/api/snapshot_api_spec.rb
|
332
|
+
- spec/api/auto_sde_role_api_spec.rb
|
333
|
+
- spec/api/host_cluster_membership_api_spec.rb
|
334
|
+
- spec/api/service_api_spec.rb
|
317
335
|
- spec/api/volume_api_spec.rb
|
336
|
+
- spec/api/provisioning_strategy_api_spec.rb
|
337
|
+
- spec/api/system_type_api_spec.rb
|
338
|
+
- spec/api/native_capability_api_spec.rb
|
339
|
+
- spec/api/capability_translation_api_spec.rb
|
318
340
|
- spec/api/volume_safe_delete_api_spec.rb
|
319
|
-
- spec/api/service_api_spec.rb
|
320
|
-
- spec/api/auto_sde_project_api_spec.rb
|
321
|
-
- spec/api/profile_api_spec.rb
|
322
|
-
- spec/api/snapshot_api_spec.rb
|
323
|
-
- spec/api/host_volume_connection_api_spec.rb
|
324
341
|
- spec/api/storage_host_volume_mapping_api_spec.rb
|
342
|
+
- spec/api/profile_api_spec.rb
|
343
|
+
- spec/api/abstract_capability_api_spec.rb
|
325
344
|
- spec/api/service_resource_attachment_api_spec.rb
|
326
|
-
- spec/api/
|
327
|
-
- spec/api/
|
328
|
-
- spec/api/
|
345
|
+
- spec/api/job_api_spec.rb
|
346
|
+
- spec/api/host_cluster_api_spec.rb
|
347
|
+
- spec/api/host_volume_connection_api_spec.rb
|
329
348
|
- spec/api/host_api_spec.rb
|
330
|
-
- spec/api/auto_sde_role_api_spec.rb
|
331
349
|
- spec/api/address_api_spec.rb
|
332
|
-
- spec/api/
|
350
|
+
- spec/api/authentication_api_spec.rb
|
351
|
+
- spec/api/auto_sde_project_api_spec.rb
|
333
352
|
- spec/api/account_api_spec.rb
|
334
|
-
- spec/api/
|
335
|
-
- spec/api/
|
336
|
-
- spec/api/
|
353
|
+
- spec/api/storage_system_api_spec.rb
|
354
|
+
- spec/api/storage_host_api_spec.rb
|
355
|
+
- spec/api/storage_resource_api_spec.rb
|
356
|
+
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
337
357
|
- spec/api_client_spec.rb
|
338
358
|
- spec/configuration_spec.rb
|
339
|
-
- spec/models/
|
340
|
-
- spec/models/
|
341
|
-
- spec/models/
|
342
|
-
- spec/models/
|
343
|
-
- spec/models/volume_response_spec.rb
|
344
|
-
- spec/models/storage_host_response_spec.rb
|
345
|
-
- spec/models/address_create_spec.rb
|
359
|
+
- spec/models/host_cluster_create_spec.rb
|
360
|
+
- spec/models/auth_response_spec.rb
|
361
|
+
- spec/models/storage_system_spec.rb
|
362
|
+
- spec/models/capability_translation_create_spec.rb
|
346
363
|
- spec/models/service_resource_attachment_spec.rb
|
364
|
+
- spec/models/storage_host_wwpn_candidates_spec.rb
|
365
|
+
- spec/models/storage_host_create_spec.rb
|
366
|
+
- spec/models/abstract_capability_spec.rb
|
367
|
+
- spec/models/storage_host_update_spec.rb
|
368
|
+
- spec/models/storage_host_spec.rb
|
369
|
+
- spec/models/host_volume_connection_spec.rb
|
370
|
+
- spec/models/service_abstract_capability_value_spec.rb
|
371
|
+
- spec/models/job_spec.rb
|
372
|
+
- spec/models/profile_spec.rb
|
347
373
|
- spec/models/volume_safe_delete_create_spec.rb
|
348
|
-
- spec/models/
|
349
|
-
- spec/models/
|
374
|
+
- spec/models/capability_translation_spec.rb
|
375
|
+
- spec/models/job_create_spec.rb
|
376
|
+
- spec/models/volume_response_spec.rb
|
377
|
+
- spec/models/storage_resource_create_spec.rb
|
378
|
+
- spec/models/volume_safe_delete_spec.rb
|
379
|
+
- spec/models/host_create_spec.rb
|
350
380
|
- spec/models/storage_resource_spec.rb
|
351
|
-
- spec/models/
|
352
|
-
- spec/models/
|
381
|
+
- spec/models/host_cluster_membership_spec.rb
|
382
|
+
- spec/models/address_spec.rb
|
383
|
+
- spec/models/storage_system_update_spec.rb
|
384
|
+
- spec/models/auto_sde_project_spec.rb
|
353
385
|
- spec/models/service_spec.rb
|
386
|
+
- spec/models/storage_host_response_spec.rb
|
354
387
|
- spec/models/authentication_spec.rb
|
355
|
-
- spec/models/storage_system_spec.rb
|
356
|
-
- spec/models/storage_host_update_spec.rb
|
357
|
-
- spec/models/storage_host_volume_mapping_spec.rb
|
358
|
-
- spec/models/service_abstract_capability_value_spec.rb
|
359
|
-
- spec/models/storage_host_wwpn_candidates_spec.rb
|
360
|
-
- spec/models/capability_translation_create_spec.rb
|
361
|
-
- spec/models/snapshot_create_spec.rb
|
362
|
-
- spec/models/auto_sde_role_spec.rb
|
363
|
-
- spec/models/system_type_create_spec.rb
|
364
388
|
- spec/models/account_post_request_spec.rb
|
365
|
-
- spec/models/
|
366
|
-
- spec/models/
|
389
|
+
- spec/models/volume_create_spec.rb
|
390
|
+
- spec/models/account_post_response_spec.rb
|
391
|
+
- spec/models/storage_host_volume_mapping_response_spec.rb
|
392
|
+
- spec/models/storage_host_volume_mapping_create_spec.rb
|
393
|
+
- spec/models/storage_resource_response_spec.rb
|
367
394
|
- spec/models/provisioning_strategy_spec.rb
|
368
|
-
- spec/models/job_spec.rb
|
369
395
|
- spec/models/snapshot_spec.rb
|
396
|
+
- spec/models/auto_sde_role_spec.rb
|
397
|
+
- spec/models/address_create_spec.rb
|
370
398
|
- spec/models/service_create_spec.rb
|
371
|
-
- spec/models/
|
372
|
-
- spec/models/
|
373
|
-
- spec/models/
|
374
|
-
- spec/models/
|
375
|
-
- spec/models/
|
376
|
-
- spec/models/
|
377
|
-
- spec/models/
|
378
|
-
- spec/models/
|
399
|
+
- spec/models/storage_host_volume_mapping_spec.rb
|
400
|
+
- spec/models/snapshot_create_spec.rb
|
401
|
+
- spec/models/host_volume_connection_create_spec.rb
|
402
|
+
- spec/models/storage_system_create_spec.rb
|
403
|
+
- spec/models/system_type_create_spec.rb
|
404
|
+
- spec/models/host_cluster_spec.rb
|
405
|
+
- spec/models/native_capability_spec.rb
|
406
|
+
- spec/models/host_spec.rb
|
407
|
+
- spec/models/volume_spec.rb
|
408
|
+
- spec/models/account_spec.rb
|
379
409
|
- spec/models/volume_update_spec.rb
|
380
|
-
- spec/models/
|
381
|
-
- spec/models/account_post_response_spec.rb
|
382
|
-
- spec/models/host_create_spec.rb
|
383
|
-
- spec/models/address_spec.rb
|
384
|
-
- spec/models/profile_spec.rb
|
385
|
-
- spec/models/job_create_spec.rb
|
386
|
-
- spec/models/auth_response_spec.rb
|
410
|
+
- spec/models/system_type_spec.rb
|
387
411
|
- spec/spec_helper.rb
|