Package io.kestra.plugin.jdbc.postgresql
Interface PostgresConnectionInterface
-
- All Known Implementing Classes:
AbstractCopy,CopyIn,CopyOut,Query
public interface PostgresConnectionInterface
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPostgresConnectionInterface.SslMode
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.BooleangetSsl()java.lang.StringgetSslCert()java.lang.StringgetSslKey()java.lang.StringgetSslKeyPassword()PostgresConnectionInterface.SslModegetSslMode()java.lang.StringgetSslRootCert()
-
-
-
Method Detail
-
getSsl
@PluginProperty(dynamic=false) java.lang.Boolean getSsl()
-
getSslMode
@PluginProperty(dynamic=false) PostgresConnectionInterface.SslMode getSslMode()
-
getSslRootCert
@PluginProperty(dynamic=true) java.lang.String getSslRootCert()
-
getSslCert
@PluginProperty(dynamic=true) java.lang.String getSslCert()
-
getSslKey
@PluginProperty(dynamic=true) java.lang.String getSslKey()
-
getSslKeyPassword
@PluginProperty(dynamic=true) java.lang.String getSslKeyPassword()
-
-