Class: Fog::Compute::SakuraCloud::Plans
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::SakuraCloud::Plans
- Defined in:
- lib/fog/sakuracloud/models/compute/plans.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
10 11 12 |
# File 'lib/fog/sakuracloud/models/compute/plans.rb', line 10 def all load service.list_plans.body['ServerPlans'] end |
#get(id) ⇒ Object
14 15 16 17 18 |
# File 'lib/fog/sakuracloud/models/compute/plans.rb', line 14 def get(id) all.find { |f| f.id == id } rescue Fog::Errors::NotFound nil end |