Sha256: 594367b820bec9eaee0dcac9abd803bd5d7abdaf09d253d6d86abaf713b76cfa

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

#
# Author:: Matt Eldridge (<matt.eldridge@us.ibm.com>)
# © Copyright IBM Corporation 2014.
#
# LICENSE: MIT (http://opensource.org/licenses/MIT)
#

module Fog
  module Softlayer
    module Compute

      # The Shared module consists of code that was duplicated between the Real
      # and Mock implementations.
      #
      module Shared

        # Creates a new instance of the Softlayer Compute service
        #
        # @param [Hash] options
        # @option options [String] :softlayer_api_url
        #   Override the default (or configured) API endpoint
        # @option options [String] :softlayer_username
        #   Email or user identifier for user based authentication
        # @option options [String] :softlayer_api_key
        #   Password for user based authentication
        #
        def initialize(options)
          @api_url             = options[:softlayer_api_url]   || API_URL
          @credentials   = { :username => options[:softlayer_username], :api_key => options[:softlayer_api_key] }
          @default_domain = options[:softlayer_default_domain]
        end

        def self.valid_request?(required, passed)
          required.all? {|k| passed.key?(k)}
        end

      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-softlayer-0.0.5 lib/fog/softlayer/compute/shared.rb
fog-softlayer-0.0.4 lib/fog/softlayer/compute/shared.rb
fog-softlayer-0.0.3 lib/fog/softlayer/compute/shared.rb
fog-softlayer-0.0.2 lib/fog/softlayer/compute/shared.rb