autosde_openapi_client 1.2.11 → 1.2.12
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/CapabilityTranslation.md +2 -2
- data/docs/CapabilityTranslationCreate.md +2 -2
- data/lib/autosde_openapi_client/models/capability_translation.rb +13 -13
- data/lib/autosde_openapi_client/models/capability_translation_create.rb +13 -13
- data/lib/autosde_openapi_client/version.rb +2 -2
- data/spec/models/capability_translation_create_spec.rb +2 -2
- data/spec/models/capability_translation_spec.rb +3 -3
- 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: 163f320c00214a0c01b22883976ebde3f8cf24c51110742e4aba8e082e55d91b
|
|
4
|
+
data.tar.gz: b7286a44f54c257722734d80c627d6576e07bd9ffa65ba9e186401d5f5c2fccd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c55a156700c571224360cfd57b45f42d960da8dcb9dd60a19c7ddb51adbc62587e7650a57265ee7137106004560b191d96d50bb95fd4c6e582a56adcc01a2c08
|
|
7
|
+
data.tar.gz: b8183ac245606f0de06ddcfd983140a264c24bef71bb280c0c04521db502891f19b188004b1507422f4f67245f29c8b25ca36b5cc750b4e056191bf5085d19f1
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **abstract_capability** | [**AbstractCapability**](AbstractCapability.md) | | [optional] |
|
|
8
8
|
| **abstract_capability_name** | **String** | abstract_capability_name | [optional] |
|
|
9
|
-
| **default_value** | **String** | default_value | [optional][default to ' '] |
|
|
10
9
|
| **native_capability** | [**NativeCapability**](NativeCapability.md) | | [optional] |
|
|
11
10
|
| **native_capability_name** | **String** | native_capability_name | [optional] |
|
|
11
|
+
| **native_default_value** | **String** | native_default_value | [optional][default to ' '] |
|
|
12
12
|
| **published** | **Boolean** | published | [optional] |
|
|
13
13
|
| **system_type_id** | **String** | system_type_id | [optional] |
|
|
14
14
|
| **to_abstract_value_mapper** | **String** | Maximum value length is 32 characters. | [optional] |
|
|
@@ -23,9 +23,9 @@ require 'autosde_openapi_client'
|
|
|
23
23
|
instance = AutosdeOpenapiClient::CapabilityTranslation.new(
|
|
24
24
|
abstract_capability: null,
|
|
25
25
|
abstract_capability_name: null,
|
|
26
|
-
default_value: null,
|
|
27
26
|
native_capability: null,
|
|
28
27
|
native_capability_name: null,
|
|
28
|
+
native_default_value: null,
|
|
29
29
|
published: null,
|
|
30
30
|
system_type_id: null,
|
|
31
31
|
to_abstract_value_mapper: null,
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **abstract_capability_name** | **String** | abstract_capability_name | [optional] |
|
|
8
|
-
| **default_value** | **String** | default_value | [optional][default to ' '] |
|
|
9
8
|
| **native_capability_name** | **String** | native_capability_name | [optional] |
|
|
9
|
+
| **native_default_value** | **String** | native_default_value | [optional][default to ' '] |
|
|
10
10
|
| **published** | **Boolean** | published | [optional] |
|
|
11
11
|
| **system_type_id** | **String** | system_type_id | [optional] |
|
|
12
12
|
| **to_abstract_value_mapper** | **String** | Maximum value length is 32 characters. | [optional] |
|
|
@@ -20,8 +20,8 @@ require 'autosde_openapi_client'
|
|
|
20
20
|
|
|
21
21
|
instance = AutosdeOpenapiClient::CapabilityTranslationCreate.new(
|
|
22
22
|
abstract_capability_name: null,
|
|
23
|
-
default_value: null,
|
|
24
23
|
native_capability_name: null,
|
|
24
|
+
native_default_value: null,
|
|
25
25
|
published: null,
|
|
26
26
|
system_type_id: null,
|
|
27
27
|
to_abstract_value_mapper: null,
|
|
@@ -21,14 +21,14 @@ module AutosdeOpenapiClient
|
|
|
21
21
|
# abstract_capability_name
|
|
22
22
|
attr_accessor :abstract_capability_name
|
|
23
23
|
|
|
24
|
-
# default_value
|
|
25
|
-
attr_accessor :default_value
|
|
26
|
-
|
|
27
24
|
attr_accessor :native_capability
|
|
28
25
|
|
|
29
26
|
# native_capability_name
|
|
30
27
|
attr_accessor :native_capability_name
|
|
31
28
|
|
|
29
|
+
# native_default_value
|
|
30
|
+
attr_accessor :native_default_value
|
|
31
|
+
|
|
32
32
|
# published
|
|
33
33
|
attr_accessor :published
|
|
34
34
|
|
|
@@ -49,9 +49,9 @@ module AutosdeOpenapiClient
|
|
|
49
49
|
{
|
|
50
50
|
:'abstract_capability' => :'abstract_capability',
|
|
51
51
|
:'abstract_capability_name' => :'abstract_capability_name',
|
|
52
|
-
:'default_value' => :'default_value',
|
|
53
52
|
:'native_capability' => :'native_capability',
|
|
54
53
|
:'native_capability_name' => :'native_capability_name',
|
|
54
|
+
:'native_default_value' => :'native_default_value',
|
|
55
55
|
:'published' => :'published',
|
|
56
56
|
:'system_type_id' => :'system_type_id',
|
|
57
57
|
:'to_abstract_value_mapper' => :'to_abstract_value_mapper',
|
|
@@ -70,9 +70,9 @@ module AutosdeOpenapiClient
|
|
|
70
70
|
{
|
|
71
71
|
:'abstract_capability' => :'AbstractCapability',
|
|
72
72
|
:'abstract_capability_name' => :'String',
|
|
73
|
-
:'default_value' => :'String',
|
|
74
73
|
:'native_capability' => :'NativeCapability',
|
|
75
74
|
:'native_capability_name' => :'String',
|
|
75
|
+
:'native_default_value' => :'String',
|
|
76
76
|
:'published' => :'Boolean',
|
|
77
77
|
:'system_type_id' => :'String',
|
|
78
78
|
:'to_abstract_value_mapper' => :'String',
|
|
@@ -110,12 +110,6 @@ module AutosdeOpenapiClient
|
|
|
110
110
|
self.abstract_capability_name = attributes[:'abstract_capability_name']
|
|
111
111
|
end
|
|
112
112
|
|
|
113
|
-
if attributes.key?(:'default_value')
|
|
114
|
-
self.default_value = attributes[:'default_value']
|
|
115
|
-
else
|
|
116
|
-
self.default_value = ' '
|
|
117
|
-
end
|
|
118
|
-
|
|
119
113
|
if attributes.key?(:'native_capability')
|
|
120
114
|
self.native_capability = attributes[:'native_capability']
|
|
121
115
|
end
|
|
@@ -124,6 +118,12 @@ module AutosdeOpenapiClient
|
|
|
124
118
|
self.native_capability_name = attributes[:'native_capability_name']
|
|
125
119
|
end
|
|
126
120
|
|
|
121
|
+
if attributes.key?(:'native_default_value')
|
|
122
|
+
self.native_default_value = attributes[:'native_default_value']
|
|
123
|
+
else
|
|
124
|
+
self.native_default_value = ' '
|
|
125
|
+
end
|
|
126
|
+
|
|
127
127
|
if attributes.key?(:'published')
|
|
128
128
|
self.published = attributes[:'published']
|
|
129
129
|
end
|
|
@@ -195,9 +195,9 @@ module AutosdeOpenapiClient
|
|
|
195
195
|
self.class == o.class &&
|
|
196
196
|
abstract_capability == o.abstract_capability &&
|
|
197
197
|
abstract_capability_name == o.abstract_capability_name &&
|
|
198
|
-
default_value == o.default_value &&
|
|
199
198
|
native_capability == o.native_capability &&
|
|
200
199
|
native_capability_name == o.native_capability_name &&
|
|
200
|
+
native_default_value == o.native_default_value &&
|
|
201
201
|
published == o.published &&
|
|
202
202
|
system_type_id == o.system_type_id &&
|
|
203
203
|
to_abstract_value_mapper == o.to_abstract_value_mapper &&
|
|
@@ -214,7 +214,7 @@ module AutosdeOpenapiClient
|
|
|
214
214
|
# Calculates hash code according to all attributes.
|
|
215
215
|
# @return [Integer] Hash code
|
|
216
216
|
def hash
|
|
217
|
-
[abstract_capability, abstract_capability_name,
|
|
217
|
+
[abstract_capability, abstract_capability_name, native_capability, native_capability_name, native_default_value, published, system_type_id, to_abstract_value_mapper, to_native_value_mapper, uuid].hash
|
|
218
218
|
end
|
|
219
219
|
|
|
220
220
|
# Builds the object from hash
|
|
@@ -19,12 +19,12 @@ module AutosdeOpenapiClient
|
|
|
19
19
|
# abstract_capability_name
|
|
20
20
|
attr_accessor :abstract_capability_name
|
|
21
21
|
|
|
22
|
-
# default_value
|
|
23
|
-
attr_accessor :default_value
|
|
24
|
-
|
|
25
22
|
# native_capability_name
|
|
26
23
|
attr_accessor :native_capability_name
|
|
27
24
|
|
|
25
|
+
# native_default_value
|
|
26
|
+
attr_accessor :native_default_value
|
|
27
|
+
|
|
28
28
|
# published
|
|
29
29
|
attr_accessor :published
|
|
30
30
|
|
|
@@ -44,8 +44,8 @@ module AutosdeOpenapiClient
|
|
|
44
44
|
def self.attribute_map
|
|
45
45
|
{
|
|
46
46
|
:'abstract_capability_name' => :'abstract_capability_name',
|
|
47
|
-
:'default_value' => :'default_value',
|
|
48
47
|
:'native_capability_name' => :'native_capability_name',
|
|
48
|
+
:'native_default_value' => :'native_default_value',
|
|
49
49
|
:'published' => :'published',
|
|
50
50
|
:'system_type_id' => :'system_type_id',
|
|
51
51
|
:'to_abstract_value_mapper' => :'to_abstract_value_mapper',
|
|
@@ -63,8 +63,8 @@ module AutosdeOpenapiClient
|
|
|
63
63
|
def self.openapi_types
|
|
64
64
|
{
|
|
65
65
|
:'abstract_capability_name' => :'String',
|
|
66
|
-
:'default_value' => :'String',
|
|
67
66
|
:'native_capability_name' => :'String',
|
|
67
|
+
:'native_default_value' => :'String',
|
|
68
68
|
:'published' => :'Boolean',
|
|
69
69
|
:'system_type_id' => :'String',
|
|
70
70
|
:'to_abstract_value_mapper' => :'String',
|
|
@@ -98,16 +98,16 @@ module AutosdeOpenapiClient
|
|
|
98
98
|
self.abstract_capability_name = attributes[:'abstract_capability_name']
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
-
if attributes.key?(:'default_value')
|
|
102
|
-
self.default_value = attributes[:'default_value']
|
|
103
|
-
else
|
|
104
|
-
self.default_value = ' '
|
|
105
|
-
end
|
|
106
|
-
|
|
107
101
|
if attributes.key?(:'native_capability_name')
|
|
108
102
|
self.native_capability_name = attributes[:'native_capability_name']
|
|
109
103
|
end
|
|
110
104
|
|
|
105
|
+
if attributes.key?(:'native_default_value')
|
|
106
|
+
self.native_default_value = attributes[:'native_default_value']
|
|
107
|
+
else
|
|
108
|
+
self.native_default_value = ' '
|
|
109
|
+
end
|
|
110
|
+
|
|
111
111
|
if attributes.key?(:'published')
|
|
112
112
|
self.published = attributes[:'published']
|
|
113
113
|
end
|
|
@@ -178,8 +178,8 @@ module AutosdeOpenapiClient
|
|
|
178
178
|
return true if self.equal?(o)
|
|
179
179
|
self.class == o.class &&
|
|
180
180
|
abstract_capability_name == o.abstract_capability_name &&
|
|
181
|
-
default_value == o.default_value &&
|
|
182
181
|
native_capability_name == o.native_capability_name &&
|
|
182
|
+
native_default_value == o.native_default_value &&
|
|
183
183
|
published == o.published &&
|
|
184
184
|
system_type_id == o.system_type_id &&
|
|
185
185
|
to_abstract_value_mapper == o.to_abstract_value_mapper &&
|
|
@@ -196,7 +196,7 @@ module AutosdeOpenapiClient
|
|
|
196
196
|
# Calculates hash code according to all attributes.
|
|
197
197
|
# @return [Integer] Hash code
|
|
198
198
|
def hash
|
|
199
|
-
[abstract_capability_name,
|
|
199
|
+
[abstract_capability_name, native_capability_name, native_default_value, published, system_type_id, to_abstract_value_mapper, to_native_value_mapper, uuid].hash
|
|
200
200
|
end
|
|
201
201
|
|
|
202
202
|
# Builds the object from hash
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Site Manager API
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.12
|
|
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.12'
|
|
15
15
|
end
|
|
@@ -31,13 +31,13 @@ describe AutosdeOpenapiClient::CapabilityTranslationCreate do
|
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
describe 'test attribute "
|
|
34
|
+
describe 'test attribute "native_capability_name"' do
|
|
35
35
|
it 'should work' do
|
|
36
36
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
|
|
40
|
-
describe 'test attribute "
|
|
40
|
+
describe 'test attribute "native_default_value"' do
|
|
41
41
|
it 'should work' do
|
|
42
42
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
43
43
|
end
|
|
@@ -37,19 +37,19 @@ describe AutosdeOpenapiClient::CapabilityTranslation do
|
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
|
|
40
|
-
describe 'test attribute "
|
|
40
|
+
describe 'test attribute "native_capability"' do
|
|
41
41
|
it 'should work' do
|
|
42
42
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
|
|
46
|
-
describe 'test attribute "
|
|
46
|
+
describe 'test attribute "native_capability_name"' do
|
|
47
47
|
it 'should work' do
|
|
48
48
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
49
|
end
|
|
50
50
|
end
|
|
51
51
|
|
|
52
|
-
describe 'test attribute "
|
|
52
|
+
describe 'test attribute "native_default_value"' do
|
|
53
53
|
it 'should work' do
|
|
54
54
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
55
55
|
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.2.
|
|
4
|
+
version: 1.2.12
|
|
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-
|
|
11
|
+
date: 2022-10-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -389,104 +389,104 @@ signing_key:
|
|
|
389
389
|
specification_version: 4
|
|
390
390
|
summary: Site Manager API Ruby Gem
|
|
391
391
|
test_files:
|
|
392
|
-
- spec/api/
|
|
393
|
-
- spec/api/celery_config_api_spec.rb
|
|
394
|
-
- spec/api/host_cluster_api_spec.rb
|
|
395
|
-
- spec/api/host_api_spec.rb
|
|
396
|
-
- spec/api/address_api_spec.rb
|
|
397
|
-
- spec/api/service_api_spec.rb
|
|
398
|
-
- spec/api/volume_api_spec.rb
|
|
399
|
-
- spec/api/refresh_system_api_spec.rb
|
|
400
|
-
- spec/api/auto_sde_role_api_spec.rb
|
|
392
|
+
- spec/api/volume_safe_delete_api_spec.rb
|
|
401
393
|
- spec/api/authentication_api_spec.rb
|
|
402
|
-
- spec/api/
|
|
403
|
-
- spec/api/job_api_spec.rb
|
|
394
|
+
- spec/api/storage_resource_api_spec.rb
|
|
404
395
|
- spec/api/abstract_capability_api_spec.rb
|
|
405
|
-
- spec/api/native_capability_api_spec.rb
|
|
406
|
-
- spec/api/profile_api_spec.rb
|
|
407
|
-
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
|
408
|
-
- spec/api/storage_host_api_spec.rb
|
|
409
396
|
- spec/api/snapshot_api_spec.rb
|
|
410
|
-
- spec/api/event_api_spec.rb
|
|
411
|
-
- spec/api/auto_sde_project_api_spec.rb
|
|
412
|
-
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
|
413
397
|
- spec/api/storage_hosts_mapping_api_spec.rb
|
|
414
|
-
- spec/api/
|
|
415
|
-
- spec/api/
|
|
416
|
-
- spec/api/
|
|
398
|
+
- spec/api/native_capability_api_spec.rb
|
|
399
|
+
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
|
400
|
+
- spec/api/profile_api_spec.rb
|
|
401
|
+
- spec/api/capability_translation_api_spec.rb
|
|
402
|
+
- spec/api/service_api_spec.rb
|
|
403
|
+
- spec/api/auto_sde_role_api_spec.rb
|
|
417
404
|
- spec/api/host_cluster_membership_api_spec.rb
|
|
405
|
+
- spec/api/service_resource_attachment_api_spec.rb
|
|
418
406
|
- spec/api/user_api_spec.rb
|
|
419
|
-
- spec/api/
|
|
407
|
+
- spec/api/job_api_spec.rb
|
|
408
|
+
- spec/api/volume_api_spec.rb
|
|
409
|
+
- spec/api/auto_sde_project_api_spec.rb
|
|
420
410
|
- spec/api/validate_system_api_spec.rb
|
|
421
|
-
- spec/api/
|
|
411
|
+
- spec/api/provisioning_strategy_api_spec.rb
|
|
412
|
+
- spec/api/system_type_api_spec.rb
|
|
413
|
+
- spec/api/storage_host_api_spec.rb
|
|
414
|
+
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
|
415
|
+
- spec/api/refresh_system_api_spec.rb
|
|
416
|
+
- spec/api/host_api_spec.rb
|
|
417
|
+
- spec/api/address_api_spec.rb
|
|
422
418
|
- spec/api/account_api_spec.rb
|
|
423
|
-
- spec/api/
|
|
419
|
+
- spec/api/event_api_spec.rb
|
|
420
|
+
- spec/api/celery_config_api_spec.rb
|
|
421
|
+
- spec/api/storage_system_api_spec.rb
|
|
422
|
+
- spec/api/host_cluster_api_spec.rb
|
|
423
|
+
- spec/api/host_volume_connection_api_spec.rb
|
|
424
424
|
- spec/api_client_spec.rb
|
|
425
425
|
- spec/configuration_spec.rb
|
|
426
|
-
- spec/models/
|
|
427
|
-
- spec/models/
|
|
428
|
-
- spec/models/service_abstract_capability_value_spec.rb
|
|
429
|
-
- spec/models/user_create_spec.rb
|
|
430
|
-
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
|
431
|
-
- spec/models/host_cluster_create_spec.rb
|
|
426
|
+
- spec/models/native_capability_spec.rb
|
|
427
|
+
- spec/models/storage_system_update_spec.rb
|
|
432
428
|
- spec/models/storage_resource_spec.rb
|
|
433
|
-
- spec/models/storage_hosts_mapping_response_spec.rb
|
|
434
|
-
- spec/models/storage_resource_response_spec.rb
|
|
435
|
-
- spec/models/volume_response_spec.rb
|
|
436
|
-
- spec/models/host_cluster_membership_spec.rb
|
|
437
429
|
- spec/models/async_response_spec.rb
|
|
438
|
-
- spec/models/
|
|
430
|
+
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
|
431
|
+
- spec/models/storage_resource_update_spec.rb
|
|
432
|
+
- spec/models/service_resource_attachment_spec.rb
|
|
433
|
+
- spec/models/storage_hosts_mapping_spec.rb
|
|
434
|
+
- spec/models/host_cluster_spec.rb
|
|
439
435
|
- spec/models/storage_host_wwpn_candidates_spec.rb
|
|
436
|
+
- spec/models/account_post_response_spec.rb
|
|
437
|
+
- spec/models/user_create_spec.rb
|
|
438
|
+
- spec/models/storage_host_spec.rb
|
|
439
|
+
- spec/models/service_abstract_capability_value_spec.rb
|
|
440
440
|
- spec/models/volume_spec.rb
|
|
441
|
-
- spec/models/
|
|
442
|
-
- spec/models/
|
|
443
|
-
- spec/models/
|
|
441
|
+
- spec/models/auto_sde_role_spec.rb
|
|
442
|
+
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
|
443
|
+
- spec/models/event_response_spec.rb
|
|
444
|
+
- spec/models/user_spec.rb
|
|
445
|
+
- spec/models/host_create_spec.rb
|
|
446
|
+
- spec/models/event_spec.rb
|
|
447
|
+
- spec/models/storage_system_create_spec.rb
|
|
448
|
+
- spec/models/authentication_spec.rb
|
|
449
|
+
- spec/models/provisioning_strategy_spec.rb
|
|
450
|
+
- spec/models/job_spec.rb
|
|
451
|
+
- spec/models/storage_resource_response_spec.rb
|
|
452
|
+
- spec/models/host_volume_connection_create_spec.rb
|
|
453
|
+
- spec/models/auto_sde_project_spec.rb
|
|
444
454
|
- spec/models/system_type_spec.rb
|
|
445
|
-
- spec/models/
|
|
455
|
+
- spec/models/storage_resource_create_spec.rb
|
|
446
456
|
- spec/models/auth_response_spec.rb
|
|
457
|
+
- spec/models/capability_translation_spec.rb
|
|
447
458
|
- spec/models/abstract_capability_spec.rb
|
|
448
|
-
- spec/models/storage_host_spec.rb
|
|
449
|
-
- spec/models/storage_resource_update_spec.rb
|
|
450
|
-
- spec/models/provisioning_strategy_spec.rb
|
|
451
|
-
- spec/models/volume_update_spec.rb
|
|
452
|
-
- spec/models/job_spec.rb
|
|
453
459
|
- spec/models/host_cluster_response_spec.rb
|
|
454
|
-
- spec/models/
|
|
455
|
-
- spec/models/
|
|
456
|
-
- spec/models/
|
|
457
|
-
- spec/models/
|
|
458
|
-
- spec/models/storage_system_update_spec.rb
|
|
459
|
-
- spec/models/host_cluster_spec.rb
|
|
460
|
-
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
|
461
|
-
- spec/models/host_cluster_volume_mapping_spec.rb
|
|
462
|
-
- spec/models/service_spec.rb
|
|
460
|
+
- spec/models/storage_host_response_spec.rb
|
|
461
|
+
- spec/models/storage_host_create_spec.rb
|
|
462
|
+
- spec/models/validate_system_spec.rb
|
|
463
|
+
- spec/models/storage_hosts_mapping_response_spec.rb
|
|
463
464
|
- spec/models/host_volume_connection_spec.rb
|
|
464
|
-
- spec/models/
|
|
465
|
-
- spec/models/event_spec.rb
|
|
466
|
-
- spec/models/system_type_create_spec.rb
|
|
467
|
-
- spec/models/capability_translation_spec.rb
|
|
468
|
-
- spec/models/auto_sde_role_spec.rb
|
|
465
|
+
- spec/models/host_spec.rb
|
|
469
466
|
- spec/models/storage_hosts_mapping_create_spec.rb
|
|
470
|
-
- spec/models/
|
|
471
|
-
- spec/models/
|
|
472
|
-
- spec/models/host_volume_connection_create_spec.rb
|
|
473
|
-
- spec/models/account_post_response_spec.rb
|
|
467
|
+
- spec/models/profile_spec.rb
|
|
468
|
+
- spec/models/service_spec.rb
|
|
474
469
|
- spec/models/user_update_spec.rb
|
|
475
|
-
- spec/models/
|
|
476
|
-
- spec/models/
|
|
477
|
-
- spec/models/account_spec.rb
|
|
478
|
-
- spec/models/storage_system_spec.rb
|
|
479
|
-
- spec/models/native_capability_spec.rb
|
|
480
|
-
- spec/models/volume_safe_delete_create_spec.rb
|
|
481
|
-
- spec/models/host_spec.rb
|
|
482
|
-
- spec/models/storage_host_update_spec.rb
|
|
483
|
-
- spec/models/storage_resource_create_spec.rb
|
|
470
|
+
- spec/models/volume_update_spec.rb
|
|
471
|
+
- spec/models/celery_config_spec.rb
|
|
484
472
|
- spec/models/volume_create_spec.rb
|
|
485
|
-
- spec/models/
|
|
473
|
+
- spec/models/address_spec.rb
|
|
474
|
+
- spec/models/system_type_create_spec.rb
|
|
475
|
+
- spec/models/host_cluster_volume_mapping_spec.rb
|
|
486
476
|
- spec/models/snapshot_spec.rb
|
|
477
|
+
- spec/models/storage_host_update_spec.rb
|
|
478
|
+
- spec/models/account_spec.rb
|
|
479
|
+
- spec/models/volume_safe_delete_spec.rb
|
|
480
|
+
- spec/models/address_create_spec.rb
|
|
481
|
+
- spec/models/volume_safe_delete_create_spec.rb
|
|
487
482
|
- spec/models/capability_translation_create_spec.rb
|
|
488
|
-
- spec/models/
|
|
489
|
-
- spec/models/
|
|
490
|
-
- spec/models/
|
|
491
|
-
- spec/models/
|
|
483
|
+
- spec/models/host_cluster_membership_spec.rb
|
|
484
|
+
- spec/models/job_create_spec.rb
|
|
485
|
+
- spec/models/volume_response_spec.rb
|
|
486
|
+
- spec/models/host_cluster_create_spec.rb
|
|
487
|
+
- spec/models/refresh_system_spec.rb
|
|
488
|
+
- spec/models/snapshot_create_spec.rb
|
|
489
|
+
- spec/models/service_create_spec.rb
|
|
490
|
+
- spec/models/storage_system_spec.rb
|
|
491
|
+
- spec/models/account_post_request_spec.rb
|
|
492
492
|
- spec/spec_helper.rb
|