Package not found. Please check the package name and try again.
embulk-output-dynamodb 0.1.4 → 0.1.5
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 +4 -4
- data/CHANGELOG.md +27 -1
- data/README.md +2 -2
- data/build.gradle +2 -2
- data/classpath/aws-java-sdk-core-1.11.16.jar +0 -0
- data/classpath/aws-java-sdk-dynamodb-1.11.16.jar +0 -0
- data/classpath/aws-java-sdk-kms-1.11.16.jar +0 -0
- data/classpath/aws-java-sdk-s3-1.11.16.jar +0 -0
- data/classpath/commons-codec-1.9.jar +0 -0
- data/classpath/commons-logging-1.2.jar +0 -0
- data/classpath/embulk-output-dynamodb-0.1.5.jar +0 -0
- data/classpath/httpclient-4.5.2.jar +0 -0
- data/classpath/httpcore-4.4.4.jar +0 -0
- data/classpath/jackson-annotations-2.6.0.jar +0 -0
- data/classpath/jackson-core-2.6.6.jar +0 -0
- data/classpath/jackson-databind-2.6.6.jar +0 -0
- data/classpath/jackson-dataformat-cbor-2.6.6.jar +0 -0
- data/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/gradle/wrapper/gradle-wrapper.properties +2 -2
- data/src/main/java/org/embulk/output/dynamodb/AwsCredentials.java +2 -2
- metadata +25 -21
- data/classpath/aws-java-sdk-core-1.10.50.jar +0 -0
- data/classpath/aws-java-sdk-dynamodb-1.10.50.jar +0 -0
- data/classpath/aws-java-sdk-kms-1.10.50.jar +0 -0
- data/classpath/aws-java-sdk-s3-1.10.50.jar +0 -0
- data/classpath/commons-codec-1.6.jar +0 -0
- data/classpath/commons-logging-1.1.3.jar +0 -0
- data/classpath/embulk-output-dynamodb-0.1.4.jar +0 -0
- data/classpath/httpclient-4.3.6.jar +0 -0
- data/classpath/httpcore-4.3.3.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82cba589f5f74209f19cff43e295c2c6fb48fb20
|
|
4
|
+
data.tar.gz: b0645e814a4937376ac7f9a10b06f29cf4b5873f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25b60a3454c49cb41e10a633ff55b7dc80637d35766a69d56994a29541e06283a47b310e99240ef02b30f7b376c0a7cefface78ed20b29b52601dc05e796d575
|
|
7
|
+
data.tar.gz: af0c6c9e88343be88c1c010e48d197f3f7c1f41c269754ebc2615e0611bced90694149ea2ae67810d99c7606c115ee3517c9669868f4b28c4a8f446997f5b3dc
|
data/CHANGELOG.md
CHANGED
|
@@ -1 +1,27 @@
|
|
|
1
|
-
## 0.1.
|
|
1
|
+
## 0.1.5 - 2022-11-09
|
|
2
|
+
|
|
3
|
+
[new feature] Support both ECS task role and EC2 instance profile in auth_method 'instance' [#12](https://github.com/sakama/embulk-output-dynamodb/pull/12) @grass-fed thanks!
|
|
4
|
+
|
|
5
|
+
## 0.1.4 - 2017-06-21
|
|
6
|
+
|
|
7
|
+
[new feature] HashKey/RangeKey table support at upsert_with_expression mode [#9](https://github.com/sakama/embulk-output-dynamodb/pull/9) @takasick thanks!
|
|
8
|
+
|
|
9
|
+
## 0.1.3 - 2016-07-11
|
|
10
|
+
|
|
11
|
+
[maintenance] Fix JSON column handling(Array type) [#7](https://github.com/sakama/embulk-output-dynamodb/pull/7) @joker1007 thanks!
|
|
12
|
+
[maintenance] Add validation for auto_create_table option [#8](https://github.com/sakama/embulk-output-dynamodb/pull/8)
|
|
13
|
+
|
|
14
|
+
## 0.1.2 - 2016-05-24
|
|
15
|
+
|
|
16
|
+
[maintenance] Small fix
|
|
17
|
+
|
|
18
|
+
## 0.1.1 - 2016-05-16
|
|
19
|
+
|
|
20
|
+
[maintenance] Check if table exists before creating table [#5](https://github.com/sakama/embulk-output-dynamodb/pull/5)
|
|
21
|
+
|
|
22
|
+
## 0.1.0 - 2016-05-13
|
|
23
|
+
|
|
24
|
+
Thanks for contribution!
|
|
25
|
+
|
|
26
|
+
@joker1007 [#1](https://github.com/sakama/embulk-output-dynamodb/pull/1) [#2](https://github.com/sakama/embulk-output-dynamodb/pull/2)
|
|
27
|
+
@satoshihirose [#3](https://github.com/sakama/embulk-output-dynamodb/pull/3)
|
data/README.md
CHANGED
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
|
|
116
116
|
- **instance**
|
|
117
117
|
|
|
118
|
-
Use EC2 instance profile
|
|
118
|
+
Use ECS task role or EC2 instance profile.
|
|
119
119
|
|
|
120
120
|
```yaml
|
|
121
121
|
auth_method: instance
|
|
@@ -212,4 +212,4 @@ $ cd /path/to/dynamodb
|
|
|
212
212
|
$ wget http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz
|
|
213
213
|
$ tar zxvf dynamodb_local_latest.tar.gz
|
|
214
214
|
$ java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb
|
|
215
|
-
```
|
|
215
|
+
```
|
data/build.gradle
CHANGED
|
@@ -14,7 +14,7 @@ configurations {
|
|
|
14
14
|
provided
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
version = "0.1.
|
|
17
|
+
version = "0.1.5"
|
|
18
18
|
|
|
19
19
|
sourceCompatibility = 1.7
|
|
20
20
|
targetCompatibility = 1.7
|
|
@@ -22,7 +22,7 @@ targetCompatibility = 1.7
|
|
|
22
22
|
dependencies {
|
|
23
23
|
compile "org.embulk:embulk-core:0.8.8"
|
|
24
24
|
provided "org.embulk:embulk-core:0.8.8"
|
|
25
|
-
compile "com.amazonaws:aws-java-sdk-dynamodb:1.
|
|
25
|
+
compile "com.amazonaws:aws-java-sdk-dynamodb:1.11.16"
|
|
26
26
|
|
|
27
27
|
testCompile "junit:junit:4.+"
|
|
28
28
|
testCompile "org.embulk:embulk-core:0.8.8:tests"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Sun Jan 08 00:35:58 PST 2017
|
|
2
2
|
distributionBase=GRADLE_USER_HOME
|
|
3
3
|
distributionPath=wrapper/dists
|
|
4
4
|
zipStoreBase=GRADLE_USER_HOME
|
|
5
5
|
zipStorePath=wrapper/dists
|
|
6
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.
|
|
6
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-bin.zip
|
|
@@ -7,8 +7,8 @@ import com.amazonaws.auth.AWSSessionCredentialsProvider;
|
|
|
7
7
|
import com.amazonaws.auth.AnonymousAWSCredentials;
|
|
8
8
|
import com.amazonaws.auth.BasicAWSCredentials;
|
|
9
9
|
import com.amazonaws.auth.BasicSessionCredentials;
|
|
10
|
+
import com.amazonaws.auth.EC2ContainerCredentialsProviderWrapper;
|
|
10
11
|
import com.amazonaws.auth.EnvironmentVariableCredentialsProvider;
|
|
11
|
-
import com.amazonaws.auth.InstanceProfileCredentialsProvider;
|
|
12
12
|
import com.amazonaws.auth.SystemPropertiesCredentialsProvider;
|
|
13
13
|
import com.amazonaws.auth.profile.ProfileCredentialsProvider;
|
|
14
14
|
import com.amazonaws.auth.profile.ProfilesConfigFile;
|
|
@@ -85,7 +85,7 @@ public abstract class AwsCredentials
|
|
|
85
85
|
reject(task.getSessionToken(), "session_token");
|
|
86
86
|
reject(task.getProfileFile(), "profile_file");
|
|
87
87
|
reject(task.getProfileName(), "profile_name");
|
|
88
|
-
return new
|
|
88
|
+
return new EC2ContainerCredentialsProviderWrapper();
|
|
89
89
|
|
|
90
90
|
case "profile":
|
|
91
91
|
{
|
metadata
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-output-dynamodb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Satoshi Akama
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-11-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: bundler
|
|
15
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - ~>
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.0'
|
|
20
14
|
requirement: !ruby/object:Gem::Requirement
|
|
21
15
|
requirements:
|
|
22
16
|
- - ~>
|
|
23
17
|
- !ruby/object:Gem::Version
|
|
24
18
|
version: '1.0'
|
|
19
|
+
name: bundler
|
|
25
20
|
prerelease: false
|
|
26
21
|
type: :development
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: rake
|
|
29
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
30
23
|
requirements:
|
|
31
|
-
- -
|
|
24
|
+
- - ~>
|
|
32
25
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
26
|
+
version: '1.0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
34
28
|
requirement: !ruby/object:Gem::Requirement
|
|
35
29
|
requirements:
|
|
36
30
|
- - '>='
|
|
37
31
|
- !ruby/object:Gem::Version
|
|
38
32
|
version: '10.0'
|
|
33
|
+
name: rake
|
|
39
34
|
prerelease: false
|
|
40
35
|
type: :development
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
41
|
description: Dumps records to AWS DynamoDB.
|
|
42
42
|
email:
|
|
43
43
|
- satoshiakama@gmail.com
|
|
@@ -65,15 +65,19 @@ files:
|
|
|
65
65
|
- src/test/java/org/embulk/output/dynamodb/TestDynamodbOutputPlugin.java
|
|
66
66
|
- src/test/java/org/embulk/output/dynamodb/TestDynamodbUtils.java
|
|
67
67
|
- src/test/resources/sample_01.csv
|
|
68
|
-
- classpath/
|
|
69
|
-
- classpath/aws-java-sdk-
|
|
70
|
-
- classpath/
|
|
71
|
-
- classpath/aws-java-sdk-
|
|
72
|
-
- classpath/
|
|
73
|
-
- classpath/
|
|
74
|
-
- classpath/
|
|
75
|
-
- classpath/
|
|
76
|
-
- classpath/
|
|
68
|
+
- classpath/commons-logging-1.2.jar
|
|
69
|
+
- classpath/aws-java-sdk-s3-1.11.16.jar
|
|
70
|
+
- classpath/embulk-output-dynamodb-0.1.5.jar
|
|
71
|
+
- classpath/aws-java-sdk-dynamodb-1.11.16.jar
|
|
72
|
+
- classpath/jackson-databind-2.6.6.jar
|
|
73
|
+
- classpath/jackson-core-2.6.6.jar
|
|
74
|
+
- classpath/httpclient-4.5.2.jar
|
|
75
|
+
- classpath/commons-codec-1.9.jar
|
|
76
|
+
- classpath/aws-java-sdk-core-1.11.16.jar
|
|
77
|
+
- classpath/aws-java-sdk-kms-1.11.16.jar
|
|
78
|
+
- classpath/jackson-dataformat-cbor-2.6.6.jar
|
|
79
|
+
- classpath/httpcore-4.4.4.jar
|
|
80
|
+
- classpath/jackson-annotations-2.6.0.jar
|
|
77
81
|
homepage: https://github.com/sakama/embulk-output-dynamodb
|
|
78
82
|
licenses:
|
|
79
83
|
- Apache-2.0
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|