Skip to content

Commit

Permalink
KSM-557 Added new and updated PAM field types (#652)
Browse files Browse the repository at this point in the history
* removed ReSharper suppressions

* KSM-557 Added new and updated PAM field types
  • Loading branch information
idimov-keeper authored Sep 11, 2024
1 parent 5ee4eba commit 2b7b4b6
Show file tree
Hide file tree
Showing 7 changed files with 148 additions and 310 deletions.
1 change: 0 additions & 1 deletion sdk/dotNet/QuickTest/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ private static void Main()
private static async Task GetSecrets()
{
var storage = new LocalConfigStorage("test_config_storage.json");
// ReSharper disable once StringLiteralTypo
SecretsManagerClient.InitializeStorage(storage, "US:ONE_TIME_TOKEN");
var options = new SecretsManagerOptions(storage);
// var options = new SecretsManagerOptions(storage, SecretsManagerClient.CachingPostFunction);
Expand Down
1 change: 1 addition & 0 deletions sdk/dotNet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
## 16.6.7

* KSM-550 - Stop generating UIDs that start with "-"
* KSM-557 - Added new and updated PAM field types

## 16.6.6

Expand Down
2 changes: 0 additions & 2 deletions sdk/dotNet/SecretManagement.Keeper/src/SecretManagement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ public static async Task<KeeperResult> GetVaultConfigFromConfigString(string con
return KeeperResult.Ok(storage.AsHashTable());
}

[SuppressMessage("ReSharper", "UnusedAutoPropertyAccessor.Global")]
[SuppressMessage("ReSharper", "MemberCanBePrivate.Global")]
public class KeeperResult
{
private object result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ namespace SecretsManager.Test
{
using QueryFunction = Func<string, TransmissionKey, EncryptedPayload, Task<KeeperHttpResponse>>;

[SuppressMessage("ReSharper", "InconsistentNaming")]
[SuppressMessage("ReSharper", "UnusedAutoPropertyAccessor.Global")]
public class TestResponse
{
public string transmissionKey { get; set; }
Expand Down
1 change: 0 additions & 1 deletion sdk/dotNet/SecretsManager/JsonUtils.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.Text.Encodings.Web;
using System.Text.Json;
using System.Text.Json.Serialization;

Expand Down
Loading

0 comments on commit 2b7b4b6

Please sign in to comment.