class Instance
Requires instance token for authentication
Public Instance Methods
attach_ebs_volume(params)
click to toggle source
def create_ebs_volume_from_snap(snap_aws_id)
connection.post('create_ebs_volume.js', :aws_id => snap_aws_id )
end
# File lib/rest_connection/rightscale/instance.rb, line 38 def attach_ebs_volume(params) connection.put('attach_ebs_volume.js', params) end
create_ebs_snapshot(params)
click to toggle source
# File lib/rest_connection/rightscale/instance.rb, line 42 def create_ebs_snapshot(params) connection.post('create_ebs_snapshot.js', params) end
create_ebs_volume(params)
click to toggle source
# File lib/rest_connection/rightscale/instance.rb, line 54 def create_ebs_volume(params) connection.post('create_ebs_volume.js', params) end
delete_ebs_volume(params)
click to toggle source
# File lib/rest_connection/rightscale/instance.rb, line 50 def delete_ebs_volume(params) connection.delete('delete_ebs_volume.js', params) end
detach_ebs_volume(params)
click to toggle source
# File lib/rest_connection/rightscale/instance.rb, line 46 def detach_ebs_volume(params) connection.put('detach_ebs_volume.js', params) end