module ThreeScaleToolbox::CRD::BackendMappingRuleSerializer
Public Instance Methods
metric_method_ref()
click to toggle source
# File lib/3scale_toolbox/crds/backend_mapping_rule_dump.rb, line 14 def metric_method_ref if (method = backend.methods.find { |m| m.id == metric_id }) method.system_name elsif (metric = backend.metrics.find { |m| m.id == metric_id }) metric.system_name else raise ThreeScaleToolbox::Error, "Unexpected error. Backend #{backend.system_name} " \ "mapping rule #{id} referencing to metric id #{metric_id} which has not been found" end end
to_cr()
click to toggle source
# File lib/3scale_toolbox/crds/backend_mapping_rule_dump.rb, line 4 def to_cr { 'httpMethod' => http_method, 'pattern' => pattern, 'metricMethodRef' => metric_method_ref, 'increment' => delta, 'last' => last, } end