diff --git a/src/Seq.Api/Model/Backups/BackupEntity.cs b/src/Seq.Api/Model/Backups/BackupEntity.cs index 9130f30..a80685c 100644 --- a/src/Seq.Api/Model/Backups/BackupEntity.cs +++ b/src/Seq.Api/Model/Backups/BackupEntity.cs @@ -16,7 +16,7 @@ namespace Seq.Api.Model.Backups { /// /// Seq backups include metadata like users, signals, API keys and other configuration, but do not include - /// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the master key + /// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the secret key /// from the originating Seq instance. /// public class BackupEntity : Entity diff --git a/src/Seq.Api/Model/Settings/SettingName.cs b/src/Seq.Api/Model/Settings/SettingName.cs index d6e48f8..2cf48dd 100644 --- a/src/Seq.Api/Model/Settings/SettingName.cs +++ b/src/Seq.Api/Model/Settings/SettingName.cs @@ -115,11 +115,6 @@ public enum SettingName /// IsAuthenticationEnabled, - /// - /// Tracks whether an admin user has dismissed the master key backup warning. - /// - MasterKeyIsBackedUp, - /// /// The minimum storage space, in bytes, on the disk containing log events, before /// Seq will stop accepting new events. @@ -186,7 +181,12 @@ public enum SettingName /// The maximum size, in HTTP request content bytes, beyond which ingestion requests will be rejected. /// RawPayloadMaximumContentLength, - + + /// + /// Tracks whether an admin user has dismissed the secret key backup warning. + /// + SecretKeyIsBackedUp, + /// /// A snippet of CSS that will be included in the front-end's user interface styles. /// diff --git a/src/Seq.Api/ResourceGroups/BackupsResourceGroup.cs b/src/Seq.Api/ResourceGroups/BackupsResourceGroup.cs index 8277985..984a651 100644 --- a/src/Seq.Api/ResourceGroups/BackupsResourceGroup.cs +++ b/src/Seq.Api/ResourceGroups/BackupsResourceGroup.cs @@ -23,7 +23,7 @@ namespace Seq.Api.ResourceGroups { /// /// Perform operations on backups. Seq backups include metadata like users, signals, API keys and other configuration, but do not include - /// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the master key from the originating Seq instance. + /// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the secret key from the originating Seq instance. /// public class BackupsResourceGroup : ApiResourceGroup { diff --git a/src/Seq.Api/Seq.Api.csproj b/src/Seq.Api/Seq.Api.csproj index 2cc7168..a91cff0 100644 --- a/src/Seq.Api/Seq.Api.csproj +++ b/src/Seq.Api/Seq.Api.csproj @@ -1,7 +1,7 @@ Client library for the Seq HTTP API. - 2020.5.1 + 2021.1.0 Datalust;Contributors netstandard2.0 true