Sha256: 89fec1184306b4949f93aab28bda403695a8a7fbcacfdfa95dd492819d143673

Contents?: true

Size: 1.1 KB

Versions: 116

Compression:

Stored size: 1.1 KB

Contents

module Awspec::Type
  class DynamodbTable < ResourceBase
    aws_resource Aws::DynamoDB::Table

    def resource_via_client
      @resource_via_client ||= find_dynamodb_table(@display_name)
    end

    def id
      @id ||= resource_via_client.table_name if resource_via_client
    end

    STATUSES = %w(
      CREATING
      UPDATING
      DELETING
      ACTIVE
    )

    STATUSES.each do |status|
      define_method status.downcase + '?' do
        resource_via_client.table_status == status
      end
    end

    def has_attribute_definition?(name, type)
      ret = resource_via_client.attribute_definitions.select { |a| a.attribute_name == name }
      return false if ret.empty?
      return false unless ret.single_resource.attribute_type == type
      return true if ret.single_resource.attribute_name == name
    end

    def has_key_schema?(name, type)
      ret = resource_via_client.key_schema.select { |k| k.attribute_name == name }
      return false if ret.empty?
      return false unless ret.single_resource.key_type == type
      return true if ret.single_resource.attribute_name == name
    end
  end
end

Version data entries

116 entries across 116 versions & 4 rubygems

Version Path
awspec-1.15.1 lib/awspec/type/dynamodb_table.rb
awspec-1.15.0 lib/awspec/type/dynamodb_table.rb
awspec-1.14.1 lib/awspec/type/dynamodb_table.rb
awspec-1.14.0 lib/awspec/type/dynamodb_table.rb
awspec-1.13.0 lib/awspec/type/dynamodb_table.rb
awspec-1.12.7 lib/awspec/type/dynamodb_table.rb
awspec-1.12.6 lib/awspec/type/dynamodb_table.rb
awspec-1.12.5 lib/awspec/type/dynamodb_table.rb
awspec-1.12.4 lib/awspec/type/dynamodb_table.rb
awspec-1.12.3 lib/awspec/type/dynamodb_table.rb
awspec-1.12.2 lib/awspec/type/dynamodb_table.rb
awspec-1.12.1 lib/awspec/type/dynamodb_table.rb
awspec-1.12.0 lib/awspec/type/dynamodb_table.rb
awspec-1.11.1 lib/awspec/type/dynamodb_table.rb
awspec-1.11.0 lib/awspec/type/dynamodb_table.rb
awspec-1.10.0 lib/awspec/type/dynamodb_table.rb
awspec-1.9.0 lib/awspec/type/dynamodb_table.rb
awspec-1.8.0 lib/awspec/type/dynamodb_table.rb
awspec-1.7.0 lib/awspec/type/dynamodb_table.rb
awspec-1.6.1 lib/awspec/type/dynamodb_table.rb