Sha256: 64918e14e7a7a8ec5a96a2ccc9969c94b19aa21f140356c621242b8b99d18b38
Contents?: true
Size: 1.87 KB
Versions: 9
Compression:
Stored size: 1.87 KB
Contents
module Fog module AWS class DynamoDB class Real # Update DynamoDB table throughput # # ==== Parameters # * 'table_name'<~String> - name of table to describe # * 'provisioned_throughput'<~Hash>: # * 'ReadCapacityUnits'<~Integer> - read capacity for table, in 5..10000 # * 'WriteCapacityUnits'<~Integer> - write capacity for table, in 5..10000 # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'Table'<~Hash> # * 'KeySchema'<~Hash> - schema for table # * 'HashKeyElement'<~Hash>: info for primary key # * 'AttributeName'<~String> - name of attribute # * 'AttributeType'<~String> - type of attribute, in %w{N NS S SS} for number, number set, string, string set # * 'RangeKeyElement'<~Hash>: optional, info for range key # * 'AttributeName'<~String> - name of attribute # * 'AttributeType'<~String> - type of attribute, in %w{N NS S SS} for number, number set, string, string set # * 'ProvisionedThroughput'<~Hash>: # * 'ReadCapacityUnits'<~Integer> - read capacity for table, in 5..10000 # * 'WriteCapacityUnits'<~Integer> - write capacity for table, in 5..10000 # * 'TableName'<~String> - name of table # * 'TableStatus'<~String> - status of table def update_table(table_name, provisioned_throughput) body = { 'ProvisionedThroughput' => provisioned_throughput, 'TableName' => table_name } request( :body => MultiJson.encode(body), :headers => {'x-amz-target' => 'DynamoDB_20111205.UpdateTable'}, :idempotent => true ) end end end end end
Version data entries
9 entries across 9 versions & 5 rubygems