autosde_openapi_client 1.0.46 → 1.0.50
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 +18 -0
 - data/docs/HostCluster.md +34 -0
 - data/docs/HostClusterApi.md +276 -0
 - data/docs/HostClusterCreate.md +30 -0
 - data/docs/HostClusterMembership.md +24 -0
 - data/docs/HostClusterMembershipApi.md +276 -0
 - data/docs/HostClusterVolumeMapping.md +26 -0
 - data/docs/HostClusterVolumeMappingApi.md +276 -0
 - data/docs/HostClusterVolumeMappingCreate.md +24 -0
 - data/docs/HostClusterVolumeMappingResponse.md +26 -0
 - data/docs/VolumeCreate.md +2 -0
 - 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_cluster_volume_mapping_api.rb +254 -0
 - data/lib/autosde_openapi_client/models/host_cluster.rb +397 -0
 - data/lib/autosde_openapi_client/models/host_cluster_create.rb +338 -0
 - data/lib/autosde_openapi_client/models/host_cluster_membership.rb +287 -0
 - data/lib/autosde_openapi_client/models/host_cluster_volume_mapping.rb +299 -0
 - data/lib/autosde_openapi_client/models/host_cluster_volume_mapping_create.rb +291 -0
 - data/lib/autosde_openapi_client/models/host_cluster_volume_mapping_response.rb +301 -0
 - data/lib/autosde_openapi_client/models/volume_create.rb +13 -1
 - data/lib/autosde_openapi_client/version.rb +2 -2
 - data/lib/autosde_openapi_client.rb +9 -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/host_cluster_volume_mapping_api_spec.rb +74 -0
 - data/spec/models/host_cluster_create_spec.rb +70 -0
 - data/spec/models/host_cluster_membership_spec.rb +56 -0
 - data/spec/models/host_cluster_spec.rb +86 -0
 - data/spec/models/host_cluster_volume_mapping_create_spec.rb +56 -0
 - data/spec/models/host_cluster_volume_mapping_response_spec.rb +62 -0
 - data/spec/models/host_cluster_volume_mapping_spec.rb +62 -0
 - data/spec/models/volume_create_spec.rb +6 -0
 - metadata +91 -55
 
| 
         @@ -0,0 +1,86 @@ 
     | 
|
| 
      
 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 
     | 
    
         
            +
              describe 'test attribute "volumes"' do
         
     | 
| 
      
 81 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 82 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 83 
     | 
    
         
            +
                end
         
     | 
| 
      
 84 
     | 
    
         
            +
              end
         
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
            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::HostClusterVolumeMappingCreate
         
     | 
| 
      
 18 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 19 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 20 
     | 
    
         
            +
            describe AutosdeOpenapiClient::HostClusterVolumeMappingCreate do
         
     | 
| 
      
 21 
     | 
    
         
            +
              let(:instance) { AutosdeOpenapiClient::HostClusterVolumeMappingCreate.new }
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of HostClusterVolumeMappingCreate' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of HostClusterVolumeMappingCreate' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(instance).to be_instance_of(AutosdeOpenapiClient::HostClusterVolumeMappingCreate)
         
     | 
| 
      
 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 "lun"' 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 "volume"' 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,62 @@ 
     | 
|
| 
      
 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::HostClusterVolumeMappingResponse
         
     | 
| 
      
 18 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 19 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 20 
     | 
    
         
            +
            describe AutosdeOpenapiClient::HostClusterVolumeMappingResponse do
         
     | 
| 
      
 21 
     | 
    
         
            +
              let(:instance) { AutosdeOpenapiClient::HostClusterVolumeMappingResponse.new }
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of HostClusterVolumeMappingResponse' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of HostClusterVolumeMappingResponse' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(instance).to be_instance_of(AutosdeOpenapiClient::HostClusterVolumeMappingResponse)
         
     | 
| 
      
 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 "lun"' 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 
     | 
    
         
            +
              describe 'test attribute "volume"' 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 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,62 @@ 
     | 
|
| 
      
 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::HostClusterVolumeMapping
         
     | 
| 
      
 18 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 19 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 20 
     | 
    
         
            +
            describe AutosdeOpenapiClient::HostClusterVolumeMapping do
         
     | 
| 
      
 21 
     | 
    
         
            +
              let(:instance) { AutosdeOpenapiClient::HostClusterVolumeMapping.new }
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              describe 'test an instance of HostClusterVolumeMapping' do
         
     | 
