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
Copy file name to clipboardExpand all lines: src/main/java/io/kestra/plugin/fs/sftp/SftpInterface.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@
5
5
6
6
publicinterfaceSftpInterface {
7
7
@Schema(
8
-
title = "Private keyfile in the PEM file format to connect to a remote server using SSH",
9
-
description = "To generate a PEMformat key from OpenSSH, use the following command: `ssh-keygen -m PEM`"
8
+
title = "Private key file in the PEM format to connect to a remote server using SSH",
9
+
description = "To generate a PEM-format key from OpenSSH, use the following command: `ssh-keygen -m PEM`"
10
10
)
11
11
Property<String> getKeyfile();
12
12
13
13
@Schema(
14
-
title = "Passphrase of the ssh key"
14
+
title = "Passphrase for the SSH key"
15
15
)
16
16
Property<String> getPassphrase();
17
17
@@ -55,12 +55,12 @@ public interface SftpInterface {
55
55
Property<String> getProxyType();
56
56
57
57
@Schema(
58
-
title = "Is the path relative to the users home directory"
58
+
title = "Is the path relative to the user's home directory"
59
59
)
60
60
Property<Boolean> getRootDir();
61
61
62
62
@Schema(
63
-
title = "Configures Key exchange algorithm explicitly e. g diffie-hellman-group14-sha1, diffie-hellman-group-exchange-sha256, diffie-hellman-group-exchange-sha1, diffie-hellman-group1-sha1."
63
+
title = "Configures the key exchange algorithm explicitly (e.g., diffie-hellman-group14-sha1, diffie-hellman-group-exchange-sha256, diffie-hellman-group-exchange-sha1, diffie-hellman-group1-sha1)."
0 commit comments