Sha256: 16a0baad06b3f54d9588df5af34bd32b8461971fcc00c9a92a1a81d61395917f

Contents?: true

Size: 727 Bytes

Versions: 21

Compression:

Stored size: 727 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)

connection = Fog::Google::SQL.new

puts "Create a Instance..."
puts "--------------------"
instance = connection.instances.create(:name => Fog::Mock.random_letters(16), :tier => "D1")
instance.wait_for { ready? }

puts "Delete the Instance..."
puts "----------------------"
operation = instance.destroy

puts "Get the Operation..."
puts "--------------------"
connection.operations.get(operation.identity)

puts "Listing all Operations..."
puts "-------------------------"
connection.operations.all(instance.identity)

Version data entries

21 entries across 21 versions & 2 rubygems

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