summaryrefslogtreecommitdiff
path: root/lib/ats/cli/amp4e/application.rb
blob: 9611b5171594ea3f9ac3935931c2b31f12aea491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module ATS
  module CLI
    module AMP4E
      class Application < Thor
        desc 'computers SUBCOMMAND ...ARGS', 'interact with the AMP4E API'
        subcommand :computers, ATS::CLI::AMP4E::Computers

        desc 'events SUBCOMMAND ...ARGS', 'interact with the AMP4E API'
        subcommand :events, ATS::CLI::AMP4E::Events

        desc 'groups SUBCOMMAND ...ARGS', 'interact with the AMP4E API'
        subcommand :groups, ATS::CLI::AMP4E::Groups

        desc 'policies SUBCOMMAND ...ARGS', 'interact with the AMP4E API'
        subcommand :policies, ATS::CLI::AMP4E::Policies
      end
    end
  end
end