autosde_openapi_client 3.2.5 → 3.2.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f36be1fccea8cb9a74b62c9a3707b7e9f192e5ec2eadb53a3db3eb55e781694
4
- data.tar.gz: 37dd9f045b64f522c83683e8e47c61acf1ebc2f9813e781fa36847a6aa4ec426
3
+ metadata.gz: 0025f8ce1f6ff1724c8688586a15db0ef1d52175de25fc5715c33dadd65ae7b2
4
+ data.tar.gz: 4005862923b247dea56101ca3f26cc44737a98eda5754c706fbb1ea35800b66d
5
5
  SHA512:
6
- metadata.gz: 5bc2e1fde1298c04ffb200c01f412d671d0ffd10b7394f349e489bad01c6389d584e76b153444d2ee9877d0c9a65844534b4a33e92c5d10bac558c789e174420
7
- data.tar.gz: 48c1ba958043573980d5dd9a7b01d161e1bfb756bd320a3183f31daa36e855b2fffb5907176cbd4429f06d9b742cd8e7931b4503025d5bbc64592fabef995505
6
+ metadata.gz: ec9ce4aaa6a0a98f3855b5b737236cd35a68cb403718465c7620cb5b1cb6aba8982cf7541cf0e922dc83c439edaf3a8fcc39a8d6b37b7436ae87587abaf61723
7
+ data.tar.gz: 3ca0c47b4b43816fb3c35bf31b9ab3fda7959e125ea7f6b195d249e4c77c83111cd8efc89b8cb7ebad63a8afb808306d023cb0c7ad735bc44142c1fa50ced4c2
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **capability_value_list** | **Array<String>** | capability_value_list | [optional] |
7
+ | **capability_id_list** | **Array<String>** | capability_id_list | [optional] |
8
8
  | **component_state** | **String** | component_state | [optional] |
9
9
  | **description** | **String** | description | [optional][default to ''] |
10
10
  | **name** | **String** | name | [optional] |
@@ -20,7 +20,7 @@
20
20
  require 'autosde_openapi_client'
21
21
 
