Sha256: 700e017e3a62021f16125c55e37fc0b99fe2c20975564b81dc878c37e1a73d74
Contents?: true
Size: 1.5 KB
Versions: 10
Compression:
Stored size: 1.5 KB
Contents
module ThreeScaleToolbox module Commands module MethodsCommand module List class ListSubcommand < Cri::CommandRunner include ThreeScaleToolbox::Command FIELDS_TO_SHOW = %w[id friendly_name system_name description].freeze def self.command Cri::Command.define do name 'list' usage 'list [opts] <remote> <service>' summary 'list methods' description 'List methods' ThreeScaleToolbox::CLI.output_flag(self) param :remote param :service_ref runner ListSubcommand end end def run printer.print_collection service.methods.map(&:attrs) end private def service @service ||= find_service end def find_service Entities::Service.find(remote: remote, ref: service_ref).tap do |svc| raise ThreeScaleToolbox::Error, "Service #{service_ref} does not exist" if svc.nil? end end def remote @remote ||= threescale_client(arguments[:remote]) end def service_ref arguments[:service_ref] end def printer # keep backwards compatibility options.fetch(:output, CLI::CustomTablePrinter.new(FIELDS_TO_SHOW)) end end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems