From 3eb0bc008bea52d658951841978eb8c68c022303 Mon Sep 17 00:00:00 2001 From: XmasApple <86735308+XmasApple@users.noreply.github.com> Date: Sun, 8 Oct 2023 17:45:27 +0300 Subject: [PATCH 1/3] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3746ab9..fad8adde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- Add static auth ## v0.1.1 - Add static code analysis - Add CodeQL analysis From a244fc2b5dd6cedfa30a99d8cf477699aa4d5907 Mon Sep 17 00:00:00 2001 From: XmasApple Date: Sun, 8 Oct 2023 18:05:56 +0300 Subject: [PATCH 2/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 293393ca..11cee09a 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ await driver.Initialize(); // Make sure to await driver initialization YDB SDK provides two standard ways for authentication: 1) `Ydb.Sdk.Auth.AnonymousProvider`. Anonymous YDB access, mainly for tests purposes. 2) `Ydb.Sdk.Auth.TokenProvider`. Token authentication for OAuth-like tokens. +3) `Ydb.Sdk.Auth.StaticCredentialsProvider`. Username and password based authentication. For Yandex.Cloud specific authentication methods, consider using **[ydb-dotnet-yc](https://github.com/ydb-platform/ydb-dotnet-yc)**. From 3ab962fd777e0efc8eafab2e43ecaddfca08096f Mon Sep 17 00:00:00 2001 From: XmasApple Date: Sun, 8 Oct 2023 18:10:21 +0300 Subject: [PATCH 3/3] Fastfix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 11cee09a..6fb188e0 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ await driver.Initialize(); // Make sure to await driver initialization ``` ### Credentials -YDB SDK provides two standard ways for authentication: +YDB SDK provides several standard ways for authentication: 1) `Ydb.Sdk.Auth.AnonymousProvider`. Anonymous YDB access, mainly for tests purposes. 2) `Ydb.Sdk.Auth.TokenProvider`. Token authentication for OAuth-like tokens. 3) `Ydb.Sdk.Auth.StaticCredentialsProvider`. Username and password based authentication.