Class: ThreeScaleToolbox::Commands::ServiceCommand::CopyCommand::CopyMethodsTask
- Inherits:
-
Object
- Object
- ThreeScaleToolbox::Commands::ServiceCommand::CopyCommand::CopyMethodsTask
- Includes:
- Task
- Defined in:
- lib/3scale_toolbox/commands/service_command/copy_command/copy_methods_task.rb
Instance Attribute Summary
Attributes included from Task
Instance Method Summary collapse
Methods included from Task
#delete_mapping_rules, #find_source_service, #force_delete_mapping_rules, #initialize, #invalidate_target_methods, #invalidate_target_metrics, #option_target_system_name, #source, #source_hits, #source_methods, #source_metrics, #source_metrics_and_methods, #source_remote, #source_service_ref, #target, #target=, #target_hits, #target_methods, #target_metrics, #target_metrics_and_methods, #target_remote
Instance Method Details
#call ⇒ Object
8 9 10 11 12 13 14 |
# File 'lib/3scale_toolbox/commands/service_command/copy_command/copy_methods_task.rb', line 8 def call puts "original service hits metric #{source_hits.fetch('id')} has #{source_methods.size} methods" puts "target service hits metric #{target_hits.fetch('id')} has #{target_methods.size} methods" missing_methods.each(&method(:create_method)) puts "created #{missing_methods.size} missing methods on target service" invalidate_target_methods if missing_methods.size.positive? end |