2
0
mirror of synced 2025-01-13 01:54:07 +00:00
2023-09-20 10:51:47 +02:00

20 lines
654 B
C#

using KubernetesWorkflow;
using Utils;
namespace CodexPlugin
{
public class CodexStartupConfig
{
public string? NameOverride { get; set; }
public Location Location { get; set; }
public CodexLogLevel LogLevel { get; set; }
public ByteSize? StorageQuota { get; set; }
public bool MetricsEnabled { get; set; }
public MarketplaceInitialConfig? MarketplaceConfig { get; set; }
public string? BootstrapSpr { get; set; }
public int? BlockTTL { get; set; }
public TimeSpan? BlockMaintenanceInterval { get; set; }
public int? BlockMaintenanceNumber { get; set; }
}
}