Sha256: 41bec7247339bdcbec705ee81196fdf41966c3c5a2a748ad32e7d73f59fffcd6

Contents?: true

Size: 1.91 KB

Versions: 29

Compression:

Stored size: 1.91 KB

Contents

module Fog
  module HP
    class BlockStorageV2
      class Real
        # Get details for existing block storage volume
        #
        # ==== Parameters
        # * 'volume_id'<~String> - UUId of the volume to get
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * volume<~Hash>:
        #       * 'id'<~String> - UUId for the volume
        #       * 'display_name'<~String> - Name of the volume
        #       * 'display_description'<~String> - Description of the volume
        #       * 'size'<~Integer> - Size in GB for the volume
        #       * 'status'<~String> - Status of the volume i.e. "creating"
        #       * 'volume_type'<~String> - Type of the volume
        #       * 'snapshot_id'<~String> - UUId of the snapshot, the volume was created from.
        #       * 'source_volid'<~String> - UUId of a volume, the volume was created from.
        #       * 'created_at'<~String> - Timestamp in UTC when volume was created
        #       * 'availability_zone'<~String> - Availability zone i.e. "az1"
        #       * attachments<~Array>: Array of hashes of attachments
        #       * metadata<~Hash>: Hash of metadata for the volume
        def get_volume_details(volume_id)
          response = request(
            :expects  => 200,
            :method   => 'GET',
            :path     => "volumes/#{volume_id}"
          )
          response
        end
      end

      class Mock  # :nodoc:all
        def get_volume_details(volume_id)
          unless volume_id
            raise ArgumentError.new('volume_id is required')
          end
          response = Excon::Response.new
          if volume = self.data[:volumes][volume_id]
            response.status = 200
            response.body = { 'volume' => volume }
            response
          else
            raise Fog::HP::BlockStorageV2::NotFound
          end
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
fog-1.37.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.36.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.35.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-2.0.0.pre.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.34.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.33.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.32.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.31.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.30.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.29.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.28.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.27.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.26.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.25.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
nsidc-fog-1.24.1 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
fog-1.24.0 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
ns-fog-1.22.11 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb
ns-fog-1.22.10 lib/fog/hp/requests/block_storage_v2/get_volume_details.rb