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

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

Instance Method Summary collapse

Instance Method Details

#all(filters = {}) ⇒ Object



10
11
12
13
# File 'lib/fog/google/models/compute/target_http_proxies.rb', line 10

def all(filters={})
  data = service.list_target_http_proxies.body['items'] || []
  load(data)
end

#get(identity) ⇒ Object



15
16
17
18
# File 'lib/fog/google/models/compute/target_http_proxies.rb', line 15

def get(identity)
  response = service.get_target_http_proxy(identity)
  new(response.body) unless response.nil?
end