aws-sdk-dynamodb 1.100.0 → 1.101.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +1 -1
- data/lib/aws-sdk-dynamodb/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-dynamodb.rb +1 -1
- data/sig/client.rbs +1402 -0
- data/sig/errors.rbs +111 -0
- data/sig/resource.rbs +196 -0
- data/sig/table.rbs +332 -0
- data/sig/types.rbs +1742 -0
- data/sig/waiters.rbs +33 -0
- metadata +10 -4
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module DynamoDB
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class TableExists
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
table_name: ::String
|
18
|
+
) -> Client::_DescribeTableResponseSuccess
|
19
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeTableResponseSuccess
|
20
|
+
end
|
21
|
+
|
22
|
+
class TableNotExists
|
23
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
24
|
+
| (?Hash[Symbol, untyped]) -> void
|
25
|
+
|
26
|
+
def wait: (
|
27
|
+
table_name: ::String
|
28
|
+
) -> Client::_DescribeTableResponseSuccess
|
29
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeTableResponseSuccess
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dynamodb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.101.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -73,6 +73,12 @@ files:
|
|
73
73
|
- lib/aws-sdk-dynamodb/table.rb
|
74
74
|
- lib/aws-sdk-dynamodb/types.rb
|
75
75
|
- lib/aws-sdk-dynamodb/waiters.rb
|
76
|
+
- sig/client.rbs
|
77
|
+
- sig/errors.rbs
|
78
|
+
- sig/resource.rbs
|
79
|
+
- sig/table.rbs
|
80
|
+
- sig/types.rbs
|
81
|
+
- sig/waiters.rbs
|
76
82
|
homepage: https://github.com/aws/aws-sdk-ruby
|
77
83
|
licenses:
|
78
84
|
- Apache-2.0
|