Class: Fog::Compute::Cloudstack::Projects
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Cloudstack::Projects
- Defined in:
- lib/fog/cloudstack/models/compute/projects.rb
Instance Method Summary collapse
Instance Method Details
#all(filters = {}) ⇒ Object
10 11 12 13 14 15 |
# File 'lib/fog/cloudstack/models/compute/projects.rb', line 10 def all(filters={}) = (filters) data = service.list_projects()["listprojectsresponse"]["project"] || [] load(data) end |
#get(project_id, filters = {}) ⇒ Object
17 18 19 20 21 22 23 24 25 26 |
# File 'lib/fog/cloudstack/models/compute/projects.rb', line 17 def get(project_id, filters={}) filter_option = (filters) = filter_option.merge('id' => project_id) if template = service.list_projects()["listprojectsresponse"]["project"].first new(template) end rescue Fog::Compute::Cloudstack::BadRequest nil end |