Sha256: 66930e78a780154d5cf48e4899570f6c22cebacc9e9f11273631c2401482bb74

Contents?: true

Size: 345 Bytes

Versions: 12

Compression:

Stored size: 345 Bytes

Contents

module Fog
  module AWS
    module RegionMethods
      def validate_aws_region region
        unless ['ap-northeast-1', 'ap-southeast-1', 'ap-southeast-2', 'eu-west-1', 'us-east-1', 'us-west-1', 'us-west-2', 'sa-east-1'].include?(region)
          raise ArgumentError, "Unknown region: #{region.inspect}"
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/aws/region_methods.rb
ns-fog-1.22.11 lib/fog/aws/region_methods.rb
ns-fog-1.22.10 lib/fog/aws/region_methods.rb
ns-fog-1.22.9 lib/fog/aws/region_methods.rb
ns-fog-1.22.8 lib/fog/aws/region_methods.rb
ns-fog-1.22.7 lib/fog/aws/region_methods.rb
ns-fog-1.22.6 lib/fog/aws/region_methods.rb
fog-1.23.0 lib/fog/aws/region_methods.rb
ns-fog-1.22.4 lib/fog/aws/region_methods.rb
ns-fog-1.22.3 lib/fog/aws/region_methods.rb
ns-fog-1.22.2 lib/fog/aws/region_methods.rb
fog-1.22.1 lib/fog/aws/region_methods.rb