From 4e107a5ec9d309af7ae222c18c1887cc92fee16b Mon Sep 17 00:00:00 2001 From: Otavio Santana Date: Tue, 23 Jan 2024 07:38:05 +0000 Subject: [PATCH] docs: create documentation to oracle nosql configurations Signed-off-by: Otavio Santana --- .../communication/OracleNoSQLConfigurations.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/jnosql-oracle/src/main/java/org/eclipse/jnosql/databases/oracle/communication/OracleNoSQLConfigurations.java b/jnosql-oracle/src/main/java/org/eclipse/jnosql/databases/oracle/communication/OracleNoSQLConfigurations.java index 64521dbc4..35acaa5d1 100644 --- a/jnosql-oracle/src/main/java/org/eclipse/jnosql/databases/oracle/communication/OracleNoSQLConfigurations.java +++ b/jnosql-oracle/src/main/java/org/eclipse/jnosql/databases/oracle/communication/OracleNoSQLConfigurations.java @@ -76,6 +76,20 @@ public enum OracleNoSQLConfigurations implements Supplier { /** * Specifies the deployment type for Oracle NoSQL database. * Default value: {@link DeploymentType#ON_PREMISES} + *

+ * When ON_PREMISES is selected for deployment: + * - Credentials required: USER (username) and HOST (hostname or IP address). + * - Connection is established without authentication if USER and HOST are not provided. + *

+ *

+ * When CLOUD is selected for deployment: + * - Credentials required: PRIVATE_KEY (private key file path), FINGERPRINT (fingerprint of the public key), + * TENANT (Oracle Cloud tenant ID), USER (Oracle Cloud username), and PASSWORD (Oracle Cloud password). + * - If any of these credentials are not provided, the configuration will be read from a configuration file. + * For more information, see: + * + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkgettingstarted.htm#Configur + *

*/ DEPLOYMENT("jnosql.oracle.nosql.deployment"), /**