Class: Fog::Compute::Google::Firewalls

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

Instance Method Summary collapse

Instance Method Details

#all(opts = {}) ⇒ Object



7
8
9
10
# File 'lib/fog/compute/google/models/firewalls.rb', line 7

def all(opts = {})
  data = service.list_firewalls(**opts).to_h[:items]
  load(data || [])
end

#get(identity) ⇒ Object



12
13
14
15
16
17
18
19
20
# File 'lib/fog/compute/google/models/firewalls.rb', line 12

def get(identity)
  if identity
    firewall = service.get_firewall(identity).to_h
    return new(firewall)
  end
rescue ::Google::Apis::ClientError => e
  raise e unless e.status_code == 404
  nil
end