Sha256: 8f5b203c0a362f7d52c6a00c767d2ecf0d0286865d85bd128b561992a78b7b9d

Contents?: true

Size: 826 Bytes

Versions: 51

Compression:

Stored size: 826 Bytes

Contents

# All examples presume that you have a ~/.fog credentials file set up.
# More info on it can be found here: http://fog.io/about/getting_started.html

require "bundler"
Bundler.require(:default, :development)
# Uncomment this if you want to make real requests to GCE (you _will_ be billed!)
# WebMock.disable!

def test
  connection = Fog::Compute.new(:provider => "Google")

  puts "Listing snapshots..."
  puts "---------------------------------"
  snapshots = connection.snapshots.all
  raise "Could not LIST the snapshots" unless snapshots
  puts snapshots.inspect

  puts "Fetching a single snapshot..."
  puts "---------------------------------"
  snap = snapshots.first
  unless snap.nil?
    snap = connection.snapshots.get(snap)
    raise "Could not GET the snapshot" unless snap
    puts snap.inspect
  end
end

test

Version data entries

51 entries across 51 versions & 2 rubygems

Version Path
fog-google-1.24.1 examples/get_list_snapshots.rb
fog-google-1.24.0 examples/get_list_snapshots.rb
fog-google-1.23.0 examples/get_list_snapshots.rb
fog-google-1.22.0 examples/get_list_snapshots.rb
fog-google-1.21.1 examples/get_list_snapshots.rb
fog-google-1.21.0 examples/get_list_snapshots.rb
fog-google-1.20.0 examples/get_list_snapshots.rb
fog-google-1.19.0 examples/get_list_snapshots.rb
fog-google-1.18.0 examples/get_list_snapshots.rb
fog-google-1.17.0 examples/get_list_snapshots.rb
fog-google-1.16.1 examples/get_list_snapshots.rb
fog-google-1.16.0 examples/get_list_snapshots.rb
fog-google-1.15.0 examples/get_list_snapshots.rb
fog-google-1.14.0 examples/get_list_snapshots.rb
gitlab-fog-google-1.14.0 examples/get_list_snapshots.rb
fog-google-1.13.0 examples/get_list_snapshots.rb
gitlab-fog-google-1.13.0 examples/get_list_snapshots.rb
fog-google-1.12.1 examples/get_list_snapshots.rb
fog-google-1.12.0 examples/get_list_snapshots.rb
fog-google-1.11.0 examples/get_list_snapshots.rb