fog/fog-digitalocean

View on GitHub
lib/fog/compute/digitalocean/models/volume.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Compute
    class DigitalOcean
      class Volume < Fog::Model
        identity :id
        attribute :name
        attribute :region
        attribute :droplet_ids
        attribute :description
        attribute :size_gigabytes
        attribute :created_at
      end
    end
  end
end