Skip to content

Commit

Permalink
Added new Resource Types
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnmbond committed Jan 22, 2025
1 parent 0030a67 commit 09a306b
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions LogicMonitor.Api/Resources/ResourceType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,27 @@ public enum ResourceType
Regular = 0,

/// <summary>
/// Aws
/// Aws IaaS
/// </summary>
Aws = 2,

/// <summary>
/// Azure
/// Azure IaaS
/// </summary>
Azure = 4,

/// <summary>
/// Service
/// </summary>
Service = 6
Service = 6,

/// <summary>
/// PaaS
/// </summary>
PaaS = 8,

/// <summary>
/// Service
/// </summary>
SaaS = 10
}

0 comments on commit 09a306b

Please sign in to comment.