class Fog::Compute::Cloudstack::Projects

Public Instance Methods

all(filters={}) click to toggle source
# File lib/fog/cloudstack/models/compute/projects.rb, line 10
def all(filters={})
  options = get_filter_options(filters)

  data = service.list_projects(options)["listprojectsresponse"]["project"] || []
  load(data)
end
get(project_id, filters={}) click to toggle source
# File lib/fog/cloudstack/models/compute/projects.rb, line 17
def get(project_id, filters={})
  filter_option = get_filter_options(filters)
  options = filter_option.merge('id' => project_id)

  if template = service.list_projects(options)["listprojectsresponse"]["project"].first
    new(template)
  end
rescue Fog::Compute::Cloudstack::BadRequest
  nil
end

Private Instance Methods

get_filter_options(filters) click to toggle source
# File lib/fog/cloudstack/models/compute/projects.rb, line 30
def get_filter_options(filters)
  default_filter = {
      'projectfilter' => 'self'
  }
  default_filter.merge(filters)
end