Class: ThreeScaleToolbox::Commands::MetricsCommand::Delete::DeleteSubcommand
- Inherits:
-
Cri::CommandRunner
- Object
- Cri::CommandRunner
- ThreeScaleToolbox::Commands::MetricsCommand::Delete::DeleteSubcommand
show all
- Includes:
- ThreeScaleToolbox::Command
- Defined in:
- lib/3scale_toolbox/commands/metrics_command/delete_command.rb
Class Method Summary
collapse
Instance Method Summary
collapse
#config, #config_file, #exit_with_message, #fetch_required_option, included, #remotes, #threescale_client, #verbose, #verify_ssl
Class Method Details
.command ⇒ Object
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/3scale_toolbox/commands/metrics_command/delete_command.rb', line 8
def self.command
Cri::Command.define do
name 'delete'
usage 'delete [opts] <remote> <service> <metric>'
summary 'delete metric'
description 'Delete metric'
param :remote
param :service_ref
param :metric_ref
runner DeleteSubcommand
end
end
|
Instance Method Details
#run ⇒ Object
23
24
25
26
|
# File 'lib/3scale_toolbox/commands/metrics_command/delete_command.rb', line 23
def run
metric.delete
puts "Metric id: #{metric.id} deleted"
end
|