| 
      
 24 
     | 
    
         
            +
                it 'should create an instance of HostClusterVolumeMapping' do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  expect(instance).to be_instance_of(AutosdeOpenapiClient::HostClusterVolumeMapping)
         
     | 
| 
      
 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 "lun"' 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 
     | 
    
         
            +
              describe 'test attribute "volume"' 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 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -41,6 +41,12 @@ describe AutosdeOpenapiClient::VolumeCreate do 
     | 
|
| 
       41 
41 
     | 
    
         
             
                end
         
     | 
| 
       42 
42 
     | 
    
         
             
              end
         
     | 
| 
       43 
43 
     | 
    
         | 
| 
      
 44 
     | 
    
         
            +
              describe 'test attribute "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 "name"' 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: 1.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.50
         
     | 
| 
       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- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2021-09-05 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: typhoeus
         
     | 
| 
         @@ -82,6 +82,15 @@ 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
         
     | 
| 
      
 90 
     | 
    
         
            +
            - docs/HostClusterVolumeMapping.md
         
     | 
| 
      
 91 
     | 
    
         
            +
            - docs/HostClusterVolumeMappingApi.md
         
     | 
| 
      
 92 
     | 
    
         
            +
            - docs/HostClusterVolumeMappingCreate.md
         
     | 
| 
      
 93 
     | 
    
         
            +
            - docs/HostClusterVolumeMappingResponse.md
         
     | 
| 
       85 
94 
     | 
    
         
             
            - docs/HostCreate.md
         
     | 
| 
       86 
95 
     | 
    
         
             
            - docs/HostVolumeConnection.md
         
     | 
| 
       87 
96 
     | 
    
         
             
            - docs/HostVolumeConnectionApi.md
         
     | 
| 
         @@ -144,6 +153,9 @@ files: 
     | 
|
| 
       144 
153 
     | 
    
         
             
            - lib/autosde_openapi_client/api/auto_sde_role_api.rb
         
     | 
| 
       145 
154 
     | 
    
         
             
            - lib/autosde_openapi_client/api/capability_translation_api.rb
         
     | 
| 
       146 
155 
     | 
    
         
             
            - lib/autosde_openapi_client/api/host_api.rb
         
     | 
| 
      
 156 
     | 
    
         
            +
            - lib/autosde_openapi_client/api/host_cluster_api.rb
         
     | 
| 
      
 157 
     | 
    
         
            +
            - lib/autosde_openapi_client/api/host_cluster_membership_api.rb
         
     | 
| 
      
 158 
     | 
    
         
            +
            - lib/autosde_openapi_client/api/host_cluster_volume_mapping_api.rb
         
     | 
| 
       147 
159 
     | 
    
         
             
            - lib/autosde_openapi_client/api/host_volume_connection_api.rb
         
     | 
| 
       148 
160 
     | 
    
         
             
            - lib/autosde_openapi_client/api/job_api.rb
         
     | 
| 
       149 
161 
     | 
    
         
             
            - lib/autosde_openapi_client/api/native_capability_api.rb
         
     | 
| 
         @@ -176,6 +188,12 @@ files: 
     | 
|
| 
       176 
188 
     | 
    
         
             
            - lib/autosde_openapi_client/models/capability_translation.rb
         
     | 
| 
       177 
189 
     | 
    
         
             
            - lib/autosde_openapi_client/models/capability_translation_create.rb
         
     | 
| 
       178 
190 
     | 
    
         
             
            - lib/autosde_openapi_client/models/host.rb
         
     | 
| 
      
 191 
     | 
    
         
            +
            - lib/autosde_openapi_client/models/host_cluster.rb
         
     | 
| 
      
 192 
     | 
    
         
            +
            - lib/autosde_openapi_client/models/host_cluster_create.rb
         
     | 
| 
      
 193 
     | 
    
         
            +
            - lib/autosde_openapi_client/models/host_cluster_membership.rb
         
     | 
| 
      
 194 
     | 
    
         
            +
            - lib/autosde_openapi_client/models/host_cluster_volume_mapping.rb
         
     | 
| 
      
 195 
     | 
    
         
            +
            - lib/autosde_openapi_client/models/host_cluster_volume_mapping_create.rb
         
     | 
| 
      
 196 
     | 
    
         
            +
            - lib/autosde_openapi_client/models/host_cluster_volume_mapping_response.rb
         
     | 
| 
       179 
197 
     | 
    
         
             
            - lib/autosde_openapi_client/models/host_create.rb
         
     | 
