From 41740089e022eba199d2cfd53481dd7268567a35 Mon Sep 17 00:00:00 2001 From: Nicholas Blumhardt Date: Fri, 5 Feb 2021 13:32:14 +1000 Subject: [PATCH] 2021.1 API updates --- src/Seq.Api/Model/Backups/BackupEntity.cs | 2 +- src/Seq.Api/Model/Settings/SettingName.cs | 12 ++++++------ src/Seq.Api/ResourceGroups/BackupsResourceGroup.cs | 2 +- src/Seq.Api/Seq.Api.csproj | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) 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