Sha256: 6e3ecb639e1cb8678684dede2ff9a9a66d3ebe6758f9ef530b90f5586cc55ac7

Contents?: true

Size: 683 Bytes

Versions: 1

Compression:

Stored size: 683 Bytes

Contents

require 'simple_aws/api'
require 'simple_aws/call_types/action_param'
require 'simple_aws/signing/version2'

module SimpleAWS

  ##
  # Amazon Auto Scaling
  #
  # http://docs.amazonwebservices.com/AutoScaling/latest/APIReference/Welcome.html
  #
  # All requests are POST and always through HTTPS. Use the third parameter to
  # #initialize if you need to talk to a region other than us-east-1.
  #
  # @see SimpleAWS::CallTypes::ActionParam Calling rules
  # @see SimpleAWS::Response Response handling
  ##
  class AutoScaling < API
    endpoint "autoscaling"
    use_https true
    version "2011-01-01"

    include CallTypes::ActionParam
    include Signing::Version2
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simple_aws-1.1.0 lib/simple_aws/auto_scaling.rb