File: instances.rb

package info (click to toggle)
ruby-fog-google 1.19.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,568 kB
  • sloc: ruby: 16,775; makefile: 3
file content (38 lines) | stat: -rw-r--r-- 1,052 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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 => "db-n1-standard-1")
instance.wait_for { ready? }

puts "Get the Instance..."
puts "----------------------"
connection.instances.get(instance.name)

puts "List all Instances..."
puts "---------------------"
connection.instances.all

puts "Update the Instance..."
puts "----------------------"
instance.settings[:activation_policy] = "ALWAYS"
instance.update
instance.wait_for { ready? }

puts "Reset the Instance SSL configuration..."
puts "---------------------------------------"
instance.reset_ssl_config

puts "Restart the Instance..."
puts "-----------------------"
instance.restart

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