module GClouder::Resources::Compute::TargetHTTPSProxies
Public Class Methods
check()
click to toggle source
# File lib/gclouder/resources/compute/target_https_proxies.rb, line 33 def self.check end
ensure()
click to toggle source
# File lib/gclouder/resources/compute/target_https_proxies.rb, line 15 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)
click to toggle source
# File lib/gclouder/resources/compute/target_https_proxies.rb, line 11 def self.header(stage = :ensure) info "[#{stage}] compute / target-https-proxies", indent: 1, title: true end
validate()
click to toggle source
# File lib/gclouder/resources/compute/target_https_proxies.rb, line 27 def self.validate return if Local.list.empty? header :validate Local.validate end