Sha256: ed4d14695fd37ec0367278a9775b2ab9853930c4300cefe531f887d77d05e8ca

Contents?: true

Size: 1.52 KB

Versions: 28

Compression:

Stored size: 1.52 KB

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Creates an instant snapshot of a volume.
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/createSnapshot.html]
        def create_snapshot(*args)
          options = {}
          if args[0].is_a? Hash
            options = args[0]
            options.merge!('command' => 'createSnapshot') 
          else
            options.merge!('command' => 'createSnapshot', 
            'volumeid' => args[0])
          end
          request(options)
        end
      end
 
      class Mock
        def create_snapshot(options={})
          snapshot_id = Fog::Cloudstack.uuid

          unless volume_id = options['volumeid']
            raise Fog::Compute::Cloudstack::BadRequest.new('Unable to execute API command createsnapshot due to missing parameter volumeid')
          end

          snapshot = {
             "id"                      => snapshot_id,
             "name"                    => "ROOT-6",
             "created"                 => "2013-05-22T14:52:55-0500",
             "state"                   => "BackedUp",
             "account"                 => "accountname",
             "domainid"                => "6023b6fe-5bef-4358-bc76-9f4e75afa52f",
             "domain"                  => "ROOT",
             "intervaltype"            => "weekly"
          }

          self.data[:snapshots][snapshot_id]= snapshot
          {'createsnapshotresponse' => snapshot}
        end
      end 
    end
  end
end

Version data entries

28 entries across 26 versions & 4 rubygems

Version Path
fog-2.1.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/cloudstack/requests/compute/create_snapshot.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/cloudstack/requests/compute/create_snapshot.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.42.1 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-2.0.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.42.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.41.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.40.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.39.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.38.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.37.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.36.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.35.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-2.0.0.pre.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.34.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.33.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.32.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb
fog-1.31.0 lib/fog/cloudstack/requests/compute/create_snapshot.rb