Class: Fog::Compute::Google::TargetHttpProxies

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/compute/google/models/target_http_proxies.rb

Instance Method Summary collapse

Instance Method Details

#all(_filters = {}) ⇒ Object



7
8
9
10
# 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) ⇒ Object



12
13
14
15
16
17
18
19
20
# 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