Sha256: 27fbeb47b476130aa455fea9bab0d989d6f498de27fd380c0b8a338eb4487e9a
Contents?: true
Size: 525 Bytes
Versions: 14
Compression:
Stored size: 525 Bytes
Contents
module Fog module Compute class Google class TargetHttpProxies < Fog::Collection model Fog::Compute::Google::TargetHttpProxy def all(_filters = {}) data = service.list_target_http_proxies.body["items"] || [] load(data) end def get(identity) if target_http_proxy = service.get_target_http_proxy(identity).body new(target_http_proxy) end rescue Fog::Errors::NotFound nil end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems