autosde_openapi_client 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/docs/Volume.md +3 -1
- data/docs/VolumeCreate.md +3 -1
- data/docs/VolumeResponse.md +3 -1
- data/lib/autosde_openapi_client/models/volume.rb +14 -4
- data/lib/autosde_openapi_client/models/volume_create.rb +14 -4
- data/lib/autosde_openapi_client/models/volume_response.rb +14 -4
- data/lib/autosde_openapi_client/version.rb +2 -2
- data/spec/models/volume_create_spec.rb +6 -0
- data/spec/models/volume_response_spec.rb +6 -0
- data/spec/models/volume_spec.rb +6 -0
- metadata +82 -82
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 165392a4f71228a21273d335c5f92d7ac3dc2a49f34adb03d1de4ba392110f96
         | 
| 4 | 
            +
              data.tar.gz: 12884a8fd70c591a679f4792ade6e28cfec3ad0bb85df6cfc65c8c4cb370abe0
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 48df2ff117b82845389c36fa43e44193e11195ecdac9442cbc92ed2c68cf59c997d7ecd699bca294b29d1b5181baa877770a0f5a0af34000f5dee8c4e3a14977
         | 
| 7 | 
            +
              data.tar.gz: 91d92e01941bd98be7a2dc44db3fb48ebcc2515756b4a1709f06b61f005a602928d01af6699819ba24572e46995cc3dc8442a50fbd5ea22a3e126ecd3847c96b
         | 
    
        data/docs/Volume.md
    CHANGED
    
    | @@ -14,6 +14,7 @@ | |
| 14 14 | 
             
            | **storage_resource** | [**StorageResource**](StorageResource.md) |  | [optional] |
         | 
| 15 15 | 
             
            | **unmapped_since** | **Time** | unmapped_since | [optional] |
         | 
| 16 16 | 
             
            | **uuid** | **String** | uuid | [optional] |
         | 
| 17 | 
            +
            | **volume_name** | **String** | volume_name | [optional] |
         | 
| 17 18 |  | 
| 18 19 | 
             
            ## Example
         | 
| 19 20 |  | 
| @@ -30,7 +31,8 @@ instance = AutosdeOpenapiClient::Volume.new( | |
| 30 31 | 
             
              status: null,
         | 
| 31 32 | 
             
              storage_resource: null,
         | 
| 32 33 | 
             
              unmapped_since: null,
         | 
| 33 | 
            -
              uuid: null
         | 
| 34 | 
            +
              uuid: null,
         | 
| 35 | 
            +
              volume_name: null
         | 
| 34 36 | 
             
            )
         | 
| 35 37 | 
             
            ```
         | 
| 36 38 |  | 
    
        data/docs/VolumeCreate.md
    CHANGED
    
    | @@ -13,6 +13,7 @@ | |
| 13 13 | 
             
            | **status** | **String** | status | [optional] |
         | 
| 14 14 | 
             
            | **unmapped_since** | **Time** | unmapped_since | [optional] |
         | 
| 15 15 | 
             
            | **uuid** | **String** | uuid | [optional] |
         | 
| 16 | 
            +
            | **volume_name** | **String** | volume_name | [optional] |
         | 
| 16 17 |  | 
| 17 18 | 
             
            ## Example
         | 
| 18 19 |  | 
| @@ -28,7 +29,8 @@ instance = AutosdeOpenapiClient::VolumeCreate.new( | |
| 28 29 | 
             
              size: null,
         | 
| 29 30 | 
             
              status: null,
         | 
| 30 31 | 
             
              unmapped_since: null,
         | 
| 31 | 
            -
              uuid: null
         | 
| 32 | 
            +
              uuid: null,
         | 
| 33 | 
            +
              volume_name: null
         | 
| 32 34 | 
             
            )
         | 
| 33 35 | 
             
            ```
         | 
| 34 36 |  | 
    
        data/docs/VolumeResponse.md
    CHANGED
    
    | @@ -14,6 +14,7 @@ | |
| 14 14 | 
             
            | **storage_resource** | **String** | !!uuid of storage_resource | [optional] |
         | 
