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