Sha256: f69e3bfc8df25b5f76ac740372ee834b123e06b4f19cb437717284e7eec108b8

Contents?: true

Size: 1.95 KB

Versions: 673

Compression:

Stored size: 1.95 KB

Contents

# frozen_string_literal: true

require 'set'

module Aws
  module Partitions
    class Region

      # @option options [required, String] :name
      # @option options [required, String] :description
      # @option options [required, String] :partition_name
      # @option options [required, Set<String>] :services
      # @api private
      def initialize(options = {})
        @name = options[:name]
        @description = options[:description]
        @partition_name = options[:partition_name]
        @services = options[:services]
      end

      # @return [String] The name of this region, e.g. "us-east-1".
      attr_reader :name

      # @return [String] A short description of this region.
      attr_reader :description

      # @return [String] The partition this region exists in, e.g. "aws",
      #   "aws-cn", "aws-us-gov".
      attr_reader :partition_name

      # @return [Set<String>] The list of services available in this region.
      #   Service names are the module names as used by the AWS SDK
      #   for Ruby.
      attr_reader :services

      class << self

        # @api private
        def build(region_name, region, partition)
          Region.new(
            name: region_name,
            description: region['description'],
            partition_name: partition['partition'],
            services: region_services(region_name, partition)
          )
        end

        private

        def region_services(region_name, partition)
          Partitions.service_ids.inject(Set.new) do |services, (svc_name, svc_id)|
            if svc = partition['services'][svc_id]
              services << svc_name if service_in_region?(svc, region_name)
            else
              #raise "missing endpoints for #{svc_name} / #{svc_id}"
            end
            services
          end
        end

        def service_in_region?(svc, region_name)
          svc.key?('endpoints') && svc['endpoints'].key?(region_name)
        end

      end
    end
  end
end

Version data entries

673 entries across 673 versions & 1 rubygems

Version Path
aws-partitions-1.993.0 lib/aws-partitions/region.rb
aws-partitions-1.992.0 lib/aws-partitions/region.rb
aws-partitions-1.991.0 lib/aws-partitions/region.rb
aws-partitions-1.990.0 lib/aws-partitions/region.rb
aws-partitions-1.989.0 lib/aws-partitions/region.rb
aws-partitions-1.988.0 lib/aws-partitions/region.rb
aws-partitions-1.987.0 lib/aws-partitions/region.rb
aws-partitions-1.986.0 lib/aws-partitions/region.rb
aws-partitions-1.985.0 lib/aws-partitions/region.rb
aws-partitions-1.984.0 lib/aws-partitions/region.rb
aws-partitions-1.983.0 lib/aws-partitions/region.rb
aws-partitions-1.982.0 lib/aws-partitions/region.rb
aws-partitions-1.981.0 lib/aws-partitions/region.rb
aws-partitions-1.980.0 lib/aws-partitions/region.rb
aws-partitions-1.979.0 lib/aws-partitions/region.rb
aws-partitions-1.978.0 lib/aws-partitions/region.rb
aws-partitions-1.977.0 lib/aws-partitions/region.rb
aws-partitions-1.976.0 lib/aws-partitions/region.rb
aws-partitions-1.975.0 lib/aws-partitions/region.rb
aws-partitions-1.974.0 lib/aws-partitions/region.rb