Method: ThreeScaleToolbox::Commands::ProxyCommand::ShowSubcommand.command

Defined in:
lib/3scale_toolbox/commands/proxy_command/show_command.rb

.commandObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/3scale_toolbox/commands/proxy_command/show_command.rb', line 7

def self.command
  Cri::Command.define do
    name        'show'
    usage       'show <remote> <service>'
    summary     'Fetch (undeployed) APIcast configuration'
    description 'Fetch (undeployed) APIcast configuration'

    param :remote
    param :service_ref

    ThreeScaleToolbox::CLI.output_flag(self)

    runner ShowSubcommand
  end
end