Class: Fog::Compute::Google::Routes
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Google::Routes
- Defined in:
- lib/fog/compute/google/models/routes.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
7 8 9 10 |
# File 'lib/fog/compute/google/models/routes.rb', line 7 def all data = service.list_routes.to_h load(data[:items] || []) end |
#get(identity) ⇒ Object
12 13 14 15 16 17 18 19 20 |
# File 'lib/fog/compute/google/models/routes.rb', line 12 def get(identity) if identity route = service.get_route(identity).to_h return new(route) end rescue ::Google::Apis::ClientError => e raise e unless e.status_code == 404 nil end |