| 
       180 
198 
     | 
    
         
             
            - lib/autosde_openapi_client/models/host_volume_connection.rb
         
     | 
| 
       181 
199 
     | 
    
         
             
            - lib/autosde_openapi_client/models/host_volume_connection_create.rb
         
     | 
| 
         @@ -221,6 +239,9 @@ files: 
     | 
|
| 
       221 
239 
     | 
    
         
             
            - spec/api/auto_sde_role_api_spec.rb
         
     | 
| 
       222 
240 
     | 
    
         
             
            - spec/api/capability_translation_api_spec.rb
         
     | 
| 
       223 
241 
     | 
    
         
             
            - spec/api/host_api_spec.rb
         
     | 
| 
      
 242 
     | 
    
         
            +
            - spec/api/host_cluster_api_spec.rb
         
     | 
| 
      
 243 
     | 
    
         
            +
            - spec/api/host_cluster_membership_api_spec.rb
         
     | 
| 
      
 244 
     | 
    
         
            +
            - spec/api/host_cluster_volume_mapping_api_spec.rb
         
     | 
| 
       224 
245 
     | 
    
         
             
            - spec/api/host_volume_connection_api_spec.rb
         
     | 
| 
       225 
246 
     | 
    
         
             
            - spec/api/job_api_spec.rb
         
     | 
| 
       226 
247 
     | 
    
         
             
            - spec/api/native_capability_api_spec.rb
         
     | 
| 
         @@ -251,6 +272,12 @@ files: 
     | 
|
| 
       251 
272 
     | 
    
         
             
            - spec/models/auto_sde_role_spec.rb
         
     | 
| 
       252 
273 
     | 
    
         
             
            - spec/models/capability_translation_create_spec.rb
         
     | 
| 
       253 
274 
     | 
    
         
             
            - spec/models/capability_translation_spec.rb
         
     | 
| 
      
 275 
     | 
    
         
            +
            - spec/models/host_cluster_create_spec.rb
         
     | 
| 
      
 276 
     | 
    
         
            +
            - spec/models/host_cluster_membership_spec.rb
         
     | 
| 
      
 277 
     | 
    
         
            +
            - spec/models/host_cluster_spec.rb
         
     | 
| 
      
 278 
     | 
    
         
            +
            - spec/models/host_cluster_volume_mapping_create_spec.rb
         
     | 
| 
      
 279 
     | 
    
         
            +
            - spec/models/host_cluster_volume_mapping_response_spec.rb
         
     | 
| 
      
 280 
     | 
    
         
            +
            - spec/models/host_cluster_volume_mapping_spec.rb
         
     | 
| 
       254 
281 
     | 
    
         
             
            - spec/models/host_create_spec.rb
         
     | 
| 
       255 
282 
     | 
    
         
             
            - spec/models/host_spec.rb
         
     | 
| 
       256 
283 
     | 
    
         
             
            - spec/models/host_volume_connection_create_spec.rb
         
     | 
| 
         @@ -313,79 +340,88 @@ signing_key: 
     | 
|
| 
       313 
340 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       314 
341 
     | 
    
         
             
            summary: Site Manager API Ruby Gem
         
     | 
| 
       315 
342 
     | 
    
         
             
            test_files:
         
     | 
| 
       316 
     | 
    
         
            -
            - spec/api/ 
     | 
| 
       317 
     | 
    
         
            -
            - spec/api/ 
     | 
| 
      
 343 
     | 
    
         
            +
            - spec/api/host_api_spec.rb
         
     | 
| 
      
 344 
     | 
    
         
            +
            - spec/api/profile_api_spec.rb
         
     | 
| 
       318 
345 
     | 
    
         
             
            - spec/api/native_capability_api_spec.rb
         
     | 
| 
       319 
346 
     | 
    
         
             
            - spec/api/abstract_capability_api_spec.rb
         
     | 
| 
       320 
     | 
    
         
            -
            - spec/api/ 
     | 
| 
       321 
     | 
    
         
            -
            - spec/api/volume_safe_delete_api_spec.rb
         
     | 
| 
       322 
     | 
    
         
            -
            - spec/api/authentication_api_spec.rb
         
     | 
| 
      
 347 
     | 
    
         
            +
            - spec/api/volume_api_spec.rb
         
     | 
| 
       323 
348 
     | 
    
         
             
            - spec/api/account_api_spec.rb
         
     | 
