Module: GClouder::Resources::Compute::FirewallRules
- Includes:
- Config::CLIArgs, GCloud, Logging, GClouder::Resource::Cleaner
- Defined in:
- lib/gclouder/resources/compute/firewall_rules.rb
Defined Under Namespace
Class Method Summary collapse
Methods included from GClouder::Resource::Cleaner
#clean, #cleaner, included, #undefined
Methods included from GCloud
Methods included from Config::CLIArgs
cli_args, #cli_args, included, load, valid_resources
Methods included from Config::Project
Methods included from Helpers
#hash_to_args, included, #module_exists?, #to_arg, #to_deep_merge_hash, #valid_json?
Methods included from Logging
#add, #bad, #change, #debug, #error, #fatal, #good, included, #info, log, loggers, #remove, report, #resource_state, setup, #warn, #warning
Methods included from Shell
Class Method Details
.check ⇒ Object
34 35 |
# File 'lib/gclouder/resources/compute/firewall_rules.rb', line 34 def self.check end |
.ensure ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/gclouder/resources/compute/firewall_rules.rb', line 16 def self.ensure return if Local.list.empty? header Local.list.each do |region, rules| info region, heading: true, indent: 2 info rules.each do |rule| Rule.ensure(rule["name"], rule) end end end |
.header(stage = :ensure) ⇒ Object
12 13 14 |
# File 'lib/gclouder/resources/compute/firewall_rules.rb', line 12 def self.header(stage = :ensure) info "[#{stage}] compute / firewall-rules", indent: 1, title: true end |