Sha256: b610ccadc0303d378418801f271af55e228c209246c8c0a6994c3c5a79cc0e7c
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
module ThreeScaleToolbox module Commands module ImportCommand module OpenAPI module Step attr_reader :context def initialize(context) @context = context end # Can be nil on initialization time and not nil afterwards # method to fetch from context required def service context[:target] end def service=(service) context[:target] = service end def api_spec context[:api_spec] end def threescale_client context[:threescale_client] end def operations # api_spec.operations are readonly # store operations in context # each operation can be extended with extra information to be used later context[:operations] ||= api_spec.operations end def target_system_name # could be nil context[:target_system_name] end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
3scale_toolbox-0.6.0 | lib/3scale_toolbox/commands/import_command/openapi/step.rb |