Sha256: 0e51d6a7375110c4b3cef19e1b0deaba0bf11e1cb543a9478a9f079d08d10f47

Contents?: true

Size: 1.04 KB

Versions: 66

Compression:

Stored size: 1.04 KB

Contents

module Awspec::Type
  class Account < Base
    REMOVE_SUFFIX_RE = /
    _account_attributes|_account_settings|_send_quota
    /ix

    def resource_via_client
      attributes = sts_client.get_caller_identity.to_h
      Awspec::Helper::Type::ACCOUNT_ATTRIBUTES.each do |type|
        key = type.gsub(REMOVE_SUFFIX_RE, '').to_sym
        if key == 'ses'
          # https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html
          next unless ['us-east-1', 'us-west-2', 'eu-west-1'].include?(Aws.config[:region])
        end
        eval "attributes[key] = Awspec::Type::#{type.camelize}.new.resource_via_client"
      end
      @resource_via_client ||= attributes.to_struct
    end

    def id
      @id ||= sts_client.get_caller_identity.account
    end

    def lambda
      resource_via_client[:lambda]
    end

    def method_missing(name)
      name = name.to_s if name.class == Symbol
      describe = name.tr('-', '_').to_sym
      super unless resource_via_client.members.include?(describe)
      resource_via_client[describe]
    end
  end
end

Version data entries

66 entries across 66 versions & 2 rubygems

Version Path
awspec-0.73.2 lib/awspec/type/account.rb
awspec-0.73.1 lib/awspec/type/account.rb
awspec-0.73.0 lib/awspec/type/account.rb
awspec-0.72.0 lib/awspec/type/account.rb
awspec-0.71.0 lib/awspec/type/account.rb
awspec-0.70.0 lib/awspec/type/account.rb