Skip to content

Commit

Permalink
chore: change variable names to snake_case
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkoooo committed Feb 6, 2024
1 parent 7721df7 commit 557d632
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Snowflake output plugin for Embulk loads records to Snowflake.
- **host**: database host name (string, required)
- **user**: database login user name (string, required)
- **password**: database login password (string, default: "")
- **privateKey**: database login using key-pair authentication(string, default: ""). This authentication method requires a 2048-bit (minimum) RSA key pair.
- **privateKeyPassphrase**: passphrase for privateKey (string, default: "")
- **private_key**: database login using key-pair authentication(string, default: ""). This authentication method requires a 2048-bit (minimum) RSA key pair.
- **private_key_passphrase**: passphrase for private_key (string, default: "")
- **warehouse**: destination warehouse name (string, required)
- **database**: destination database name (string, required)
- **schema**: destination schema name (string, default: "public")
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/embulk/output/SnowflakeOutputPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ public interface SnowflakePluginTask extends PluginTask {
@ConfigDefault("\"\"")
public String getPassword();

@Config("privateKey")
@Config("private_key")
@ConfigDefault("\"\"")
String getPrivateKey();

@Config("privateKeyPassphrase")
@Config("private_key_passphrase")
@ConfigDefault("\"\"")
String getPrivateKeyPassphrase();

Expand Down

0 comments on commit 557d632

Please sign in to comment.