embulk-input-salesforce_bulk 0.2.2 → 0.2.3
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ad273eb2ac275161ab221b729df27267c744ca1
|
|
4
|
+
data.tar.gz: 5c18bab188007f84f06476eb4d29add10183a607
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5213c868f1868fefadfbea32c25781e9e1afab39d8e74ce4e874dfa3d04057bbab4590cf8c5cef4f5d7501892343b25ca4ad75c21adaa118c220b9472476f1b7
|
|
7
|
+
data.tar.gz: 7e7e16c915a70fbe5b22ae6d112e82e20414392b8b2133ccb3c6adb8612f6a564f69566a0650f7ec7a89ef46d1977ed5afaf3f60b133ca759241abc861ea0315
|
data/README.md
CHANGED
|
@@ -13,6 +13,7 @@ Salesforce Bulk API の一括クエリ結果を取得します。
|
|
|
13
13
|
|
|
14
14
|
- **userName**: Salesforce user name.(string, required)
|
|
15
15
|
- **password**: Salesforce password.(string, required)
|
|
16
|
+
- Set a string that concatenated the password and security token.
|
|
16
17
|
- **authEndpointUrl**: Salesforce login endpoint URL.(string, default is "https://login.salesforce.com/services/Soap/u/39.0")
|
|
17
18
|
- **objectType**: object type of JobInfo.(string, required)
|
|
18
19
|
- Usually same as query's object.(If **querySelectFrom** is `(snip) FROM xxx (snip)` then **dataType** is `xxx`)
|
data/build.gradle
CHANGED
|
Binary file
|
|
@@ -237,6 +237,7 @@ public class SalesforceBulkInputPlugin
|
|
|
237
237
|
}
|
|
238
238
|
} catch (ConnectionException|AsyncApiException|InterruptedException|IOException e) {
|
|
239
239
|
log.error("{}", e.getClass(), e);
|
|
240
|
+
throw new RuntimeException("SalesforceBulkWrapperError");
|
|
240
241
|
}
|
|
241
242
|
|
|
242
243
|
return taskReport;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-input-salesforce_bulk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- mikoto2000
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -54,7 +54,7 @@ files:
|
|
|
54
54
|
- classpath/antlr-runtime-3.5.jar
|
|
55
55
|
- classpath/commons-beanutils-1.7.0.jar
|
|
56
56
|
- classpath/commons-logging-1.0.3.jar
|
|
57
|
-
- classpath/embulk-input-salesforce_bulk-0.2.
|
|
57
|
+
- classpath/embulk-input-salesforce_bulk-0.2.3.jar
|
|
58
58
|
- classpath/force-partner-api-39.0.0.jar
|
|
59
59
|
- classpath/force-wsc-39.0.5.jar
|
|
60
60
|
- classpath/jackson-core-asl-1.9.13.jar
|
|
Binary file
|