22
22
  instance = AutosdeOpenapiClient::ServiceUpdate.new(
23
- capability_value_list: null,
23
+ capability_id_list: null,
24
24
  component_state: null,
25
25
  description: null,
26
26
  name: null,
@@ -9,7 +9,7 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
9
9
 
10
10
  ## volume_clone_post
11
11
 
12
- > <VolumeClone> volume_clone_post(volume_clone)
12
+ > <AsyncResponse> volume_clone_post(volume_clone)
13
13
 
14
14
 
15
15
 
@@ -40,7 +40,7 @@ end
40
40
 
41
41
  This returns an Array which contains the response data, status code and headers.
42
42
 
43
- > <Array(<VolumeClone>, Integer, Hash)> volume_clone_post_with_http_info(volume_clone)
43
+ > <Array(<AsyncResponse>, Integer, Hash)> volume_clone_post_with_http_info(volume_clone)
44
44
 
45
45
  ```ruby
46
46
  begin
@@ -48,7 +48,7 @@ begin
48
48
  data, status_code, headers = api_instance.volume_clone_post_with_http_info(volume_clone)
49
49
  p status_code # => 2xx
50
50
  p headers # => { ... }
51
- p data # => <VolumeClone>
51
+ p data # => <AsyncResponse>
52
52
  rescue AutosdeOpenapiClient::ApiError => e
53
53
  puts "Error when calling VolumeCloneApi->volume_clone_post_with_http_info: #{e}"
54
54
  end
@@ -62,7 +62,7 @@ end
62
62
 
63
63
  ### Return type
64
64
 
65
- [**VolumeClone**](VolumeClone.md)
65
+ [**AsyncResponse**](AsyncResponse.md)
66
66
 
67
67
  ### Authorization
68
68
 
@@ -9,7 +9,7 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
9
9
 
10
10
  ## volume_migration_post
11
11
 
12
- > <VolumeMigration> volume_migration_post(volume_migration)
12
+ > <AsyncResponse> volume_migration_post(volume_migration)
13
13
 
14
14
 
15
15
 
@@ -40,7 +40,7 @@ end
40
40
 
41
41
  This returns an Array which contains the response data, status code and headers.
42
42
 
43
- > <Array(<VolumeMigration>, Integer, Hash)> volume_migration_post_with_http_info(volume_migration)
43
+ > <Array(<AsyncResponse>, Integer, Hash)> volume_migration_post_with_http_info(volume_migration)
44
44
 
45
45
  ```ruby
46
46
  begin
@@ -48,7 +48,7 @@ begin
48
48
  data, status_code, headers = api_instance.volume_migration_post_with_http_info(volume_migration)
49
49
  p status_code # => 2xx
50
50
  p headers # => { ... }
51
- p data # => <VolumeMigration>
51
+ p data # => <AsyncResponse>
52
52
  rescue AutosdeOpenapiClient::ApiError => e
53
53
  puts "Error when calling VolumeMigrationApi->volume_migration_post_with_http_info: #{e}"
54
54
  end
@@ -62,7 +62,7 @@ end
62
62
 
63
63
  ### Return type
64
64
 
65
- [**VolumeMigration**](VolumeMigration.md)
65
+ [**AsyncResponse**](AsyncResponse.md)
66
66
 
67
67
  ### Authorization
68
68
 
@@ -21,7 +21,7 @@ module AutosdeOpenapiClient
21
21
  end
22
22
  # @param volume_clone [VolumeClone]
23
23
  # @param [Hash] opts the optional parameters
24
- # @return [VolumeClone]
24
+ # @return [AsyncResponse]
25
25
  def volume_clone_post(volume_clone, opts = {})
26
26
  data, _status_code, _headers = volume_clone_post_with_http_info(volume_clone, opts)
27
27
  data
@@ -29,7 +29,7 @@ module AutosdeOpenapiClient
29
29
 
30
30
  # @param volume_clone [VolumeClone]
31
31
  # @param [Hash] opts the optional parameters
32
- # @return [Array<(VolumeClone, Integer, Hash)>] VolumeClone data, response status code and response headers
32
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
33
33
  def volume_clone_post_with_http_info(volume_clone, opts = {})
34
34
  if @api_client.config.debugging
35
35
  @api_client.config.logger.debug 'Calling API: VolumeCloneApi.volume_clone_post ...'
@@ -58,7 +58,7 @@ module AutosdeOpenapiClient
58
58
  post_body = opts[:debug_body] || @api_client.object_to_http_body(volume_clone)
59
59
 
60
60
  # return_type
61
- return_type = opts[:debug_return_type] || 'VolumeClone'
61
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
62
62
 
63
63
  # auth_names
64
64
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -21,7 +21,7 @@ module AutosdeOpenapiClient
21
21
  end
22
22
  # @param volume_migration [VolumeMigration]
23
23
  # @param [Hash] opts the optional parameters
24
- # @return [VolumeMigration]
24
+ # @return [AsyncResponse]
25
25
  def volume_migration_post(volume_migration, opts = {})
26
26
  data, _status_code, _headers = volume_migration_post_with_http_info(volume_migration, opts)
27
27
  data
@@ -29,7 +29,7 @@ module AutosdeOpenapiClient
29
29
 
30
30
  # @param volume_migration [VolumeMigration]
31
31
  # @param [Hash] opts the optional parameters
32
- # @return [Array<(VolumeMigration, Integer, Hash)>] VolumeMigration data, response status code and response headers
32
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
33
33
  def volume_migration_post_with_http_info(volume_migration, opts = {})
34
34
  if @api_client.config.debugging
35
35
  @api_client.config.logger.debug 'Calling API: VolumeMigrationApi.volume_migration_post ...'
@@ -58,7 +58,7 @@ module AutosdeOpenapiClient
58
58
  post_body = opts[:debug_body] || @api_client.object_to_http_body(volume_migration)
59
59
 
60
60
  # return_type
61
- return_type = opts[:debug_return_type] || 'VolumeMigration'
61
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
62
62
 
63
63
  # auth_names
64
64
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -16,8 +16,8 @@ require 'time'
16
16
  module AutosdeOpenapiClient
17
17
  # TODO add description
18
18
  class ServiceUpdate
19
- # capability_value_list
20
- attr_accessor :capability_value_list
19
+ # capability_id_list
20
+ attr_accessor :capability_id_list
21
21
 
22
22
  # component_state
23
23
  attr_accessor :component_state
@@ -65,7 +65,7 @@ module AutosdeOpenapiClient
65
65
  # Attribute mapping from ruby-style variable name to JSON key.
66
66
  def self.attribute_map
67
67
  {
68
- :'capability_value_list' => :'capability_value_list',
68
+ :'capability_id_list' => :'capability_id_list',
69
69
  :'component_state' => :'component_state',
70
70
  :'description' => :'description',
71
71
  :'name' => :'name',
@@ -85,7 +85,7 @@ module AutosdeOpenapiClient
85
85
  # Attribute type mapping.
86
86
  def self.openapi_types
87
87
  {
88
- :'capability_value_list' => :'Array<String>',
88
+ :'capability_id_list' => :'Array<String>',
89
89
  :'component_state' => :'String',
90
90
  :'description' => :'String',
91
91
  :'name' => :'String',
@@ -118,9 +118,9 @@ module AutosdeOpenapiClient
118
118
  h[k.to_sym] = v
119
119
  }
120
120
 
121
- if attributes.key?(:'capability_value_list')
122
- if (value = attributes[:'capability_value_list']).is_a?(Array)
123
- self.capability_value_list = value
121
+ if attributes.key?(:'capability_id_list')
122
+ if (value = attributes[:'capability_id_list']).is_a?(Array)
123
+ self.capability_id_list = value
124
124
  end
125
125
  end
126
126
 
@@ -196,7 +196,7 @@ module AutosdeOpenapiClient
196
196
  def ==(o)
197
197
  return true if self.equal?(o)
198
198
  self.class == o.class &&
199
- capability_value_list == o.capability_value_list &&
199
+ capability_id_list == o.capability_id_list &&
200
200
  component_state == o.component_state &&
201
201
  description == o.description &&
202
202
  name == o.name &&
@@ -216,7 +216,7 @@ module AutosdeOpenapiClient
216
216
  # Calculates hash code according to all attributes.
217
217
  # @return [Integer] Hash code
218
218
  def hash
219
- [capability_value_list, component_state, description, name, profile, project, provisioning_strategy, uuid, version].hash
219
+ [capability_id_list, component_state, description, name, profile, project, provisioning_strategy, uuid, version].hash
220
220
  end
221
221
 
222
222
  # 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: 3.2.5
6
+ The version of the OpenAPI document: 3.2.7
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 = '3.2.5'
14
+ VERSION = '3.2.7'
15
15
  end
@@ -35,7 +35,7 @@ describe 'VolumeCloneApi' do
35
35
  # unit tests for volume_clone_post
36
36
  # @param volume_clone
37
37
  # @param [Hash] opts the optional parameters
38
- # @return [VolumeClone]
38
+ # @return [AsyncResponse]
39
39
  describe 'volume_clone_post test' do
40
40
  it 'should work' do
41
41
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -35,7 +35,7 @@ describe 'VolumeMigrationApi' do
35
35
  # unit tests for volume_migration_post
36
36
  # @param volume_migration
37
37
  # @param [Hash] opts the optional parameters
38
- # @return [VolumeMigration]
38
+ # @return [AsyncResponse]
39
39
  describe 'volume_migration_post test' do
40
40
  it 'should work' do
41
41
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -25,7 +25,7 @@ describe AutosdeOpenapiClient::ServiceUpdate do
25
25
  expect(instance).to be_instance_of(AutosdeOpenapiClient::ServiceUpdate)
26
26
  end
27
27
  end
28
- describe 'test attribute "capability_value_list"' do
28
+ describe 'test attribute "capability_id_list"' do
29
29
  it 'should work' do
30
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
31
  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: 3.2.5
4
+ version: 3.2.7
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-03-08 00:00:00.000000000 Z
11
+ date: 2023-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -428,117 +428,117 @@ signing_key:
428
428
  specification_version: 4
429
429
  summary: Site Manager API Ruby Gem
430
430
  test_files:
431
+ - spec/api/host_cluster_membership_api_spec.rb
431
432
  - spec/api/system_type_api_spec.rb
432
- - spec/api/storage_host_api_spec.rb
433
- - spec/api/abstract_capability_api_spec.rb
433
+ - spec/api/service_resource_attachment_api_spec.rb
434
+ - spec/api/refresh_system_api_spec.rb
435
+ - spec/api/celery_config_api_spec.rb
436
+ - spec/api/storage_hosts_mapping_api_spec.rb
437
+ - spec/api/capability_translation_api_spec.rb
438
+ - spec/api/host_api_spec.rb
439
+ - spec/api/event_api_spec.rb
434
440
  - spec/api/snapshot_api_spec.rb
435
- - spec/api/storage_resource_api_spec.rb
436
- - spec/api/auto_sde_project_api_spec.rb
441
+ - spec/api/host_cluster_api_spec.rb
442
+ - spec/api/service_abstract_capability_value_api_spec.rb
437
443
  - spec/api/validate_system_api_spec.rb
438
- - spec/api/capability_translation_api_spec.rb
439
- - spec/api/storage_host_wwpn_candidates_api_spec.rb
440
- - spec/api/job_api_spec.rb
444
+ - spec/api/storage_resource_api_spec.rb
445
+ - spec/api/storage_host_api_spec.rb
441
446
  - spec/api/volume_clone_api_spec.rb
442
- - spec/api/event_api_spec.rb
443
- - spec/api/native_capability_api_spec.rb
444
- - spec/api/host_cluster_volume_mapping_api_spec.rb
445
- - spec/api/host_cluster_membership_api_spec.rb
446
- - spec/api/celery_config_api_spec.rb
447
- - spec/api/auto_sde_role_api_spec.rb
448
- - spec/api/provisioning_strategy_api_spec.rb
449
- - spec/api/refresh_system_api_spec.rb
450
- - spec/api/storage_hosts_mapping_api_spec.rb
447
+ - spec/api/auto_sde_project_api_spec.rb
451
448
  - spec/api/address_api_spec.rb
452
- - spec/api/host_volume_connection_api_spec.rb
453
- - spec/api/user_api_spec.rb
454
- - spec/api/service_resource_attachment_api_spec.rb
455
- - spec/api/volume_api_spec.rb
456
- - spec/api/service_abstract_capability_value_api_spec.rb
457
- - spec/api/service_api_spec.rb
449
+ - spec/api/native_capability_api_spec.rb
458
450
  - spec/api/account_api_spec.rb
451
+ - spec/api/volume_api_spec.rb
452
+ - spec/api/abstract_capability_api_spec.rb
453
+ - spec/api/profile_api_spec.rb
454
+ - spec/api/storage_system_api_spec.rb
455
+ - spec/api/user_api_spec.rb
459
456
  - spec/api/volume_migration_api_spec.rb
460
- - spec/api/host_cluster_api_spec.rb
457
+ - spec/api/job_api_spec.rb
458
+ - spec/api/host_volume_connection_api_spec.rb
459
+ - spec/api/auto_sde_role_api_spec.rb
460
+ - spec/api/storage_host_wwpn_candidates_api_spec.rb
461
+ - spec/api/service_api_spec.rb
462
+ - spec/api/provisioning_strategy_api_spec.rb
461
463
  - spec/api/authentication_api_spec.rb
462
- - spec/api/storage_system_api_spec.rb
463
- - spec/api/host_api_spec.rb
464
- - spec/api/profile_api_spec.rb
464
+ - spec/api/host_cluster_volume_mapping_api_spec.rb
465
465
  - spec/api_client_spec.rb
466
466
  - spec/configuration_spec.rb
467
- - spec/models/host_cluster_volume_mapping_spec.rb
468
- - spec/models/host_create_spec.rb
469
- - spec/models/service_resource_attachment_spec.rb
470
- - spec/models/profile_spec.rb
471
467
  - spec/models/volume_create_spec.rb
472
- - spec/models/account_post_response_spec.rb
473
- - spec/models/host_volume_connection_spec.rb
474
- - spec/models/service_create_spec.rb
475
- - spec/models/job_create_spec.rb
476
- - spec/models/account_spec.rb
477
- - spec/models/abstract_capability_response_spec.rb
478
- - spec/models/host_cluster_volume_mapping_create_spec.rb
479
- - spec/models/snapshot_response_spec.rb
480
- - spec/models/volume_update_spec.rb
481
- - spec/models/service_abstract_capability_value_spec.rb
482
- - spec/models/storage_system_spec.rb
483
- - spec/models/abstract_capability_spec.rb
484
- - spec/models/user_spec.rb
485
- - spec/models/host_cluster_spec.rb
486
- - spec/models/job_spec.rb
487
- - spec/models/volume_clone_spec.rb
488
- - spec/models/validate_system_spec.rb
468
+ - spec/models/async_response_spec.rb
469
+ - spec/models/native_capability_spec.rb
470
+ - spec/models/host_volume_connection_create_spec.rb
471
+ - spec/models/authentication_spec.rb
472
+ - spec/models/job_response_spec.rb
489
473
  - spec/models/capability_translation_spec.rb
490
- - spec/models/account_post_request_spec.rb
491
- - spec/models/storage_hosts_mapping_create_spec.rb
492
- - spec/models/validate_system_data_spec.rb
493
- - spec/models/storage_host_update_spec.rb
494
- - spec/models/snapshot_spec.rb
495
- - spec/models/host_cluster_create_spec.rb
496
- - spec/models/storage_resource_update_spec.rb
497
- - spec/models/system_type_create_spec.rb
498
- - spec/models/address_create_spec.rb
499
- - spec/models/storage_system_create_spec.rb
500
- - spec/models/host_spec.rb
501
- - spec/models/volume_response_spec.rb
502
- - spec/models/storage_resource_spec.rb
503
- - spec/models/storage_resource_response_spec.rb
474
+ - spec/models/celery_config_spec.rb
475
+ - spec/models/snapshot_response_spec.rb
476
+ - spec/models/system_type_spec.rb
477
+ - spec/models/abstract_capability_response_spec.rb
504
478
  - spec/models/storage_host_wwpn_candidates_spec.rb
505
- - spec/models/auto_sde_project_spec.rb
506
- - spec/models/job_response_spec.rb
507
- - spec/models/service_resource_attachment_response_spec.rb
479
+ - spec/models/service_update_spec.rb
508
480
  - spec/models/refresh_system_spec.rb
509
- - spec/models/storage_host_spec.rb
481
+ - spec/models/storage_resource_spec.rb
482
+ - spec/models/service_resource_attachment_response_spec.rb
483
+ - spec/models/volume_response_spec.rb
510
484
  - spec/models/capability_translation_create_spec.rb
511
- - spec/models/host_cluster_volume_mapping_response_spec.rb
512
- - spec/models/volume_migration_spec.rb
513
- - spec/models/storage_hosts_mapping_spec.rb
514
- - spec/models/service_abstract_capability_value_response_spec.rb
515
- - spec/models/authentication_spec.rb
516
- - spec/models/host_volume_connection_create_spec.rb
517
- - spec/models/host_cluster_response_spec.rb
485
+ - spec/models/account_post_request_spec.rb
486
+ - spec/models/storage_system_create_spec.rb
487
+ - spec/models/service_create_spec.rb
518
488
  - spec/models/system_type_response_spec.rb
519
- - spec/models/service_response_spec.rb
520
- - spec/models/host_cluster_membership_spec.rb
521
- - spec/models/event_spec.rb
522
- - spec/models/service_update_spec.rb
523
- - spec/models/celery_config_spec.rb
489
+ - spec/models/volume_spec.rb
490
+ - spec/models/storage_system_response_spec.rb
524
491
  - spec/models/storage_host_create_spec.rb
525
- - spec/models/native_capability_spec.rb
492
+ - spec/models/volume_clone_spec.rb
493
+ - spec/models/service_spec.rb
494
+ - spec/models/volume_migration_spec.rb
495
+ - spec/models/auto_sde_project_spec.rb
496
+ - spec/models/system_type_create_spec.rb
497
+ - spec/models/profile_spec.rb
498
+ - spec/models/job_create_spec.rb
499
+ - spec/models/event_spec.rb
500
+ - spec/models/host_cluster_membership_spec.rb
501
+ - spec/models/host_volume_connection_spec.rb
502
+ - spec/models/snapshot_spec.rb
503
+ - spec/models/validate_system_data_spec.rb
504
+ - spec/models/storage_resource_response_spec.rb
505
+ - spec/models/service_abstract_capability_value_response_spec.rb
506
+ - spec/models/storage_system_update_spec.rb
507
+ - spec/models/user_create_spec.rb
508
+ - spec/models/service_resource_attachment_spec.rb
526
509
  - spec/models/user_update_spec.rb
527
- - spec/models/system_type_spec.rb
510
+ - spec/models/host_create_spec.rb
511
+ - spec/models/host_cluster_volume_mapping_spec.rb
512
+ - spec/models/host_cluster_create_spec.rb
513
+ - spec/models/storage_resource_create_spec.rb
514
+ - spec/models/abstract_capability_spec.rb
515
+ - spec/models/snapshot_create_spec.rb
516
+ - spec/models/address_create_spec.rb
517
+ - spec/models/host_cluster_volume_mapping_response_spec.rb
518
+ - spec/models/storage_resource_update_spec.rb
528
519
  - spec/models/host_cluster_update_spec.rb
529
- - spec/models/auto_sde_role_spec.rb
520
+ - spec/models/address_spec.rb
521
+ - spec/models/auth_response_spec.rb
530
522
  - spec/models/provisioning_strategy_spec.rb
523
+ - spec/models/account_spec.rb
524
+ - spec/models/user_spec.rb
525
+ - spec/models/host_spec.rb
526
+ - spec/models/service_abstract_capability_value_spec.rb
527
+ - spec/models/host_cluster_volume_mapping_create_spec.rb
528
+ - spec/models/storage_host_update_spec.rb
529
+ - spec/models/host_cluster_response_spec.rb
531
530
  - spec/models/storage_hosts_mapping_response_spec.rb
532
- - spec/models/service_spec.rb
533
- - spec/models/volume_spec.rb
534
- - spec/models/user_create_spec.rb
531
+ - spec/models/storage_hosts_mapping_create_spec.rb
532
+ - spec/models/job_spec.rb
533
+ - spec/models/storage_hosts_mapping_spec.rb
534
+ - spec/models/validate_system_spec.rb
535
+ - spec/models/storage_host_spec.rb
535
536
  - spec/models/event_response_spec.rb
536
- - spec/models/snapshot_create_spec.rb
537
- - spec/models/storage_system_update_spec.rb
538
- - spec/models/auth_response_spec.rb
539
- - spec/models/storage_system_response_spec.rb
540
- - spec/models/storage_resource_create_spec.rb
541
- - spec/models/async_response_spec.rb
542
- - spec/models/address_spec.rb
537
+ - spec/models/account_post_response_spec.rb
543
538
  - spec/models/storage_host_response_spec.rb
539
+ - spec/models/host_cluster_spec.rb
540
+ - spec/models/service_response_spec.rb
541
+ - spec/models/volume_update_spec.rb
542
+ - spec/models/auto_sde_role_spec.rb
543
+ - spec/models/storage_system_spec.rb
544
544
  - spec/spec_helper.rb