| 
       324 
     | 
    
         
            -
            - spec/api/ 
     | 
| 
       325 
     | 
    
         
            -
            - spec/api/ 
     | 
| 
      
 349 
     | 
    
         
            +
            - spec/api/host_volume_connection_api_spec.rb
         
     | 
| 
      
 350 
     | 
    
         
            +
            - spec/api/storage_host_wwpn_candidates_api_spec.rb
         
     | 
| 
      
 351 
     | 
    
         
            +
            - spec/api/service_resource_attachment_api_spec.rb
         
     | 
| 
       326 
352 
     | 
    
         
             
            - spec/api/storage_system_api_spec.rb
         
     | 
| 
       327 
     | 
    
         
            -
            - spec/api/snapshot_api_spec.rb
         
     | 
| 
       328 
353 
     | 
    
         
             
            - spec/api/provisioning_strategy_api_spec.rb
         
     | 
| 
      
 354 
     | 
    
         
            +
            - spec/api/volume_safe_delete_api_spec.rb
         
     | 
| 
      
 355 
     | 
    
         
            +
            - spec/api/storage_host_api_spec.rb
         
     | 
| 
      
 356 
     | 
    
         
            +
            - spec/api/host_cluster_volume_mapping_api_spec.rb
         
     | 
| 
      
 357 
     | 
    
         
            +
            - spec/api/host_cluster_membership_api_spec.rb
         
     | 
| 
      
 358 
     | 
    
         
            +
            - spec/api/host_cluster_api_spec.rb
         
     | 
| 
      
 359 
     | 
    
         
            +
            - spec/api/snapshot_api_spec.rb
         
     | 
| 
      
 360 
     | 
    
         
            +
            - spec/api/storage_resource_api_spec.rb
         
     | 
| 
      
 361 
     | 
    
         
            +
            - spec/api/authentication_api_spec.rb
         
     | 
| 
       329 
362 
     | 
    
         
             
            - spec/api/service_api_spec.rb
         
     | 
| 
       330 
     | 
    
         
            -
            - spec/api/job_api_spec.rb
         
     | 
| 
       331 
     | 
    
         
            -
            - spec/api/storage_host_wwpn_candidates_api_spec.rb
         
     | 
| 
       332 
     | 
    
         
            -
            - spec/api/host_api_spec.rb
         
     | 
| 
       333 
363 
     | 
    
         
             
            - spec/api/capability_translation_api_spec.rb
         
     | 
| 
       334 
     | 
    
         
            -
            - spec/api/ 
     | 
| 
      
 364 
     | 
    
         
            +
            - spec/api/address_api_spec.rb
         
     | 
| 
      
 365 
     | 
    
         
            +
            - spec/api/job_api_spec.rb
         
     | 
| 
      
 366 
     | 
    
         
            +
            - spec/api/storage_host_volume_mapping_api_spec.rb
         
     | 
| 
      
 367 
     | 
    
         
            +
            - spec/api/system_type_api_spec.rb
         
     | 
| 
      
 368 
     | 
    
         
            +
            - spec/api/auto_sde_role_api_spec.rb
         
     | 
| 
       335 
369 
     | 
    
         
             
            - spec/api/auto_sde_project_api_spec.rb
         
     | 
| 
       336 
     | 
    
         
            -
            - spec/api/host_volume_connection_api_spec.rb
         
     | 
| 
       337 
     | 
    
         
            -
            - spec/api/profile_api_spec.rb
         
     | 
| 
       338 
     | 
    
         
            -
            - spec/api/service_resource_attachment_api_spec.rb
         
     | 
| 
       339 
     | 
    
         
            -
            - spec/api/volume_api_spec.rb
         
     | 
| 
       340 
370 
     | 
    
         
             
            - spec/api_client_spec.rb
         
     | 
| 
       341 
371 
     | 
    
         
             
            - spec/configuration_spec.rb
         
     | 
| 
       342 
372 
     | 
    
         
             
            - spec/models/volume_create_spec.rb
         
     | 
| 
       343 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       344 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       345 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       346 
     | 
    
         
            -
            - spec/models/address_create_spec.rb
         
     | 
| 
       347 
     | 
    
         
            -
            - spec/models/storage_resource_response_spec.rb
         
     | 
| 
       348 
     | 
    
         
            -
            - spec/models/snapshot_spec.rb
         
     | 
| 
       349 
     | 
    
         
            -
            - spec/models/native_capability_spec.rb
         
     | 
