fog/fog-openstack

View on GitHub
lib/fog/openstack/compute/models/volume_attachment.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'fog/core/model'

module Fog
  module OpenStack
    class Compute
      class VolumeAttachment < Fog::Model
        identity :id

        attribute :serverId
        attribute :volumeId
        attribute :device
      end
    end
  end
end