autosde_openapi_client 2.2.4 → 2.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b63cce030201a8012377e0607e0e6a3bc4dc86b98098158319ea0861b78ffd2d
4
- data.tar.gz: 19c8a56778cd492cf02fe8ca6f59d8b1f6b5db6d81580e27e630938754080e28
3
+ metadata.gz: b0e54f75ef6df26839e1e542cf363f85659f5ed795d85c772880941c5bab0ca2
4
+ data.tar.gz: 844758e813f0e839fc9802a25bf11d61f88d0b07aecc6f3343ec6d3cdfac0be1
5
5
  SHA512:
6
- metadata.gz: 6353b57f482fc4ae842148da53af24c39a84f7b02c949aa85bba906d898ca1985032d5f134528ef5ec707d8e28fad2989cfa1db8d3ebfd2b919b73d3ad3c4a13
7
- data.tar.gz: e7306e60aae0b504687becba372e531dad231b84ac201287bfb9f71169baf5071e913f1764b5fbbff7af1108db789c8432dbe9d4f7a7ccab2ee74e5e3cf2d890
6
+ metadata.gz: 96c59bcc8b5fe1e44bac26b88c87af0ed7825c5b553b9945bccd9c1f487a7e6a921e2eb5a16d9b48e8192d261aa691d935ec7a6f9b7230d15889fc0d2a98c358
7
+ data.tar.gz: cdcc67b6b4605dcf482010711d74d5b2c4a5ad39dffab84aa8471f99a60bd3b02be16ccd1479331fa0eb616589eae3a87027c35c8279d34d6d6ff1028c4e1c0c
data/docs/Volume.md CHANGED
@@ -6,6 +6,7 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **compliant** | **Boolean** | compliant | [optional][default to false] |
8
8
  | **component_state** | **String** | component_state | [optional] |
9
+ | **fc_map_count** | **Integer** | fc_map_count | [optional][default to 0] |
9
10
  | **historical_service** | [**Service**](Service.md) | | [optional] |
10
11
  | **name** | **String** | name | [optional] |
11
12
  | **service** | [**Service**](Service.md) | | [optional] |
