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.6.0 lib/awspec/type/dynamodb_table.rb
awspec-1.5.4 lib/awspec/type/dynamodb_table.rb
awspec-1.5.3 lib/awspec/type/dynamodb_table.rb
awspec-1.5.2 lib/awspec/type/dynamodb_table.rb
awspec-1.5.1 lib/awspec/type/dynamodb_table.rb
awspec-1.5.0 lib/awspec/type/dynamodb_table.rb
awspec-1.4.3 lib/awspec/type/dynamodb_table.rb
awspec-1.4.2 lib/awspec/type/dynamodb_table.rb
awspec-1.4.1 lib/awspec/type/dynamodb_table.rb
awspec-1.4.0 lib/awspec/type/dynamodb_table.rb
awspec-1.3.1 lib/awspec/type/dynamodb_table.rb
awspec-1.3.0 lib/awspec/type/dynamodb_table.rb
awspec-1.2.0 lib/awspec/type/dynamodb_table.rb
awspec-1.1.0 lib/awspec/type/dynamodb_table.rb
awspec-1.0.0 lib/awspec/type/dynamodb_table.rb
awspec-1.0.0.rc lib/awspec/type/dynamodb_table.rb
awspec-0.88.2 lib/awspec/type/dynamodb_table.rb
awspec-0.88.1 lib/awspec/type/dynamodb_table.rb
awspec-0.88.0 lib/awspec/type/dynamodb_table.rb
awspec-0.87.1 lib/awspec/type/dynamodb_table.rb