aws-sdk-dynamodb 1.0.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/aws-sdk-dynamodb.rb +49 -0
- data/lib/aws-sdk-dynamodb/attribute_value.rb +108 -0
- data/lib/aws-sdk-dynamodb/client.rb +4467 -0
- data/lib/aws-sdk-dynamodb/client_api.rb +783 -0
- data/lib/aws-sdk-dynamodb/customizations.rb +5 -0
- data/lib/aws-sdk-dynamodb/customizations/client.rb +31 -0
- data/lib/aws-sdk-dynamodb/errors.rb +23 -0
- data/lib/aws-sdk-dynamodb/plugins/crc32_validation.rb +56 -0
- data/lib/aws-sdk-dynamodb/plugins/extended_retries.rb +27 -0
- data/lib/aws-sdk-dynamodb/plugins/simple_attributes.rb +215 -0
- data/lib/aws-sdk-dynamodb/resource.rb +517 -0
- data/lib/aws-sdk-dynamodb/table.rb +3159 -0
- data/lib/aws-sdk-dynamodb/types.rb +6071 -0
- data/lib/aws-sdk-dynamodb/waiters.rb +92 -0
- metadata +87 -0
@@ -0,0 +1,92 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing for info on making contributions:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
require 'aws-sdk-core/waiters'
|
9
|
+
|
10
|
+
module Aws
|
11
|
+
module DynamoDB
|
12
|
+
module Waiters
|
13
|
+
class TableExists
|
14
|
+
|
15
|
+
# @param [Hash] options
|
16
|
+
# @option options [required, Client] :client
|
17
|
+
# @option options [Integer] :max_attempts (25)
|
18
|
+
# @option options [Integer] :delay (20)
|
19
|
+
# @option options [Proc] :before_attempt
|
20
|
+
# @option options [Proc] :before_wait
|
21
|
+
def initialize(options)
|
22
|
+
@client = options.fetch(:client)
|
23
|
+
@waiter = Aws::Waiters::Waiter.new({
|
24
|
+
max_attempts: 25,
|
25
|
+
delay: 20,
|
26
|
+
poller: Aws::Waiters::Poller.new(
|
27
|
+
operation_name: :describe_table,
|
28
|
+
acceptors: [
|
29
|
+
{
|
30
|
+
"expected" => "ACTIVE",
|
31
|
+
"matcher" => "path",
|
32
|
+
"state" => "success",
|
33
|
+
"argument" => "table.table_status"
|
34
|
+
},
|
35
|
+
{
|
36
|
+
"expected" => "ResourceNotFoundException",
|
37
|
+
"matcher" => "error",
|
38
|
+
"state" => "retry"
|
39
|
+
}
|
40
|
+
]
|
41
|
+
)
|
42
|
+
}.merge(options))
|
43
|
+
end
|
44
|
+
|
45
|
+
# @option (see Client#describe_table)
|
46
|
+
# @return (see Client#describe_table)
|
47
|
+
def wait(params = {})
|
48
|
+
@waiter.wait(client: @client, params: params)
|
49
|
+
end
|
50
|
+
|
51
|
+
# @api private
|
52
|
+
attr_reader :waiter
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
class TableNotExists
|
57
|
+
|
58
|
+
# @param [Hash] options
|
59
|
+
# @option options [required, Client] :client
|
60
|
+
# @option options [Integer] :max_attempts (25)
|
61
|
+
# @option options [Integer] :delay (20)
|
62
|
+
# @option options [Proc] :before_attempt
|
63
|
+
# @option options [Proc] :before_wait
|
64
|
+
def initialize(options)
|
65
|
+
@client = options.fetch(:client)
|
66
|
+
@waiter = Aws::Waiters::Waiter.new({
|
67
|
+
max_attempts: 25,
|
68
|
+
delay: 20,
|
69
|
+
poller: Aws::Waiters::Poller.new(
|
70
|
+
operation_name: :describe_table,
|
71
|
+
acceptors: [{
|
72
|
+
"expected" => "ResourceNotFoundException",
|
73
|
+
"matcher" => "error",
|
74
|
+
"state" => "success"
|
75
|
+
}]
|
76
|
+
)
|
77
|
+
}.merge(options))
|
78
|
+
end
|
79
|
+
|
80
|
+
# @option (see Client#describe_table)
|
81
|
+
# @return (see Client#describe_table)
|
82
|
+
def wait(params = {})
|
83
|
+
@waiter.wait(client: @client, params: params)
|
84
|
+
end
|
85
|
+
|
86
|
+
# @api private
|
87
|
+
attr_reader :waiter
|
88
|
+
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-dynamodb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.rc1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-12-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.0.0.rc1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.0.0.rc1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: aws-sigv4
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.0'
|
41
|
+
description: Official AWS Ruby gem for Amazon DynamoDB (DynamoDB). This gem is part
|
42
|
+
of the AWS SDK for Ruby.
|
43
|
+
email:
|
44
|
+
- trevrowe@amazon.com
|
45
|
+
executables: []
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- lib/aws-sdk-dynamodb.rb
|
50
|
+
- lib/aws-sdk-dynamodb/attribute_value.rb
|
51
|
+
- lib/aws-sdk-dynamodb/client.rb
|
52
|
+
- lib/aws-sdk-dynamodb/client_api.rb
|
53
|
+
- lib/aws-sdk-dynamodb/customizations.rb
|
54
|
+
- lib/aws-sdk-dynamodb/customizations/client.rb
|
55
|
+
- lib/aws-sdk-dynamodb/errors.rb
|
56
|
+
- lib/aws-sdk-dynamodb/plugins/crc32_validation.rb
|
57
|
+
- lib/aws-sdk-dynamodb/plugins/extended_retries.rb
|
58
|
+
- lib/aws-sdk-dynamodb/plugins/simple_attributes.rb
|
59
|
+
- lib/aws-sdk-dynamodb/resource.rb
|
60
|
+
- lib/aws-sdk-dynamodb/table.rb
|
61
|
+
- lib/aws-sdk-dynamodb/types.rb
|
62
|
+
- lib/aws-sdk-dynamodb/waiters.rb
|
63
|
+
homepage: http://github.com/aws/aws-sdk-ruby
|
64
|
+
licenses:
|
65
|
+
- Apache-2.0
|
66
|
+
metadata: {}
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options: []
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 1.3.1
|
81
|
+
requirements: []
|
82
|
+
rubyforge_project:
|
83
|
+
rubygems_version: 2.5.1
|
84
|
+
signing_key:
|
85
|
+
specification_version: 4
|
86
|
+
summary: AWS SDK for Ruby - DynamoDB
|
87
|
+
test_files: []
|