embulk-input-dynamodb 1.0.0-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 975e1bd0d741c6c59a35771c5056352c43c34b9be85727f8f1f7111ef9600fbf
4
+ data.tar.gz: '09f0127e7c8c2aa2fce800a6a1f18a54cccd73da6c5dc0bd29da10f2b6338b51'
5
+ SHA512:
6
+ metadata.gz: 6f13a918f2eaff2489644fa70b2b38b6f76ccdc7e46dc2804d3bddceaf68828867d569cdca2adea2b376b0ff28e8056d5326dc8fa26315a763e10107c79e644c
7
+ data.tar.gz: 6a5d8dd04bb0015d82ad82e6688dc5c6747e98b82a405a3b981db05e2654e53584bb97aa4b38a2b93360fc5338e97aa37b0dd71c01bc043bbf8945bda74c9622
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Daisuke Higashi
4
+ Copyright (c) 2020 Takahiro Nakayama (civitaspo)
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,3 @@
1
+ Embulk::JavaPlugin.register_input(
2
+ "dynamodb", "org.embulk.input.dynamodb.DynamodbInputPlugin",
3
+ File.expand_path("../../../../classpath", __FILE__))
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: embulk-input-dynamodb
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: java
6
+ authors:
7
+ - Daisuke Higashi
8
+ - Civitaspo
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2023-02-15 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Loads records from Dynamodb.
15
+ email:
16
+ - daisuke.develop@gmail.com
17
+ - civitaspo@gmail.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - LICENSE.txt
23
+ - classpath/aws-java-sdk-core-1.11.711.jar
24
+ - classpath/aws-java-sdk-dynamodb-1.11.711.jar
25
+ - classpath/aws-java-sdk-kms-1.11.711.jar
26
+ - classpath/aws-java-sdk-s3-1.11.711.jar
27
+ - classpath/aws-java-sdk-sts-1.11.711.jar
28
+ - classpath/commons-codec-1.11.jar
29
+ - classpath/commons-logging-1.2.jar
30
+ - classpath/embulk-input-dynamodb-1.0.0.jar
31
+ - classpath/embulk-util-config-0.3.2.jar
32
+ - classpath/embulk-util-json-0.1.1.jar
33
+ - classpath/embulk-util-rubytime-0.3.2.jar
34
+ - classpath/embulk-util-timestamp-0.2.1.jar
35
+ - classpath/httpclient-4.5.9.jar
36
+ - classpath/httpcore-4.4.11.jar
37
+ - classpath/ion-java-1.0.2.jar
38
+ - classpath/jackson-annotations-2.6.7.jar
39
+ - classpath/jackson-core-2.6.7.jar
40
+ - classpath/jackson-databind-2.6.7.3.jar
41
+ - classpath/jackson-dataformat-cbor-2.6.7.jar
42
+ - classpath/jackson-datatype-jdk8-2.6.7.jar
43
+ - classpath/jmespath-java-1.11.711.jar
44
+ - classpath/joda-time-2.8.1.jar
45
+ - classpath/scala-library-2.13.1.jar
46
+ - classpath/validation-api-1.1.0.Final.jar
47
+ - lib/embulk/input/dynamodb.rb
48
+ homepage: https://github.com/lulichn/embulk-input-dynamodb
49
+ licenses:
50
+ - MIT
51
+ metadata: {}
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubyforge_project:
68
+ rubygems_version: 2.7.9
69
+ signing_key:
70
+ specification_version: 4
71
+ summary: An Embulk plugin to ingest data from Dynamodb.
72
+ test_files: []