Sha256: 3416940977c89028fbdbcc2bed1d94fe3ced5211bdd703cbdc01904e8cbaa854
Contents?: true
Size: 1.17 KB
Versions: 9
Compression:
Stored size: 1.17 KB
Contents
module ThreeScaleToolbox module Commands module ImportCommand module OpenAPI class CreateMethodsStep include Step def call missing_operations.each do |op| method = Entities::Method.create(service: service, attrs: op.method) op.set(:metric_id, method.id) end existing_operations.each do |op| method_attrs = methods_index.fetch(op.method['system_name']).attrs method = Entities::Method.new(id: method_attrs.fetch('id'), service: service) method.update(op.method) op.set(:metric_id, method.id) end end private def methods_index @methods_index ||= service.methods.each_with_object({}) do |method, acc| acc[method.system_name] = method end end def missing_operations operations.reject { |op| methods_index.key? op.method['system_name'] } end def existing_operations operations.select { |op| methods_index.key? op.method['system_name'] } end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems