Sha256: 1ace58433c34b2c184f55cecac2200190335ac31fe85e3a2376d5b5c202f2ad8
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 KB
Contents
module Fog module Compute class Google class Mock def update_firewall(_firewall_name, _allowed, _network = GOOGLE_COMPUTE_DEFAULT_NETWORK, _options = {}) Fog::Mock.not_implemented end end class Real def update_firewall(firewall_name, allowed, network = GOOGLE_COMPUTE_DEFAULT_NETWORK, options = {}) unless network.start_with? "http" network = "#{@api_url}#{@project}/global/networks/#{network}" end api_method = @compute.firewalls.update parameters = { "project" => @project, "firewall" => firewall_name } body_object = { "allowed" => allowed, "network" => network } unless options[:description].nil? body_object["description"] = options[:description] end unless options[:source_ranges].nil? || options[:source_ranges].empty? body_object["sourceRanges"] = options[:source_ranges] end unless options[:source_tags].nil? || options[:source_tags].empty? body_object["sourceTags"] = options[:source_tags] end unless options[:target_tags].nil? || options[:target_tags].empty? body_object["targetTags"] = options[:target_tags] end request(api_method, parameters, body_object) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems