ruby clean_google_enginge_with_fog

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby clean_google_enginge_with_fog相关的知识,希望对你有一定的参考价值。

# Gemfile: 
# source 'https://rubygems.org'
# gem 'fog', path: '~/work/github/fog'

require 'fog'
require 'yaml'

config = YAML.load_file('/Users/allomov/.fog.yml')
google_config = config['google']

storage = Fog::Storage::Google.new(google_config['storage'])
compute = Fog::Compute::Google.new(google_config['compute'])


storage.directories.each do |d| 
  d.files.each { |f| f.destroy }
  d.destroy
end

compute.servers.each do |s|
  s.destroy(false)
end

compute.disks.each do |d|
  d.destroy
end

compute.images.each do |i|
  i.destroy rescue nil
end

以上是关于ruby clean_google_enginge_with_fog的主要内容,如果未能解决你的问题,请参考以下文章

Ruby 25 岁了!Ruby 之父说 Ruby 3 有望 3 倍提速

如何学习ruby?Ruby学习技巧分享

ruby Ruby脚本,看看是否用openssl编译了ruby

什么是ruby?

ruby和ruby ee

ruby入门知识:了解ruby历史及特性