@@ -24,6 +25,7 @@ require 'autosde_openapi_client'
24
25
  instance = AutosdeOpenapiClient::Volume.new(
25
26
  compliant: null,
26
27
  component_state: null,
28
+ fc_map_count: null,
27
29
  historical_service: null,
28
30
  name: null,
29
31
  service: null,
data/docs/VolumeCreate.md CHANGED
@@ -7,6 +7,7 @@
7
7
  | **compliant** | **Boolean** | compliant | [optional][default to false] |
8
8
  | **component_state** | **String** | component_state | [optional] |
9
9
  | **count** | **Integer** | count | [optional][default to 1] |
10
+ | **fc_map_count** | **Integer** | fc_map_count | [optional][default to 0] |
10
11
  | **name** | **String** | name | [optional] |
11
12
  | **resources** | **Array<String>** | resources | [optional] |
12
13
  | **service** | [**Service**](Service.md) | | [optional] |
@@ -26,6 +27,7 @@ instance = AutosdeOpenapiClient::VolumeCreate.new(
26
27
  compliant: null,
27
28
  component_state: null,
28
29
  count: null,
30
+ fc_map_count: null,
29
31
  name: null,
30
32
  resources: null,
31
33
  service: null,
@@ -6,6 +6,7 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **compliant** | **Boolean** | compliant | [optional][default to false] |
8
8
  | **component_state** | **String** | component_state | [optional] |
9
+ | **fc_map_count** | **Integer** | fc_map_count | [optional][default to 0] |
9
10
  | **historical_service** | [**Service**](Service.md) | | [optional] |
10
11
  | **name** | **String** | name | [optional] |
11
12
  | **service** | **String** | !!uuid of service | [optional] |
@@ -24,6 +25,7 @@ require 'autosde_openapi_client'
24
25
  instance = AutosdeOpenapiClient::VolumeResponse.new(
25
26
  compliant: null,
26
27
  component_state: null,
28
+ fc_map_count: null,
27
29
  historical_service: null,
28
30
  name: null,
29
31
  service: null,
@@ -104,7 +104,7 @@ module AutosdeOpenapiClient
104
104
  # Check to see if the all the properties in the model are valid
105
105
  # @return true if the model is valid
106
106
  def valid?
107
- resource_type_validator = EnumAttributeValidator.new('String', ["system_resources", "volumes", "hosts", "events"])
107
+ resource_type_validator = EnumAttributeValidator.new('String', ["system_resources", "volumes_and_snapshots", "hosts", "events"])
108
108
  return false unless resource_type_validator.valid?(@resource_type)
109
109
  true
110
110
  end
@@ -112,7 +112,7 @@ module AutosdeOpenapiClient
112
112
  # Custom attribute writer method checking allowed values (enum).
113
113
  # @param [Object] resource_type Object to be assigned
114
114
  def resource_type=(resource_type)
115
- validator = EnumAttributeValidator.new('String', ["system_resources", "volumes", "hosts", "events"])
115
+ validator = EnumAttributeValidator.new('String', ["system_resources", "volumes_and_snapshots", "hosts", "events"])
116
116
  unless validator.valid?(resource_type)
117
117
  fail ArgumentError, "invalid value for \"resource_type\", must be one of #{validator.allowable_values}."
118
118
  end
@@ -22,6 +22,9 @@ module AutosdeOpenapiClient
22
22
  # component_state
23
23
  attr_accessor :component_state
24
24
 
25
+ # fc_map_count
26
+ attr_accessor :fc_map_count
27
+
25
28
  attr_accessor :historical_service
26
29
 
27
30
  # name
@@ -73,6 +76,7 @@ module AutosdeOpenapiClient
73
76
  {
74
77
  :'compliant' => :'compliant',
75
78
  :'component_state' => :'component_state',
79
+ :'fc_map_count' => :'fc_map_count',
76
80
  :'historical_service' => :'historical_service',
77
81
  :'name' => :'name',
78
82
  :'service' => :'service',
@@ -95,6 +99,7 @@ module AutosdeOpenapiClient
95
99
  {
96
100
  :'compliant' => :'Boolean',
97
101
  :'component_state' => :'String',
102
+ :'fc_map_count' => :'Integer',
98
103
  :'historical_service' => :'Service',
99
104
  :'name' => :'String',
100
105
  :'service' => :'Service',
@@ -138,6 +143,12 @@ module AutosdeOpenapiClient
138
143
  self.component_state = attributes[:'component_state']
139
144
  end
140
145
 
146
+ if attributes.key?(:'fc_map_count')
147
+ self.fc_map_count = attributes[:'fc_map_count']
148
+ else
149
+ self.fc_map_count = 0
150
+ end
151
+
141
152
  if attributes.key?(:'historical_service')
142
153
  self.historical_service = attributes[:'historical_service']
143
154
  end
@@ -212,6 +223,7 @@ module AutosdeOpenapiClient
212
223
  self.class == o.class &&
213
224
  compliant == o.compliant &&
214
225
  component_state == o.component_state &&
226
+ fc_map_count == o.fc_map_count &&
215
227
  historical_service == o.historical_service &&
216
228
  name == o.name &&
217
229
  service == o.service &&
@@ -232,7 +244,7 @@ module AutosdeOpenapiClient
232
244
  # Calculates hash code according to all attributes.
233
245
  # @return [Integer] Hash code
234
246
  def hash
235
- [compliant, component_state, historical_service, name, service, size, status, storage_resource, unmapped_since, uuid, volume_name].hash
247
+ [compliant, component_state, fc_map_count, historical_service, name, service, size, status, storage_resource, unmapped_since, uuid, volume_name].hash
236
248
  end
237
249
 
238
250
  # Builds the object from hash
@@ -25,6 +25,9 @@ module AutosdeOpenapiClient
25
25
  # count
26
26
  attr_accessor :count
27
27
 
28
+ # fc_map_count
29
+ attr_accessor :fc_map_count
30
+
28
31
  # name
29
32
  attr_accessor :name
30
33
 
@@ -79,6 +82,7 @@ module AutosdeOpenapiClient
79
82
  :'compliant' => :'compliant',
80
83
  :'component_state' => :'component_state',
81
84
  :'count' => :'count',
85
+ :'fc_map_count' => :'fc_map_count',
82
86
  :'name' => :'name',
83
87
  :'resources' => :'resources',
84
88
  :'service' => :'service',
@@ -102,6 +106,7 @@ module AutosdeOpenapiClient
102
106
  :'compliant' => :'Boolean',
103
107
  :'component_state' => :'String',
104
108
  :'count' => :'Integer',
109
+ :'fc_map_count' => :'Integer',
105
110
  :'name' => :'String',
106
111
  :'resources' => :'Array<String>',
107
112
  :'service' => :'Service',
@@ -151,6 +156,12 @@ module AutosdeOpenapiClient
151
156
  self.count = 1
152
157
  end
153
158
 
159
+ if attributes.key?(:'fc_map_count')
160
+ self.fc_map_count = attributes[:'fc_map_count']
161
+ else
162
+ self.fc_map_count = 0
163
+ end
164
+
154
165
  if attributes.key?(:'name')
155
166
  self.name = attributes[:'name']
156
167
  end
@@ -230,6 +241,7 @@ module AutosdeOpenapiClient
230
241
  compliant == o.compliant &&
231
242
  component_state == o.component_state &&
232
243
  count == o.count &&
244
+ fc_map_count == o.fc_map_count &&
233
245
  name == o.name &&
234
246
  resources == o.resources &&
235
247
  service == o.service &&
@@ -250,7 +262,7 @@ module AutosdeOpenapiClient
250
262
  # Calculates hash code according to all attributes.
251
263
  # @return [Integer] Hash code
252
264
  def hash
253
- [compliant, component_state, count, name, resources, service, service_name, size, status, unmapped_since, uuid, volume_name].hash
265
+ [compliant, component_state, count, fc_map_count, name, resources, service, service_name, size, status, unmapped_since, uuid, volume_name].hash
254
266
  end
255
267
 
256
268
  # Builds the object from hash
@@ -22,6 +22,9 @@ module AutosdeOpenapiClient
22
22
  # component_state
23
23
  attr_accessor :component_state
24
24
 
25
+ # fc_map_count
26
+ attr_accessor :fc_map_count
27
+
25
28
  attr_accessor :historical_service
26
29
 
27
30
  # name
@@ -75,6 +78,7 @@ module AutosdeOpenapiClient
75
78
  {
76
79
  :'compliant' => :'compliant',
77
80
  :'component_state' => :'component_state',
81
+ :'fc_map_count' => :'fc_map_count',
78
82
  :'historical_service' => :'historical_service',
79
83
  :'name' => :'name',
80
84
  :'service' => :'service',
@@ -97,6 +101,7 @@ module AutosdeOpenapiClient
97
101
  {
98
102
  :'compliant' => :'Boolean',
99
103
  :'component_state' => :'String',
104
+ :'fc_map_count' => :'Integer',
100
105
  :'historical_service' => :'Service',
101
106
  :'name' => :'String',
102
107
  :'service' => :'String',
@@ -140,6 +145,12 @@ module AutosdeOpenapiClient
140
145
  self.component_state = attributes[:'component_state']
141
146
  end
142
147
 
148
+ if attributes.key?(:'fc_map_count')
149
+ self.fc_map_count = attributes[:'fc_map_count']
150
+ else
151
+ self.fc_map_count = 0
152
+ end
153
+
143
154
  if attributes.key?(:'historical_service')
144
155
  self.historical_service = attributes[:'historical_service']
145
156
  end
@@ -214,6 +225,7 @@ module AutosdeOpenapiClient
214
225
  self.class == o.class &&
215
226
  compliant == o.compliant &&
216
227
  component_state == o.component_state &&
228
+ fc_map_count == o.fc_map_count &&
217
229
  historical_service == o.historical_service &&
218
230
  name == o.name &&
219
231
  service == o.service &&
@@ -234,7 +246,7 @@ module AutosdeOpenapiClient
234
246
  # Calculates hash code according to all attributes.
235
247
  # @return [Integer] Hash code
236
248
  def hash
237
- [compliant, component_state, historical_service, name, service, size, status, storage_resource, unmapped_since, uuid, volume_name].hash
249
+ [compliant, component_state, fc_map_count, historical_service, name, service, size, status, storage_resource, unmapped_since, uuid, volume_name].hash
238
250
  end
239
251
 
240
252
  # 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: 2.2.4
6
+ The version of the OpenAPI document: 2.2.5
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 = '2.2.4'
14
+ VERSION = '2.2.5'
15
15
  end
@@ -28,7 +28,7 @@ describe AutosdeOpenapiClient::RefreshSystem do
28
28
  describe 'test attribute "resource_type"' do
29
29
  it 'should work' do
30
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["system_resources", "volumes", "hosts", "events"])
31
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["system_resources", "volumes_and_snapshots", "hosts", "events"])
32
32
  # validator.allowable_values.each do |value|
33
33
  # expect { instance.resource_type = value }.not_to raise_error
34
34
  # end
@@ -47,6 +47,12 @@ describe AutosdeOpenapiClient::VolumeCreate do
47
47
  end
48
48
  end
49
49
 
50
+ describe 'test attribute "fc_map_count"' 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
+
50
56
  describe 'test attribute "name"' do
51
57
  it 'should work' do
52
58
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -41,6 +41,12 @@ describe AutosdeOpenapiClient::VolumeResponse do
41
41
  end
42
42
  end
43
43
 
44
+ describe 'test attribute "fc_map_count"' 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
+
44
50
  describe 'test attribute "historical_service"' do
45
51
  it 'should work' do
46
52
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -41,6 +41,12 @@ describe AutosdeOpenapiClient::Volume do
41
41
  end
42
42
  end
43
43
 
44
+ describe 'test attribute "fc_map_count"' 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
+
44
50
  describe 'test attribute "historical_service"' do
45
51
  it 'should work' do
46
52
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autosde_openapi_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.4
4
+ version: 2.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-31 00:00:00.000000000 Z
11
+ date: 2023-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -401,108 +401,108 @@ signing_key:
401
401
  specification_version: 4
402
402
  summary: Site Manager API Ruby Gem
403
403
  test_files:
404
- - spec/api/volume_api_spec.rb
405
- - spec/api/host_api_spec.rb
406
- - spec/api/profile_api_spec.rb
404
+ - spec/api/storage_resource_api_spec.rb
405
+ - spec/api/host_cluster_membership_api_spec.rb
406
+ - spec/api/native_capability_api_spec.rb
407
+ - spec/api/host_volume_connection_api_spec.rb
408
+ - spec/api/refresh_system_api_spec.rb
407
409
  - spec/api/service_abstract_capability_value_api_spec.rb
408
- - spec/api/storage_hosts_mapping_api_spec.rb
409
- - spec/api/celery_config_api_spec.rb
410
- - spec/api/auto_sde_project_api_spec.rb
411
- - spec/api/storage_host_wwpn_candidates_api_spec.rb
410
+ - spec/api/job_api_spec.rb
411
+ - spec/api/host_cluster_api_spec.rb
412
+ - spec/api/profile_api_spec.rb
412
413
  - spec/api/snapshot_api_spec.rb
413
- - spec/api/refresh_system_api_spec.rb
414
- - spec/api/event_api_spec.rb
415
414
  - spec/api/storage_host_api_spec.rb
416
- - spec/api/auto_sde_role_api_spec.rb
415
+ - spec/api/event_api_spec.rb
416
+ - spec/api/auto_sde_project_api_spec.rb
417
+ - spec/api/account_api_spec.rb
418
+ - spec/api/address_api_spec.rb
417
419
  - spec/api/validate_system_api_spec.rb
418
- - spec/api/user_api_spec.rb
419
- - spec/api/abstract_capability_api_spec.rb
420
+ - spec/api/authentication_api_spec.rb
421
+ - spec/api/host_api_spec.rb
422
+ - spec/api/volume_api_spec.rb
420
423
  - spec/api/storage_system_api_spec.rb
424
+ - spec/api/user_api_spec.rb
425
+ - spec/api/system_type_api_spec.rb
421
426
  - spec/api/capability_translation_api_spec.rb
422
- - spec/api/host_cluster_membership_api_spec.rb
423
- - spec/api/authentication_api_spec.rb
427
+ - spec/api/storage_host_wwpn_candidates_api_spec.rb
428
+ - spec/api/host_cluster_volume_mapping_api_spec.rb
429
+ - spec/api/auto_sde_role_api_spec.rb
430
+ - spec/api/abstract_capability_api_spec.rb
431
+ - spec/api/celery_config_api_spec.rb
432
+ - spec/api/provisioning_strategy_api_spec.rb
433
+ - spec/api/storage_hosts_mapping_api_spec.rb
424
434
  - spec/api/service_api_spec.rb
425
- - spec/api/host_cluster_api_spec.rb
426
- - spec/api/native_capability_api_spec.rb
427
- - spec/api/system_type_api_spec.rb
428
- - spec/api/address_api_spec.rb
429
435
  - spec/api/service_resource_attachment_api_spec.rb
430
- - spec/api/host_volume_connection_api_spec.rb
431
- - spec/api/provisioning_strategy_api_spec.rb
432
- - spec/api/job_api_spec.rb
433
- - spec/api/account_api_spec.rb
434
- - spec/api/host_cluster_volume_mapping_api_spec.rb
435
- - spec/api/storage_resource_api_spec.rb
436
436
  - spec/api_client_spec.rb
437
437
  - spec/configuration_spec.rb
438
- - spec/models/storage_hosts_mapping_create_spec.rb
439
- - spec/models/event_response_spec.rb
438
+ - spec/models/service_spec.rb
439
+ - spec/models/storage_hosts_mapping_response_spec.rb
440
440
  - spec/models/account_spec.rb
441
- - spec/models/volume_update_spec.rb
442
- - spec/models/storage_system_create_spec.rb
441
+ - spec/models/service_create_spec.rb
442
+ - spec/models/host_volume_connection_spec.rb
443
+ - spec/models/snapshot_create_spec.rb
444
+ - spec/models/auto_sde_role_spec.rb
445
+ - spec/models/storage_host_create_spec.rb
446
+ - spec/models/host_cluster_volume_mapping_create_spec.rb
443
447
  - spec/models/system_type_create_spec.rb
444
- - spec/models/storage_hosts_mapping_response_spec.rb
445
- - spec/models/user_spec.rb
446
- - spec/models/storage_resource_spec.rb
447
- - spec/models/storage_system_update_spec.rb
448
- - spec/models/service_resource_attachment_spec.rb
448
+ - spec/models/storage_hosts_mapping_create_spec.rb
449
+ - spec/models/auth_response_spec.rb
450
+ - spec/models/capability_translation_spec.rb
451
+ - spec/models/service_abstract_capability_value_spec.rb
452
+ - spec/models/volume_response_spec.rb
453
+ - spec/models/event_response_spec.rb
454
+ - spec/models/profile_spec.rb
455
+ - spec/models/async_response_spec.rb
456
+ - spec/models/native_capability_spec.rb
457
+ - spec/models/volume_create_spec.rb
449
458
  - spec/models/service_resource_attachment_response_spec.rb
459
+ - spec/models/snapshot_spec.rb
460
+ - spec/models/account_post_response_spec.rb
461
+ - spec/models/system_type_response_spec.rb
450
462
  - spec/models/host_cluster_spec.rb
451
- - spec/models/storage_hosts_mapping_spec.rb
452
- - spec/models/storage_resource_create_spec.rb
453
- - spec/models/host_cluster_volume_mapping_create_spec.rb
454
- - spec/models/user_create_spec.rb
455
- - spec/models/host_volume_connection_create_spec.rb
456
463
  - spec/models/refresh_system_spec.rb
457
- - spec/models/volume_spec.rb
458
- - spec/models/auth_response_spec.rb
459
- - spec/models/storage_host_create_spec.rb
460
- - spec/models/auto_sde_role_spec.rb
461
- - spec/models/authentication_spec.rb
462
- - spec/models/address_spec.rb
464
+ - spec/models/storage_hosts_mapping_spec.rb
465
+ - spec/models/storage_system_spec.rb
463
466
  - spec/models/celery_config_spec.rb
467
+ - spec/models/service_response_spec.rb
468
+ - spec/models/event_spec.rb
469
+ - spec/models/abstract_capability_response_spec.rb
470
+ - spec/models/authentication_spec.rb
464
471
  - spec/models/account_post_request_spec.rb
465
- - spec/models/host_cluster_response_spec.rb
466
- - spec/models/host_cluster_membership_spec.rb
467
- - spec/models/system_type_response_spec.rb
472
+ - spec/models/storage_system_response_spec.rb
473
+ - spec/models/address_create_spec.rb
468
474
  - spec/models/storage_host_update_spec.rb
469
- - spec/models/event_spec.rb
470
- - spec/models/host_cluster_create_spec.rb
471
- - spec/models/abstract_capability_spec.rb
472
- - spec/models/account_post_response_spec.rb
473
- - spec/models/capability_translation_spec.rb
474
- - spec/models/service_response_spec.rb
475
- - spec/models/storage_host_response_spec.rb
476
- - spec/models/user_update_spec.rb
477
- - spec/models/profile_spec.rb
478
- - spec/models/job_create_spec.rb
479
- - spec/models/host_volume_connection_spec.rb
480
- - spec/models/snapshot_create_spec.rb
481
- - spec/models/service_abstract_capability_value_response_spec.rb
482
- - spec/models/snapshot_spec.rb
475
+ - spec/models/user_spec.rb
483
476
  - spec/models/auto_sde_project_spec.rb
484
- - spec/models/async_response_spec.rb
485
- - spec/models/service_create_spec.rb
477
+ - spec/models/storage_resource_spec.rb
478
+ - spec/models/storage_resource_update_spec.rb
479
+ - spec/models/host_cluster_membership_spec.rb
480
+ - spec/models/volume_spec.rb
481
+ - spec/models/storage_host_wwpn_candidates_spec.rb
482
+ - spec/models/abstract_capability_spec.rb
483
+ - spec/models/user_create_spec.rb
486
484
  - spec/models/validate_system_spec.rb
487
- - spec/models/service_spec.rb
485
+ - spec/models/storage_system_update_spec.rb
486
+ - spec/models/storage_resource_create_spec.rb
487
+ - spec/models/job_spec.rb
488
488
  - spec/models/host_cluster_volume_mapping_response_spec.rb
489
- - spec/models/storage_host_wwpn_candidates_spec.rb
490
- - spec/models/storage_resource_update_spec.rb
491
- - spec/models/volume_create_spec.rb
492
- - spec/models/volume_response_spec.rb
489
+ - spec/models/storage_system_create_spec.rb
490
+ - spec/models/host_cluster_volume_mapping_spec.rb
491
+ - spec/models/host_volume_connection_create_spec.rb
492
+ - spec/models/job_create_spec.rb
493
+ - spec/models/service_abstract_capability_value_response_spec.rb
494
+ - spec/models/service_resource_attachment_spec.rb
495
+ - spec/models/host_cluster_create_spec.rb
496
+ - spec/models/storage_host_response_spec.rb
493
497
  - spec/models/storage_host_spec.rb
494
- - spec/models/storage_system_response_spec.rb
495
- - spec/models/storage_resource_response_spec.rb
498
+ - spec/models/volume_update_spec.rb
499
+ - spec/models/user_update_spec.rb
496
500
  - spec/models/provisioning_strategy_spec.rb
497
- - spec/models/storage_system_spec.rb
498
- - spec/models/abstract_capability_response_spec.rb
499
- - spec/models/capability_translation_create_spec.rb
500
- - spec/models/host_cluster_volume_mapping_spec.rb
501
+ - spec/models/host_cluster_response_spec.rb
502
+ - spec/models/system_type_spec.rb
501
503
  - spec/models/host_create_spec.rb
502
- - spec/models/address_create_spec.rb
503
- - spec/models/job_spec.rb
504
504
  - spec/models/host_spec.rb
505
- - spec/models/system_type_spec.rb
506
- - spec/models/service_abstract_capability_value_spec.rb
507
- - spec/models/native_capability_spec.rb
505
+ - spec/models/storage_resource_response_spec.rb
506
+ - spec/models/capability_translation_create_spec.rb
507
+ - spec/models/address_spec.rb
508
508
  - spec/spec_helper.rb