Sha256: dfb06c682db3bc0e0d353d9c5feee2f69d409cebcab2724ec6f201954a086123

Contents?: true

Size: 559 Bytes

Versions: 20

Compression:

Stored size: 559 Bytes

Contents

def test
  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)
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
fog-google-1.9.1 examples/sql/operations.rb
fog-google-1.9.0 examples/sql/operations.rb
fog-google-1.8.2 examples/sql/operations.rb
fog-google-1.8.1 examples/sql/operations.rb
fog-google-1.8.0 examples/sql/operations.rb
fog-google-1.7.1 examples/sql/operations.rb
fog-google-1.7.0 examples/sql/operations.rb
fog-google-1.6.0 examples/sql/operations.rb
fog-google-1.5.0 examples/sql/operations.rb
fog-google-1.4.0 examples/sql/operations.rb
fog-google-1.3.3 examples/sql/operations.rb
fog-google-1.3.2 examples/sql/operations.rb
fog-google-1.3.1 examples/sql/operations.rb
fog-google-1.3.0 examples/sql/operations.rb
fog-google-1.2.2 examples/sql/operations.rb
fog-google-1.2.1 examples/sql/operations.rb
fog-google-1.2.0 examples/sql/operations.rb
fog-google-1.1.0 examples/sql/operations.rb
fog-google-1.0.1 examples/sql/operations.rb
fog-google-1.0.0 examples/sql/operations.rb