class Fog::Compute::Google::GlobalForwardingRule
Constants
- RUNNING_STATE
Public Instance Methods
destroy(async = true)
click to toggle source
# File lib/fog/compute/google/models/global_forwarding_rule.rb, line 36 def destroy(async = true) requires :name operation = service.delete_global_forwarding_rule(name, "global") unless async # wait until "RUNNING" or "DONE" to ensure the operation doesn't # fail, raises exception on error Fog.wait_for do operation.body["status"] == "DONE" end end operation end
ready?()
click to toggle source
# File lib/fog/compute/google/models/global_forwarding_rule.rb, line 57 def ready? service.get_global_forwarding_rule(name, "global") true rescue Fog::Errors::NotFound false end
reload()
click to toggle source
# File lib/fog/compute/google/models/global_forwarding_rule.rb, line 64 def reload requires :name return unless data = begin collection.get(name, "global") rescue Excon::Errors::SocketError nil end new_attributes = data.attributes merge_attributes(new_attributes) self end
save()
click to toggle source
# File lib/fog/compute/google/models/global_forwarding_rule.rb, line 18 def save requires :name options = { "description" => description, "region" => "global", "IPAddress" => ip_address, "IPProtocol" => ip_protocol || "TCP", "portRange" => port_range || 80, "target" => target } data = service.insert_global_forwarding_rule(name, options).body operation = Fog::Compute::Google::Operations.new(:service => service).get(data["name"], nil, data["region"]) operation.wait_for { !pending? } reload end
set_target(new_target)
click to toggle source
# File lib/fog/compute/google/models/global_forwarding_rule.rb, line 50 def set_target(new_target) new_target = new_target.self_link unless new_target.class == String self.target = new_target service.set_global_forwarding_rule_target(self, new_target) reload end