Class: ThreeScaleToolbox::Commands::PlansCommand::Export::ReadPlanLimitsStep

Inherits:
Object
  • Object
show all
Includes:
Step
Defined in:
lib/3scale_toolbox/commands/plans_command/export/read_plan_limits_step.rb

Instance Attribute Summary

Attributes included from Step

#context

Instance Method Summary collapse

Methods included from Step

#file, #initialize, #metric_info, #plan, #plan_system_name, #result, #service, #service_system_name, #threescale_client

Instance Method Details

#callObject

Reads Application Plan limits add metric system_name out of metric_id



10
11
12
13
14
# File 'lib/3scale_toolbox/commands/plans_command/export/read_plan_limits_step.rb', line 10

def call
  result[:limits] = plan.limits.map do |limit|
    limit.attrs.merge('metric' => metric_info(limit, 'Limit'))
  end
end