require "providers/provider_factory" require_relative "request_handler" module Devops module API2_0 module Handler class Group < RequestHandler # TODO: vpc support for ec2 def groups provider groups_with_account(provider, nil) end def groups_with_account provider, account ::Provider::ProviderFactory.get(provider, account).groups()#params end end end end end