first commit
This commit is contained in:
14
Config/HanaConfig.cs
Normal file
14
Config/HanaConfig.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace HanaToolbox.Config;
|
||||
|
||||
public sealed class HanaConfig
|
||||
{
|
||||
/// <summary>HANA System ID, e.g. NDB. Used to build the OS user <sid>adm.</summary>
|
||||
public string Sid { get; set; } = "NDB";
|
||||
public string InstanceNumber { get; set; } = "00";
|
||||
|
||||
/// <summary>Optional override for hdbsql binary path. Null = auto-detect.</summary>
|
||||
public string? HdbsqlPath { get; set; }
|
||||
|
||||
/// <summary>Optional override for hdbuserstore binary path. Null = auto-detect.</summary>
|
||||
public string? HdbuserstorePath { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user