| 
       350 
     | 
    
         
            -
            - spec/models/authentication_spec.rb
         
     | 
| 
       351 
     | 
    
         
            -
            - spec/models/system_type_create_spec.rb
         
     | 
| 
       352 
     | 
    
         
            -
            - spec/models/storage_resource_spec.rb
         
     | 
| 
       353 
     | 
    
         
            -
            - spec/models/storage_host_update_spec.rb
         
     | 
| 
       354 
     | 
    
         
            -
            - spec/models/provisioning_strategy_spec.rb
         
     | 
| 
       355 
     | 
    
         
            -
            - spec/models/account_post_request_spec.rb
         
     | 
| 
      
 373 
     | 
    
         
            +
            - spec/models/storage_host_wwpn_candidates_spec.rb
         
     | 
| 
      
 374 
     | 
    
         
            +
            - spec/models/storage_host_create_spec.rb
         
     | 
| 
      
 375 
     | 
    
         
            +
            - spec/models/auto_sde_role_spec.rb
         
     | 
| 
       356 
376 
     | 
    
         
             
            - spec/models/volume_spec.rb
         
     | 
| 
       357 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       358 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       359 
     | 
    
         
            -
            - spec/models/service_create_spec.rb
         
     | 
| 
       360 
     | 
    
         
            -
            - spec/models/capability_translation_spec.rb
         
     | 
| 
       361 
     | 
    
         
            -
            - spec/models/host_volume_connection_spec.rb
         
     | 
| 
       362 
     | 
    
         
            -
            - spec/models/volume_safe_delete_spec.rb
         
     | 
| 
       363 
     | 
    
         
            -
            - spec/models/storage_system_update_spec.rb
         
     | 
| 
       364 
     | 
    
         
            -
            - spec/models/auth_response_spec.rb
         
     | 
| 
      
 377 
     | 
    
         
            +
            - spec/models/profile_spec.rb
         
     | 
| 
      
 378 
     | 
    
         
            +
            - spec/models/storage_host_volume_mapping_spec.rb
         
     | 
| 
       365 
379 
     | 
    
         
             
            - spec/models/system_type_spec.rb
         
     | 
| 
       366 
     | 
    
         
            -
            - spec/models/storage_system_spec.rb
         
     | 
| 
       367 
     | 
    
         
            -
            - spec/models/snapshot_create_spec.rb
         
     | 
| 
       368 
380 
     | 
    
         
             
            - spec/models/storage_host_response_spec.rb
         
     | 
| 
       369 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       370 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
      
 381 
     | 
    
         
            +
            - spec/models/storage_host_volume_mapping_create_spec.rb
         
     | 
| 
      
 382 
     | 
    
         
            +
            - spec/models/host_cluster_create_spec.rb
         
     | 
| 
       371 
383 
     | 
    
         
             
            - spec/models/storage_resource_create_spec.rb
         
     | 
| 
       372 
     | 
    
         
            -
            - spec/models/job_spec.rb
         
     | 
| 
       373 
384 
     | 
    
         
             
            - spec/models/storage_host_spec.rb
         
     | 
| 
       374 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
      
 385 
     | 
    
         
            +
            - spec/models/address_spec.rb
         
     | 
| 
      
 386 
     | 
    
         
            +
            - spec/models/host_volume_connection_create_spec.rb
         
     | 
| 
      
 387 
     | 
    
         
            +
            - spec/models/volume_safe_delete_spec.rb
         
     | 
| 
       375 
388 
     | 
    
         
             
            - spec/models/host_spec.rb
         
     | 
| 
       376 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       377 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
      
 389 
     | 
    
         
            +
            - spec/models/snapshot_spec.rb
         
     | 
| 
      
 390 
     | 
    
         
            +
            - spec/models/storage_system_update_spec.rb
         
     | 
| 
      
 391 
     | 
    
         
            +
            - spec/models/account_post_request_spec.rb
         
     | 
| 
      
 392 
     | 
    
         
            +
            - spec/models/auth_response_spec.rb
         
     | 
| 
      
 393 
     | 
    
         
            +
            - spec/models/service_create_spec.rb
         
     | 
| 
       378 
394 
     | 
    
         
             
            - spec/models/service_spec.rb
         
     | 
| 
      
 395 
     | 
    
         
            +
            - spec/models/abstract_capability_spec.rb
         
     | 
| 
      
 396 
     | 
    
         
            +
            - spec/models/host_cluster_volume_mapping_create_spec.rb
         
     | 
