You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**guest_space_id**: kintone app belongs to guest space, guest space id is required. (integer, optional)
19
19
-**mode**: kintone mode (string, required)
20
-
-**update_key**: Column name to set update key (string, required if mode is update or insert_or_update)
20
+
-**update_key**: Column name to set update key (string, required if mode is update, upsert or insert_or_update)
21
21
-**reduce_key**: Key column name to reduce expanded SUBTABLE (string, optional)
22
22
-**sort_columns**: List of columns for sorting input records (array of objects, optional)
23
23
-**name**: Column name (string, required)
@@ -29,11 +29,13 @@ kintone output plugin for Embulk stores app records from kintone.
29
29
-**skip_if_non_existing_id_or_update_key**: The skip policy if the record corresponding to the id or update key does not exist (string `auto`, `never` or `always`, default is `auto`). No effect for insert mode.
30
30
-**auto**:
31
31
- **update mode**: Skip the record if no id or update key value is specified.
32
+
- **upsert mode**: Skip the record if no update key value is specified. Insert the record if no id is specified.
32
33
- **insert_or_update mode**: Skip the record if corresponds to the id does not exist or no update key value is specified.
33
34
-**never**: Never skip the record even if corresponds to the id or update key does not exist.
34
35
-**update mode**: Throw exception if no id or update key value is specified.
36
+
-**upsert mode**: Insert the record even if no id or update key value is specified.
35
37
-**insert_or_update mode**: Insert the record if corresponds to the id or update key does not exist (also, if no id or update key value is specified).
36
-
-**always**: Always skip the record if corresponds to the id or update key does not exist (also, if no id or update key value is specified). update mode and insert_or_update mode will the same behavior (only updated, never inserted).
38
+
-**always**: Always skip the record if corresponds to the id or update key does not exist (also, if no id or update key value is specified). update mode, upsert mode and insert_or_update mode will the same behavior (only updated, never inserted).
37
39
-**column_options** advanced: a key-value pairs where key is a column name and value is options for the column.
38
40
-**field_code**: field code (string, required)
39
41
-**type**: field type (string, required). See [this page](https://cybozu.dev/ja/kintone/docs/overview/field-types/#field-type-update) for list of available types. However, following types are not yet supported
0 commit comments