Class: Fog::Compute::Google::Networks
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Google::Networks
- Defined in:
- lib/fog/google/models/compute/networks.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
10 11 12 13 |
# File 'lib/fog/google/models/compute/networks.rb', line 10 def all data = service.list_networks.body load(data['items'] || []) end |
#get(identity) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/fog/google/models/compute/networks.rb', line 15 def get(identity) if network = service.get_network(identity).body new(network) end rescue Fog::Errors::NotFound nil end |