Skip to content

Commit 2aa77d5

Browse files
namespace changes
1 parent 5acc3bb commit 2aa77d5

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

A10vThunderTestConsole/Program.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ private static void RunInventory(Dictionary<string, string> args)
109109

110110
if (StoreType.ToLower() == "ssl")
111111
{
112-
var inv = new a10vthunder_orchestrator.ImplementedStoreTypes.Ssl.Inventory(secretResolver);
112+
var inv = new a10vthunder_orchestrator.ImplementedStoreTypes.ThunderSsl.Inventory(secretResolver);
113113
result = inv.ProcessJob(config, GetItems);
114114
}
115115
else
116116
{
117-
var inv = new a10vthunder_orchestrator.ImplementedStoreTypes.Mgmt.Inventory(secretResolver);
117+
var inv = new a10vthunder_orchestrator.ImplementedStoreTypes.ThunderMgmt.Inventory(secretResolver);
118118
result = inv.ProcessJob(config, GetItems);
119119
}
120120

@@ -140,12 +140,12 @@ private static void RunManagementAdd(Dictionary<string, string> args)
140140

141141
if (StoreType.ToLower() == "ssl")
142142
{
143-
var mgmt = new a10vthunder_orchestrator.ImplementedStoreTypes.Ssl.Management(secretResolver);
143+
var mgmt = new a10vthunder_orchestrator.ImplementedStoreTypes.ThunderSsl.Management(secretResolver);
144144
result = mgmt.ProcessJob(config);
145145
}
146146
else
147147
{
148-
var mgmt = new a10vthunder_orchestrator.ImplementedStoreTypes.Mgmt.Management(secretResolver);
148+
var mgmt = new a10vthunder_orchestrator.ImplementedStoreTypes.ThunderMgmt.Management(secretResolver);
149149
result = mgmt.ProcessJob(config);
150150
}
151151
Console.WriteLine(JsonConvert.SerializeObject(result));
@@ -164,12 +164,12 @@ private static void RunManagementRemove(Dictionary<string, string> args)
164164

165165
if (StoreType.ToLower() == "ssl")
166166
{
167-
var mgmt = new a10vthunder_orchestrator.ImplementedStoreTypes.Ssl.Management(secretResolver);
167+
var mgmt = new a10vthunder_orchestrator.ImplementedStoreTypes.ThunderSsl.Management(secretResolver);
168168
result = mgmt.ProcessJob(config);
169169
}
170170
else
171171
{
172-
var mgmt = new a10vthunder_orchestrator.ImplementedStoreTypes.Mgmt.Management(secretResolver);
172+
var mgmt = new a10vthunder_orchestrator.ImplementedStoreTypes.ThunderMgmt.Management(secretResolver);
173173
result = mgmt.ProcessJob(config);
174174
}
175175
Thread.Sleep(5000);

a10vthunder-orchestrator/ImplementedStoreTypes/Mgmt/Inventory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using Newtonsoft.Json;
1111
using Renci.SshNet;
1212

13-
namespace a10vthunder_orchestrator.ImplementedStoreTypes.Mgmt
13+
namespace a10vthunder_orchestrator.ImplementedStoreTypes.ThunderMgmt
1414
{
1515
public class Inventory : IInventoryJobExtension
1616
{

a10vthunder-orchestrator/ImplementedStoreTypes/Mgmt/Management.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
using System.Net.Sockets;
1616
using a10vthunder_orchestrator.Api;
1717

18-
namespace a10vthunder_orchestrator.ImplementedStoreTypes.Mgmt
18+
namespace a10vthunder_orchestrator.ImplementedStoreTypes.ThunderMgmt
1919
{
2020
public class Management : IManagementJobExtension
2121
{

a10vthunder-orchestrator/ImplementedStoreTypes/Ssl/Inventory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Newtonsoft.Json;
1010

1111

12-
namespace a10vthunder_orchestrator.ImplementedStoreTypes.Ssl
12+
namespace a10vthunder_orchestrator.ImplementedStoreTypes.ThunderSsl
1313
{
1414
public class Inventory : IInventoryJobExtension
1515
{

a10vthunder-orchestrator/ImplementedStoreTypes/Ssl/Management.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
using Org.BouncyCastle.OpenSsl;
1515
using Org.BouncyCastle.Pkcs;
1616

17-
namespace a10vthunder_orchestrator.ImplementedStoreTypes.Ssl
17+
namespace a10vthunder_orchestrator.ImplementedStoreTypes.ThunderSsl
1818
{
1919
public class Management : IManagementJobExtension
2020
{

a10vthunder-orchestrator/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"extensions": {
33
"Keyfactor.Orchestrators.Extensions.IOrchestratorJobExtension": {
4-
"a10vthunder_orchestrator.ImplementedStoreTypes.Mgmt.Inventory": {
4+
"a10vthunder_orchestrator.ImplementedStoreTypes.ThunderMgmt.Inventory": {
55
"assemblypath": "a10vthunder-orchestrator.dll",
66
"TypeFullName": "a10vthunder_orchestrator.Jobs.Inventory"
77
},
8-
"a10vthunder_orchestrator.ImplementedStoreTypes.Mgmt.Management": {
8+
"a10vthunder_orchestrator.ImplementedStoreTypes.ThunderMgmt.Management": {
99
"assemblypath": "a10vthunder-orchestrator.dll",
1010
"TypeFullName": "a10vthunder_orchestrator.Jobs.Management"
1111
},
12-
"a10vthunder_orchestrator.ImplementedStoreTypes.Ssl.Inventory": {
12+
"a10vthunder_orchestrator.ImplementedStoreTypes.ThunderSsl.Inventory": {
1313
"assemblypath": "a10vthunder-orchestrator.dll",
1414
"TypeFullName": "a10vthunder_orchestrator.Jobs.Inventory"
1515
},
16-
"a10vthunder_orchestrator.ImplementedStoreTypes.Ssl.Management": {
16+
"a10vthunder_orchestrator.ImplementedStoreTypes.ThunderSsl.Management": {
1717
"assemblypath": "a10vthunder-orchestrator.dll",
1818
"TypeFullName": "a10vthunder_orchestrator.Jobs.Management"
1919
}

0 commit comments

Comments
 (0)