class Fog::Compute::Google::TargetHttpProxies
Public Instance Methods
all(_filters = {})
click to toggle source
# File lib/fog/compute/google/models/target_http_proxies.rb, line 7 def all(_filters = {}) data = service.list_target_http_proxies.to_h[:items] || [] load(data) end
get(identity)
click to toggle source
# File lib/fog/compute/google/models/target_http_proxies.rb, line 12 def get(identity) if identity target_http_proxy = service.get_target_http_proxy(identity).to_h return new(target_http_proxy) end rescue ::Google::Apis::ClientError => e raise e unless e.status_code == 404 nil end