Module: ThreeScaleToolbox::Commands::ImportCommand

Includes:
ThreeScaleToolbox::Command
Defined in:
lib/3scale_toolbox/commands/import_command.rb,
lib/3scale_toolbox/commands/import_command/openapi.rb,
lib/3scale_toolbox/commands/import_command/import_csv.rb,
lib/3scale_toolbox/commands/import_command/openapi/step.rb,
lib/3scale_toolbox/commands/import_command/openapi/method.rb,
lib/3scale_toolbox/commands/import_command/openapi/operation.rb,
lib/3scale_toolbox/commands/import_command/openapi/mapping_rule.rb,
lib/3scale_toolbox/commands/import_command/issuer_type_transformer.rb,
lib/3scale_toolbox/commands/import_command/openapi/create_method_step.rb,
lib/3scale_toolbox/commands/import_command/openapi/create_service_step.rb,
lib/3scale_toolbox/commands/import_command/openapi/update_policies_step.rb,
lib/3scale_toolbox/commands/import_command/openapi/create_activedocs_step.rb,
lib/3scale_toolbox/commands/import_command/openapi/create_mapping_rule_step.rb,
lib/3scale_toolbox/commands/import_command/openapi/update_service_proxy_step.rb,
lib/3scale_toolbox/commands/import_command/openapi/update_service_oidc_conf_step.rb

Defined Under Namespace

Modules: OpenAPI Classes: ImportCsvSubcommand

Class Method Summary collapse

Methods included from ThreeScaleToolbox::Command

#config, #config_file, #exit_with_message, #fetch_required_option, included, #remotes, #threescale_client, #verbose, #verify_ssl

Class Method Details

.commandObject



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

def self.command
  Cri::Command.define do
    name        'import'
    usage       'import <sub-command> [options]'
    summary     'import super command'
    description 'Importing 3scale entities'

    run do |_opts, _args, cmd|
      puts cmd.help
    end
  end
end