| 15 15 | 
             
            | **unmapped_since** | **Time** | unmapped_since | [optional] |
         | 
| 16 16 | 
             
            | **uuid** | **String** | uuid | [optional] |
         | 
| 17 | 
            +
            | **volume_name** | **String** | volume_name | [optional] |
         | 
| 17 18 |  | 
| 18 19 | 
             
            ## Example
         | 
| 19 20 |  | 
| @@ -30,7 +31,8 @@ instance = AutosdeOpenapiClient::VolumeResponse.new( | |
| 30 31 | 
             
              status: null,
         | 
| 31 32 | 
             
              storage_resource: null,
         | 
| 32 33 | 
             
              unmapped_since: null,
         | 
| 33 | 
            -
              uuid: null
         | 
| 34 | 
            +
              uuid: null,
         | 
| 35 | 
            +
              volume_name: null
         | 
| 34 36 | 
             
            )
         | 
| 35 37 | 
             
            ```
         | 
| 36 38 |  | 
| @@ -43,6 +43,9 @@ module AutosdeOpenapiClient | |
| 43 43 | 
             
                # uuid
         | 
| 44 44 | 
             
                attr_accessor :uuid
         | 
| 45 45 |  | 
| 46 | 
            +
                # volume_name
         | 
| 47 | 
            +
                attr_accessor :volume_name
         | 
| 48 | 
            +
             | 
| 46 49 | 
             
                class EnumAttributeValidator
         | 
| 47 50 | 
             
                  attr_reader :datatype
         | 
| 48 51 | 
             
                  attr_reader :allowable_values
         | 
| @@ -77,7 +80,8 @@ module AutosdeOpenapiClient | |
| 77 80 | 
             
                    :'status' => :'status',
         | 
| 78 81 | 
             
                    :'storage_resource' => :'storage_resource',
         | 
| 79 82 | 
             
                    :'unmapped_since' => :'unmapped_since',
         | 
| 80 | 
            -
                    :'uuid' => :'uuid'
         | 
| 83 | 
            +
                    :'uuid' => :'uuid',
         | 
| 84 | 
            +
                    :'volume_name' => :'volume_name'
         | 
| 81 85 | 
             
                  }
         | 
| 82 86 | 
             
                end
         | 
| 83 87 |  | 
| @@ -98,7 +102,8 @@ module AutosdeOpenapiClient | |
| 98 102 | 
             
                    :'status' => :'String',
         | 
| 99 103 | 
             
                    :'storage_resource' => :'StorageResource',
         | 
| 100 104 | 
             
                    :'unmapped_since' => :'Time',
         | 
| 101 | 
            -
                    :'uuid' => :'String'
         | 
| 105 | 
            +
                    :'uuid' => :'String',
         | 
| 106 | 
            +
                    :'volume_name' => :'String'
         | 
| 102 107 | 
             
                  }
         | 
| 103 108 | 
             
                end
         | 
| 104 109 |  | 
| @@ -164,6 +169,10 @@ module AutosdeOpenapiClient | |
| 164 169 | 
             
                  if attributes.key?(:'uuid')
         | 
| 165 170 | 
             
                    self.uuid = attributes[:'uuid']
         | 
| 166 171 | 
             
                  end
         | 
| 172 | 
            +
             | 
| 173 | 
            +
                  if attributes.key?(:'volume_name')
         | 
| 174 | 
            +
                    self.volume_name = attributes[:'volume_name']
         | 
| 175 | 
            +
                  end
         | 
| 167 176 | 
             
                end
         | 
| 168 177 |  | 
| 169 178 | 
             
                # Show invalid properties with the reasons. Usually used together with valid?
         | 
| @@ -210,7 +219,8 @@ module AutosdeOpenapiClient | |
| 210 219 | 
             
                      status == o.status &&
         | 
| 211 220 | 
             
                      storage_resource == o.storage_resource &&
         | 
| 212 221 | 
             
                      unmapped_since == o.unmapped_since &&
         | 
| 213 | 
            -
                      uuid == o.uuid
         | 
| 222 | 
            +
                      uuid == o.uuid &&
         | 
| 223 | 
            +
                      volume_name == o.volume_name
         | 
| 214 224 | 
             
                end
         | 
| 215 225 |  | 
| 216 226 | 
             
                # @see the `==` method
         | 
| @@ -222,7 +232,7 @@ module AutosdeOpenapiClient | |
| 222 232 | 
             
                # Calculates hash code according to all attributes.
         | 
| 223 233 | 
             
                # @return [Integer] Hash code
         | 
| 224 234 | 
             
                def hash
         | 
| 225 | 
            -
                  [compliant, component_state, historical_service, name, service, size, status, storage_resource, unmapped_since, uuid].hash
         | 
| 235 | 
            +
                  [compliant, component_state, historical_service, name, service, size, status, storage_resource, unmapped_since, uuid, volume_name].hash
         | 
| 226 236 | 
             
                end
         | 
| 227 237 |  | 
| 228 238 | 
             
                # Builds the object from hash
         | 
| @@ -43,6 +43,9 @@ module AutosdeOpenapiClient | |
| 43 43 | 
             
                # uuid
         | 
| 44 44 | 
             
                attr_accessor :uuid
         | 
| 45 45 |  | 
| 46 | 
            +
                # volume_name
         | 
| 47 | 
            +
                attr_accessor :volume_name
         | 
| 48 | 
            +
             | 
| 46 49 | 
             
                class EnumAttributeValidator
         | 
| 47 50 | 
             
                  attr_reader :datatype
         | 
| 48 51 | 
             
                  attr_reader :allowable_values
         | 
| @@ -76,7 +79,8 @@ module AutosdeOpenapiClient | |
| 76 79 | 
             
                    :'size' => :'size',
         | 
| 77 80 | 
             
                    :'status' => :'status',
         | 
| 78 81 | 
             
                    :'unmapped_since' => :'unmapped_since',
         | 
| 79 | 
            -
                    :'uuid' => :'uuid'
         | 
| 82 | 
            +
                    :'uuid' => :'uuid',
         | 
| 83 | 
            +
                    :'volume_name' => :'volume_name'
         | 
| 80 84 | 
             
                  }
         | 
| 81 85 | 
             
                end
         | 
| 82 86 |  | 
| @@ -96,7 +100,8 @@ module AutosdeOpenapiClient | |
| 96 100 | 
             
                    :'size' => :'Integer',
         | 
| 97 101 | 
             
                    :'status' => :'String',
         | 
| 98 102 | 
             
                    :'unmapped_since' => :'Time',
         | 
| 99 | 
            -
                    :'uuid' => :'String'
         | 
| 103 | 
            +
                    :'uuid' => :'String',
         | 
| 104 | 
            +
                    :'volume_name' => :'String'
         | 
| 100 105 | 
             
                  }
         | 
| 101 106 | 
             
                end
         | 
| 102 107 |  | 
| @@ -160,6 +165,10 @@ module AutosdeOpenapiClient | |
| 160 165 | 
             
                  if attributes.key?(:'uuid')
         | 
| 161 166 | 
             
                    self.uuid = attributes[:'uuid']
         | 
| 162 167 | 
             
                  end
         | 
| 168 | 
            +
             | 
| 169 | 
            +
                  if attributes.key?(:'volume_name')
         | 
| 170 | 
            +
                    self.volume_name = attributes[:'volume_name']
         | 
| 171 | 
            +
                  end
         | 
| 163 172 | 
             
                end
         | 
| 164 173 |  | 
| 165 174 | 
             
                # Show invalid properties with the reasons. Usually used together with valid?
         | 
| @@ -205,7 +214,8 @@ module AutosdeOpenapiClient | |
| 205 214 | 
             
                      size == o.size &&
         | 
| 206 215 | 
             
                      status == o.status &&
         | 
| 207 216 | 
             
                      unmapped_since == o.unmapped_since &&
         | 
| 208 | 
            -
                      uuid == o.uuid
         | 
| 217 | 
            +
                      uuid == o.uuid &&
         | 
| 218 | 
            +
                      volume_name == o.volume_name
         | 
| 209 219 | 
             
                end
         | 
| 210 220 |  | 
| 211 221 | 
             
                # @see the `==` method
         | 
| @@ -217,7 +227,7 @@ module AutosdeOpenapiClient | |
| 217 227 | 
             
                # Calculates hash code according to all attributes.
         | 
| 218 228 | 
             
                # @return [Integer] Hash code
         | 
| 219 229 | 
             
                def hash
         | 
| 220 | 
            -
                  [compliant, component_state, count, name, service, size, status, unmapped_since, uuid].hash
         | 
| 230 | 
            +
                  [compliant, component_state, count, name, service, size, status, unmapped_since, uuid, volume_name].hash
         | 
| 221 231 | 
             
                end
         | 
| 222 232 |  | 
| 223 233 | 
             
                # Builds the object from hash
         | 
| @@ -45,6 +45,9 @@ module AutosdeOpenapiClient | |
| 45 45 | 
             
                # uuid
         | 
| 46 46 | 
             
                attr_accessor :uuid
         | 
| 47 47 |  | 
| 48 | 
            +
                # volume_name
         | 
| 49 | 
            +
                attr_accessor :volume_name
         | 
| 50 | 
            +
             | 
| 48 51 | 
             
                class EnumAttributeValidator
         | 
| 49 52 | 
             
                  attr_reader :datatype
         | 
| 50 53 | 
             
                  attr_reader :allowable_values
         | 
| @@ -79,7 +82,8 @@ module AutosdeOpenapiClient | |
| 79 82 | 
             
                    :'status' => :'status',
         | 
| 80 83 | 
             
                    :'storage_resource' => :'storage_resource',
         | 
| 81 84 | 
             
                    :'unmapped_since' => :'unmapped_since',
         | 
| 82 | 
            -
                    :'uuid' => :'uuid'
         | 
| 85 | 
            +
                    :'uuid' => :'uuid',
         | 
| 86 | 
            +
                    :'volume_name' => :'volume_name'
         | 
| 83 87 | 
             
                  }
         | 
| 84 88 | 
             
                end
         | 
| 85 89 |  | 
| @@ -100,7 +104,8 @@ module AutosdeOpenapiClient | |
| 100 104 | 
             
                    :'status' => :'String',
         | 
| 101 105 | 
             
                    :'storage_resource' => :'String',
         | 
| 102 106 | 
             
                    :'unmapped_since' => :'Time',
         | 
| 103 | 
            -
                    :'uuid' => :'String'
         | 
| 107 | 
            +
                    :'uuid' => :'String',
         | 
| 108 | 
            +
                    :'volume_name' => :'String'
         | 
| 104 109 | 
             
                  }
         | 
| 105 110 | 
             
                end
         | 
| 106 111 |  | 
| @@ -166,6 +171,10 @@ module AutosdeOpenapiClient | |
| 166 171 | 
             
                  if attributes.key?(:'uuid')
         | 
| 167 172 | 
             
                    self.uuid = attributes[:'uuid']
         | 
| 168 173 | 
             
                  end
         | 
| 174 | 
            +
             | 
| 175 | 
            +
                  if attributes.key?(:'volume_name')
         | 
| 176 | 
            +
                    self.volume_name = attributes[:'volume_name']
         | 
| 177 | 
            +
                  end
         | 
| 169 178 | 
             
                end
         | 
| 170 179 |  | 
| 171 180 | 
             
                # Show invalid properties with the reasons. Usually used together with valid?
         | 
| @@ -212,7 +221,8 @@ module AutosdeOpenapiClient | |
| 212 221 | 
             
                      status == o.status &&
         | 
| 213 222 | 
             
                      storage_resource == o.storage_resource &&
         | 
| 214 223 | 
             
                      unmapped_since == o.unmapped_since &&
         | 
| 215 | 
            -
                      uuid == o.uuid
         | 
| 224 | 
            +
                      uuid == o.uuid &&
         | 
| 225 | 
            +
                      volume_name == o.volume_name
         | 
| 216 226 | 
             
                end
         | 
| 217 227 |  | 
| 218 228 | 
             
                # @see the `==` method
         | 
| @@ -224,7 +234,7 @@ module AutosdeOpenapiClient | |
| 224 234 | 
             
                # Calculates hash code according to all attributes.
         | 
| 225 235 | 
             
                # @return [Integer] Hash code
         | 
| 226 236 | 
             
                def hash
         | 
| 227 | 
            -
                  [compliant, component_state, historical_service, name, service, size, status, storage_resource, unmapped_since, uuid].hash
         | 
| 237 | 
            +
                  [compliant, component_state, historical_service, name, service, size, status, storage_resource, unmapped_since, uuid, volume_name].hash
         | 
| 228 238 | 
             
                end
         | 
| 229 239 |  | 
| 230 240 | 
             
                # 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.0. | 
| 6 | 
            +
            The version of the OpenAPI document: 2.0.1
         | 
| 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.0. | 
| 14 | 
            +
              VERSION = '2.0.1'
         | 
| 15 15 | 
             
            end
         | 
| @@ -89,4 +89,10 @@ describe AutosdeOpenapiClient::VolumeResponse do | |
| 89 89 | 
             
                end
         | 
| 90 90 | 
             
              end
         | 
| 91 91 |  | 
| 92 | 
            +
              describe 'test attribute "volume_name"' do
         | 
| 93 | 
            +
                it 'should work' do
         | 
| 94 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 95 | 
            +
                end
         | 
| 96 | 
            +
              end
         | 
| 97 | 
            +
             | 
| 92 98 | 
             
            end
         | 
    
        data/spec/models/volume_spec.rb
    CHANGED
    
    
    
        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.0. | 
| 4 | 
            +
              version: 2.0.1
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - OpenAPI-Generator
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2022- | 
| 11 | 
            +
            date: 2022-11-02 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/ | 
| 405 | 
            -
            - spec/api/celery_config_api_spec.rb
         | 
| 406 | 
            -
            - spec/api/host_cluster_api_spec.rb
         | 
| 407 | 
            -
            - spec/api/service_abstract_capability_value_api_spec.rb
         | 
| 408 | 
            -
            - spec/api/host_api_spec.rb
         | 
| 409 | 
            -
            - spec/api/address_api_spec.rb
         | 
| 410 | 
            -
            - spec/api/service_api_spec.rb
         | 
| 411 | 
            -
            - spec/api/volume_api_spec.rb
         | 
| 412 | 
            -
            - spec/api/refresh_system_api_spec.rb
         | 
| 413 | 
            -
            - spec/api/auto_sde_role_api_spec.rb
         | 
| 404 | 
            +
            - spec/api/volume_safe_delete_api_spec.rb
         | 
| 414 405 | 
             
            - spec/api/authentication_api_spec.rb
         | 
| 415 | 
            -
            - spec/api/ | 
| 416 | 
            -
            - spec/api/job_api_spec.rb
         | 
| 406 | 
            +
            - spec/api/storage_resource_api_spec.rb
         | 
| 417 407 | 
             
            - spec/api/abstract_capability_api_spec.rb
         | 
| 418 | 
            -
            - spec/api/native_capability_api_spec.rb
         | 
| 419 | 
            -
            - spec/api/profile_api_spec.rb
         | 
| 420 | 
            -
            - spec/api/storage_host_wwpn_candidates_api_spec.rb
         | 
| 421 | 
            -
            - spec/api/storage_host_api_spec.rb
         | 
| 422 408 | 
             
            - spec/api/snapshot_api_spec.rb
         | 
| 423 | 
            -
            - spec/api/ | 
| 424 | 
            -
            - spec/api/auto_sde_project_api_spec.rb
         | 
| 425 | 
            -
            - spec/api/host_cluster_volume_mapping_api_spec.rb
         | 
| 409 | 
            +
            - spec/api/service_abstract_capability_value_api_spec.rb
         | 
| 426 410 | 
             
            - spec/api/storage_hosts_mapping_api_spec.rb
         | 
| 427 | 
            -
            - spec/api/ | 
| 428 | 
            -
            - spec/api/ | 
| 429 | 
            -
            - spec/api/ | 
| 411 | 
            +
            - spec/api/native_capability_api_spec.rb
         | 
| 412 | 
            +
            - spec/api/host_cluster_volume_mapping_api_spec.rb
         | 
| 413 | 
            +
            - spec/api/profile_api_spec.rb
         | 
| 414 | 
            +
            - spec/api/capability_translation_api_spec.rb
         | 
| 415 | 
            +
            - spec/api/service_api_spec.rb
         | 
| 416 | 
            +
            - spec/api/auto_sde_role_api_spec.rb
         | 
| 430 417 | 
             
            - spec/api/host_cluster_membership_api_spec.rb
         | 
| 418 | 
            +
            - spec/api/service_resource_attachment_api_spec.rb
         | 
| 431 419 | 
             
            - spec/api/user_api_spec.rb
         | 
| 432 | 
            -
            - spec/api/ | 
| 420 | 
            +
            - spec/api/job_api_spec.rb
         | 
| 421 | 
            +
            - spec/api/volume_api_spec.rb
         | 
| 422 | 
            +
            - spec/api/auto_sde_project_api_spec.rb
         | 
| 433 423 | 
             
            - spec/api/validate_system_api_spec.rb
         | 
| 434 | 
            -
            - spec/api/ | 
| 424 | 
            +
            - spec/api/provisioning_strategy_api_spec.rb
         | 
| 425 | 
            +
            - spec/api/system_type_api_spec.rb
         | 
| 426 | 
            +
            - spec/api/storage_host_api_spec.rb
         | 
| 427 | 
            +
            - spec/api/storage_host_wwpn_candidates_api_spec.rb
         | 
| 428 | 
            +
            - spec/api/refresh_system_api_spec.rb
         | 
| 429 | 
            +
            - spec/api/host_api_spec.rb
         | 
| 430 | 
            +
            - spec/api/address_api_spec.rb
         | 
| 435 431 | 
             
            - spec/api/account_api_spec.rb
         | 
| 436 | 
            -
            - spec/api/ | 
| 432 | 
            +
            - spec/api/event_api_spec.rb
         | 
| 433 | 
            +
            - spec/api/celery_config_api_spec.rb
         | 
| 434 | 
            +
            - spec/api/storage_system_api_spec.rb
         | 
| 435 | 
            +
            - spec/api/host_cluster_api_spec.rb
         | 
| 436 | 
            +
            - spec/api/host_volume_connection_api_spec.rb
         | 
| 437 437 | 
             
            - spec/api_client_spec.rb
         | 
| 438 438 | 
             
            - spec/configuration_spec.rb
         | 
| 439 | 
            -
            - spec/models/ | 
| 440 | 
            -
            - spec/models/ | 
| 441 | 
            -
            - spec/models/ | 
| 442 | 
            -
            - spec/models/user_create_spec.rb
         | 
| 443 | 
            -
            - spec/models/host_cluster_volume_mapping_create_spec.rb
         | 
| 444 | 
            -
            - spec/models/host_cluster_create_spec.rb
         | 
| 439 | 
            +
            - spec/models/abstract_capability_response_spec.rb
         | 
| 440 | 
            +
            - spec/models/native_capability_spec.rb
         | 
| 441 | 
            +
            - spec/models/storage_system_update_spec.rb
         | 
| 445 442 | 
             
            - spec/models/storage_resource_spec.rb
         | 
| 446 | 
            -
            - spec/models/storage_hosts_mapping_response_spec.rb
         | 
| 447 | 
            -
            - spec/models/storage_resource_response_spec.rb
         | 
| 448 | 
            -
            - spec/models/volume_response_spec.rb
         | 
| 449 | 
            -
            - spec/models/host_cluster_membership_spec.rb
         | 
| 450 443 | 
             
            - spec/models/async_response_spec.rb
         | 
| 451 | 
            -
            - spec/models/ | 
| 444 | 
            +
            - spec/models/host_cluster_volume_mapping_create_spec.rb
         | 
| 445 | 
            +
            - spec/models/storage_resource_update_spec.rb
         | 
| 446 | 
            +
            - spec/models/service_resource_attachment_spec.rb
         | 
| 447 | 
            +
            - spec/models/storage_hosts_mapping_spec.rb
         | 
| 448 | 
            +
            - spec/models/host_cluster_spec.rb
         | 
| 449 | 
            +
            - spec/models/service_abstract_capability_value_response_spec.rb
         | 
| 452 450 | 
             
            - spec/models/storage_host_wwpn_candidates_spec.rb
         | 
| 451 | 
            +
            - spec/models/account_post_response_spec.rb
         | 
| 452 | 
            +
            - spec/models/user_create_spec.rb
         | 
| 453 | 
            +
            - spec/models/storage_host_spec.rb
         | 
| 454 | 
            +
            - spec/models/storage_system_response_spec.rb
         | 
| 455 | 
            +
            - spec/models/service_abstract_capability_value_spec.rb
         | 
| 453 456 | 
             
            - spec/models/volume_spec.rb
         | 
| 454 | 
            -
            - spec/models/ | 
| 455 | 
            -
            - spec/models/ | 
| 456 | 
            -
            - spec/models/ | 
| 457 | 
            +
            - spec/models/auto_sde_role_spec.rb
         | 
| 458 | 
            +
            - spec/models/host_cluster_volume_mapping_response_spec.rb
         | 
| 459 | 
            +
            - spec/models/event_response_spec.rb
         | 
| 460 | 
            +
            - spec/models/user_spec.rb
         | 
| 461 | 
            +
            - spec/models/host_create_spec.rb
         | 
| 462 | 
            +
            - spec/models/event_spec.rb
         | 
| 463 | 
            +
            - spec/models/storage_system_create_spec.rb
         | 
| 464 | 
            +
            - spec/models/authentication_spec.rb
         | 
| 465 | 
            +
            - spec/models/provisioning_strategy_spec.rb
         | 
| 466 | 
            +
            - spec/models/job_spec.rb
         | 
| 467 | 
            +
            - spec/models/storage_resource_response_spec.rb
         | 
| 468 | 
            +
            - spec/models/host_volume_connection_create_spec.rb
         | 
| 469 | 
            +
            - spec/models/auto_sde_project_spec.rb
         | 
| 457 470 | 
             
            - spec/models/system_type_spec.rb
         | 
| 458 | 
            -
            - spec/models/ | 
| 459 | 
            -
            - spec/models/storage_system_response_spec.rb
         | 
| 471 | 
            +
            - spec/models/storage_resource_create_spec.rb
         | 
| 460 472 | 
             
            - spec/models/auth_response_spec.rb
         | 
| 473 | 
            +
            - spec/models/capability_translation_spec.rb
         | 
| 461 474 | 
             
            - spec/models/abstract_capability_spec.rb
         | 
| 462 | 
            -
            - spec/models/storage_host_spec.rb
         | 
| 463 | 
            -
            - spec/models/storage_resource_update_spec.rb
         | 
| 464 | 
            -
            - spec/models/provisioning_strategy_spec.rb
         | 
| 465 | 
            -
            - spec/models/volume_update_spec.rb
         | 
| 466 | 
            -
            - spec/models/job_spec.rb
         | 
| 467 475 | 
             
            - spec/models/host_cluster_response_spec.rb
         | 
| 468 | 
            -
            - spec/models/ | 
| 469 | 
            -
            - spec/models/ | 
| 470 | 
            -
            - spec/models/ | 
| 471 | 
            -
            - spec/models/ | 
| 472 | 
            -
            - spec/models/storage_system_update_spec.rb
         | 
| 473 | 
            -
            - spec/models/host_cluster_spec.rb
         | 
| 474 | 
            -
            - spec/models/host_cluster_volume_mapping_response_spec.rb
         | 
| 475 | 
            -
            - spec/models/host_cluster_volume_mapping_spec.rb
         | 
| 476 | 
            -
            - spec/models/service_spec.rb
         | 
| 476 | 
            +
            - spec/models/storage_host_response_spec.rb
         | 
| 477 | 
            +
            - spec/models/storage_host_create_spec.rb
         | 
| 478 | 
            +
            - spec/models/validate_system_spec.rb
         | 
| 479 | 
            +
            - spec/models/storage_hosts_mapping_response_spec.rb
         | 
| 477 480 | 
             
            - spec/models/host_volume_connection_spec.rb
         | 
| 478 | 
            -
            - spec/models/ | 
| 479 | 
            -
            - spec/models/event_spec.rb
         | 
| 480 | 
            -
            - spec/models/system_type_create_spec.rb
         | 
| 481 | 
            -
            - spec/models/capability_translation_spec.rb
         | 
| 482 | 
            -
            - spec/models/auto_sde_role_spec.rb
         | 
| 481 | 
            +
            - spec/models/host_spec.rb
         | 
| 483 482 | 
             
            - spec/models/storage_hosts_mapping_create_spec.rb
         | 
| 484 | 
            -
            - spec/models/ | 
| 485 | 
            -
            - spec/models/ | 
| 486 | 
            -
            - spec/models/host_volume_connection_create_spec.rb
         | 
| 487 | 
            -
            - spec/models/account_post_response_spec.rb
         | 
| 483 | 
            +
            - spec/models/profile_spec.rb
         | 
| 484 | 
            +
            - spec/models/service_spec.rb
         | 
| 488 485 | 
             
            - spec/models/user_update_spec.rb
         | 
| 489 | 
            -
            - spec/models/ | 
| 490 | 
            -
            - spec/models/ | 
| 491 | 
            -
            - spec/models/account_spec.rb
         | 
| 492 | 
            -
            - spec/models/storage_system_spec.rb
         | 
| 493 | 
            -
            - spec/models/abstract_capability_response_spec.rb
         | 
| 494 | 
            -
            - spec/models/native_capability_spec.rb
         | 
| 495 | 
            -
            - spec/models/volume_safe_delete_create_spec.rb
         | 
| 496 | 
            -
            - spec/models/host_spec.rb
         | 
| 497 | 
            -
            - spec/models/service_abstract_capability_value_response_spec.rb
         | 
| 498 | 
            -
            - spec/models/storage_host_update_spec.rb
         | 
| 499 | 
            -
            - spec/models/storage_resource_create_spec.rb
         | 
| 486 | 
            +
            - spec/models/volume_update_spec.rb
         | 
| 487 | 
            +
            - spec/models/celery_config_spec.rb
         | 
| 500 488 | 
             
            - spec/models/volume_create_spec.rb
         | 
| 501 | 
            -
            - spec/models/ | 
| 489 | 
            +
            - spec/models/address_spec.rb
         | 
| 490 | 
            +
            - spec/models/system_type_create_spec.rb
         | 
| 491 | 
            +
            - spec/models/host_cluster_volume_mapping_spec.rb
         | 
| 502 492 | 
             
            - spec/models/snapshot_spec.rb
         | 
| 493 | 
            +
            - spec/models/storage_host_update_spec.rb
         | 
| 494 | 
            +
            - spec/models/account_spec.rb
         | 
| 495 | 
            +
            - spec/models/volume_safe_delete_spec.rb
         | 
| 496 | 
            +
            - spec/models/address_create_spec.rb
         | 
| 497 | 
            +
            - spec/models/volume_safe_delete_create_spec.rb
         | 
| 503 498 | 
             
            - spec/models/capability_translation_create_spec.rb
         | 
| 504 | 
            -
            - spec/models/ | 
| 505 | 
            -
            - spec/models/ | 
| 506 | 
            -
            - spec/models/ | 
| 507 | 
            -
            - spec/models/ | 
| 499 | 
            +
            - spec/models/host_cluster_membership_spec.rb
         | 
| 500 | 
            +
            - spec/models/job_create_spec.rb
         | 
| 501 | 
            +
            - spec/models/volume_response_spec.rb
         | 
| 502 | 
            +
            - spec/models/host_cluster_create_spec.rb
         | 
| 503 | 
            +
            - spec/models/refresh_system_spec.rb
         | 
| 504 | 
            +
            - spec/models/snapshot_create_spec.rb
         | 
| 505 | 
            +
            - spec/models/service_create_spec.rb
         | 
| 506 | 
            +
            - spec/models/storage_system_spec.rb
         | 
| 507 | 
            +
            - spec/models/account_post_request_spec.rb
         | 
| 508 508 | 
             
            - spec/spec_helper.rb
         |