Sha256: 6d6837c6656d4c8095403e64d4406f8fa9da8a8b350dd0c2656dc851fbb22c05
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 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 def resource context[:api_spec_resource] end def security api_spec.security end def oidc_issuer_endpoint context[:oidc_issuer_endpoint] end def default_credentials_userkey context[:default_credentials_userkey] end def override_private_basepath context[:override_private_basepath] end def production_public_base_url context[:production_public_base_url] end def staging_public_base_url context[:staging_public_base_url] end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
3scale_toolbox-0.11.0 | lib/3scale_toolbox/commands/import_command/openapi/step.rb |