| 
      
 397 
     | 
    
         
            +
            - spec/models/host_cluster_volume_mapping_response_spec.rb
         
     | 
| 
      
 398 
     | 
    
         
            +
            - spec/models/host_cluster_membership_spec.rb
         
     | 
| 
       379 
399 
     | 
    
         
             
            - spec/models/volume_response_spec.rb
         
     | 
| 
       380 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       381 
     | 
    
         
            -
            - spec/models/storage_host_volume_mapping_response_spec.rb
         
     | 
| 
      
 400 
     | 
    
         
            +
            - spec/models/authentication_spec.rb
         
     | 
| 
       382 
401 
     | 
    
         
             
            - spec/models/account_post_response_spec.rb
         
     | 
| 
       383 
     | 
    
         
            -
            - spec/models/volume_update_spec.rb
         
     | 
| 
       384 
     | 
    
         
            -
            - spec/models/auto_sde_role_spec.rb
         
     | 
| 
       385 
     | 
    
         
            -
            - spec/models/capability_translation_create_spec.rb
         
     | 
| 
       386 
     | 
    
         
            -
            - spec/models/storage_host_volume_mapping_spec.rb
         
     | 
| 
       387 
     | 
    
         
            -
            - spec/models/storage_host_wwpn_candidates_spec.rb
         
     | 
| 
       388 
     | 
    
         
            -
            - spec/models/profile_spec.rb
         
     | 
| 
       389 
402 
     | 
    
         
             
            - spec/models/storage_system_create_spec.rb
         
     | 
| 
      
 403 
     | 
    
         
            +
            - spec/models/storage_resource_spec.rb
         
     | 
| 
      
 404 
     | 
    
         
            +
            - spec/models/snapshot_create_spec.rb
         
     | 
| 
      
 405 
     | 
    
         
            +
            - spec/models/host_volume_connection_spec.rb
         
     | 
| 
      
 406 
     | 
    
         
            +
            - spec/models/host_cluster_volume_mapping_spec.rb
         
     | 
| 
      
 407 
     | 
    
         
            +
            - spec/models/host_cluster_spec.rb
         
     | 
| 
      
 408 
     | 
    
         
            +
            - spec/models/job_spec.rb
         
     | 
| 
      
 409 
     | 
    
         
            +
            - spec/models/job_create_spec.rb
         
     | 
| 
      
 410 
     | 
    
         
            +
            - spec/models/storage_system_spec.rb
         
     | 
| 
      
 411 
     | 
    
         
            +
            - spec/models/service_resource_attachment_spec.rb
         
     | 
| 
      
 412 
     | 
    
         
            +
            - spec/models/system_type_create_spec.rb
         
     | 
| 
      
 413 
     | 
    
         
            +
            - spec/models/capability_translation_create_spec.rb
         
     | 
| 
      
 414 
     | 
    
         
            +
            - spec/models/volume_safe_delete_create_spec.rb
         
     | 
| 
      
 415 
     | 
    
         
            +
            - spec/models/service_abstract_capability_value_spec.rb
         
     | 
| 
      
 416 
     | 
    
         
            +
            - spec/models/host_create_spec.rb
         
     | 
| 
      
 417 
     | 
    
         
            +
            - spec/models/address_create_spec.rb
         
     | 
| 
      
 418 
     | 
    
         
            +
            - spec/models/storage_resource_response_spec.rb
         
     | 
| 
      
 419 
     | 
    
         
            +
            - spec/models/native_capability_spec.rb
         
     | 
| 
      
 420 
     | 
    
         
            +
            - spec/models/account_spec.rb
         
     | 
| 
      
 421 
     | 
    
         
            +
            - spec/models/storage_host_update_spec.rb
         
     | 
| 
      
 422 
     | 
    
         
            +
            - spec/models/volume_update_spec.rb
         
     | 
| 
      
 423 
     | 
    
         
            +
            - spec/models/storage_host_volume_mapping_response_spec.rb
         
     | 
| 
       390 
424 
     | 
    
         
             
            - spec/models/auto_sde_project_spec.rb
         
     | 
| 
      
 425 
     | 
    
         
            +
            - spec/models/capability_translation_spec.rb
         
     | 
| 
      
 426 
     | 
    
         
            +
            - spec/models/provisioning_strategy_spec.rb
         
     | 
| 
       391 
427 
     | 
    
         
             
            - spec/spec_helper.rb
         
     |