Sha256: 7791c4ee98ddca8af82fc32e9b5375d96da4bd3ccd714edee5fca34dc89186e9

Contents?: true

Size: 1.87 KB

Versions: 11

Compression:

Stored size: 1.87 KB

Contents

#--
# Copyright (c) 2010-2012 RightScale Inc
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#++

#
# API 1.0
#

# Requires instance token for authentication
class Instance
  include RightScale::Api::Base
  extend RightScale::Api::BaseExtend
  include RightScale::Api::Taggable
  extend RightScale::Api::TaggableExtend
  #def create_ebs_volume_from_snap(snap_aws_id)
  #  connection.post('create_ebs_volume.js', :aws_id => snap_aws_id )
  #end

  def attach_ebs_volume(params)
    connection.put('attach_ebs_volume.js', params)
  end

  def create_ebs_snapshot(params)
    connection.post('create_ebs_snapshot.js', params)
  end

  def detach_ebs_volume(params)
    connection.put('detach_ebs_volume.js', params)
  end

  def delete_ebs_volume(params)
    connection.delete('delete_ebs_volume.js', params)
  end

  def create_ebs_volume(params)
    connection.post('create_ebs_volume.js', params)
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rest_connection-1.0.16 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.15 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.14 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.13 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.12 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.11 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.10 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.9 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.8 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.7 lib/rest_connection/rightscale/instance.rb
rest_connection-1.0.6 lib/rest_connection/rightscale/instance.rb