From 09a306b2404c957b38f365b0ed0ec5a21216ba2e Mon Sep 17 00:00:00 2001 From: David Bond Date: Wed, 22 Jan 2025 12:46:26 +0000 Subject: [PATCH] Added new Resource Types --- LogicMonitor.Api/Resources/ResourceType.cs | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/LogicMonitor.Api/Resources/ResourceType.cs b/LogicMonitor.Api/Resources/ResourceType.cs index 2fef589..49abe9f 100644 --- a/LogicMonitor.Api/Resources/ResourceType.cs +++ b/LogicMonitor.Api/Resources/ResourceType.cs @@ -12,17 +12,27 @@ public enum ResourceType Regular = 0, /// - /// Aws + /// Aws IaaS /// Aws = 2, /// - /// Azure + /// Azure IaaS /// Azure = 4, /// /// Service /// - Service = 6 + Service = 6, + + /// + /// PaaS + /// + PaaS = 8, + + /// + /// Service + /// + SaaS = 10 }