@oneuptime/common 11.0.1 → 11.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (577) hide show
  1. package/Models/DatabaseModels/Alert.ts +276 -0
  2. package/Models/DatabaseModels/AlertLabelRule.ts +38 -0
  3. package/Models/DatabaseModels/AlertOwnerRule.ts +38 -0
  4. package/Models/DatabaseModels/CephCluster.ts +964 -0
  5. package/Models/DatabaseModels/CephClusterLabelRule.ts +514 -0
  6. package/Models/DatabaseModels/CephClusterOwnerRule.ts +596 -0
  7. package/Models/DatabaseModels/CephClusterOwnerTeam.ts +487 -0
  8. package/Models/DatabaseModels/CephClusterOwnerUser.ts +486 -0
  9. package/Models/DatabaseModels/CephResource.ts +809 -0
  10. package/Models/DatabaseModels/DockerSwarmCluster.ts +989 -0
  11. package/Models/DatabaseModels/DockerSwarmClusterLabelRule.ts +514 -0
  12. package/Models/DatabaseModels/DockerSwarmClusterOwnerRule.ts +596 -0
  13. package/Models/DatabaseModels/DockerSwarmClusterOwnerTeam.ts +487 -0
  14. package/Models/DatabaseModels/DockerSwarmClusterOwnerUser.ts +486 -0
  15. package/Models/DatabaseModels/DockerSwarmResource.ts +750 -0
  16. package/Models/DatabaseModels/Host.ts +64 -0
  17. package/Models/DatabaseModels/Incident.ts +276 -0
  18. package/Models/DatabaseModels/IncidentLabelRule.ts +38 -0
  19. package/Models/DatabaseModels/IncidentOwnerRule.ts +38 -0
  20. package/Models/DatabaseModels/IncidentTemplate.ts +56 -0
  21. package/Models/DatabaseModels/Index.ts +48 -0
  22. package/Models/DatabaseModels/PodmanHost.ts +859 -0
  23. package/Models/DatabaseModels/PodmanHostLabelRule.ts +514 -0
  24. package/Models/DatabaseModels/PodmanHostOwnerRule.ts +596 -0
  25. package/Models/DatabaseModels/PodmanHostOwnerTeam.ts +487 -0
  26. package/Models/DatabaseModels/PodmanHostOwnerUser.ts +486 -0
  27. package/Models/DatabaseModels/PodmanResource.ts +498 -0
  28. package/Models/DatabaseModels/ProxmoxCluster.ts +943 -0
  29. package/Models/DatabaseModels/ProxmoxClusterLabelRule.ts +514 -0
  30. package/Models/DatabaseModels/ProxmoxClusterOwnerRule.ts +596 -0
  31. package/Models/DatabaseModels/ProxmoxClusterOwnerTeam.ts +487 -0
  32. package/Models/DatabaseModels/ProxmoxClusterOwnerUser.ts +486 -0
  33. package/Models/DatabaseModels/ProxmoxResource.ts +726 -0
  34. package/Models/DatabaseModels/ScheduledMaintenance.ts +220 -0
  35. package/Models/DatabaseModels/ScheduledMaintenanceLabelRule.ts +38 -0
  36. package/Models/DatabaseModels/ScheduledMaintenanceOwnerRule.ts +38 -0
  37. package/Models/DatabaseModels/ScheduledMaintenanceTemplate.ts +56 -0
  38. package/Models/DatabaseModels/TelemetryException.ts +2 -0
  39. package/Server/API/BillingInvoiceAPI.ts +47 -7
  40. package/Server/API/CephResourceAPI.ts +134 -0
  41. package/Server/API/DashboardAPI.ts +135 -0
  42. package/Server/API/DockerSwarmResourceAPI.ts +137 -0
  43. package/Server/API/ProjectAPI.ts +15 -0
  44. package/Server/API/ProxmoxResourceAPI.ts +132 -0
  45. package/Server/API/ResellerPlanAPI.ts +17 -0
  46. package/Server/API/TelemetryAPI.ts +8 -1
  47. package/Server/Infrastructure/GlobalCache.ts +8 -2
  48. package/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.ts +163 -0
  49. package/Server/Infrastructure/Postgres/SchemaMigrations/1781587937032-MigrationName.ts +3199 -0
  50. package/Server/Infrastructure/Postgres/SchemaMigrations/1781600000000-AddProxmoxCephV2Columns.ts +211 -0
  51. package/Server/Infrastructure/Postgres/SchemaMigrations/1781600000001-AddProxmoxCephActivityAndRules.ts +590 -0
  52. package/Server/Infrastructure/Postgres/SchemaMigrations/1781700000000-AddProxmoxCephV3Columns.ts +64 -0
  53. package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +10 -0
  54. package/Server/Infrastructure/Redis.ts +40 -12
  55. package/Server/Services/AlertLabelRuleEngineService.ts +29 -0
  56. package/Server/Services/AlertOwnerRuleEngineService.ts +67 -0
  57. package/Server/Services/AnalyticsDatabaseService.ts +1 -1
  58. package/Server/Services/BillingService.ts +109 -21
  59. package/Server/Services/CephClusterLabelRuleEngineService.ts +200 -0
  60. package/Server/Services/CephClusterLabelRuleService.ts +14 -0
  61. package/Server/Services/CephClusterOwnerRuleEngineService.ts +218 -0
  62. package/Server/Services/CephClusterOwnerRuleService.ts +14 -0
  63. package/Server/Services/CephClusterOwnerTeamService.ts +10 -0
  64. package/Server/Services/CephClusterOwnerUserService.ts +10 -0
  65. package/Server/Services/CephClusterService.ts +401 -0
  66. package/Server/Services/CephResourceService.ts +383 -0
  67. package/Server/Services/CloudResourceService.ts +11 -3
  68. package/Server/Services/DockerHostService.ts +11 -3
  69. package/Server/Services/DockerSwarmClusterLabelRuleEngineService.ts +214 -0
  70. package/Server/Services/DockerSwarmClusterLabelRuleService.ts +14 -0
  71. package/Server/Services/DockerSwarmClusterOwnerRuleEngineService.ts +232 -0
  72. package/Server/Services/DockerSwarmClusterOwnerRuleService.ts +14 -0
  73. package/Server/Services/DockerSwarmClusterOwnerTeamService.ts +10 -0
  74. package/Server/Services/DockerSwarmClusterOwnerUserService.ts +10 -0
  75. package/Server/Services/DockerSwarmClusterService.ts +404 -0
  76. package/Server/Services/DockerSwarmResourceService.ts +381 -0
  77. package/Server/Services/ExceptionAggregationService.ts +3 -0
  78. package/Server/Services/HostService.ts +11 -3
  79. package/Server/Services/IncidentLabelRuleEngineService.ts +27 -0
  80. package/Server/Services/IncidentOwnerRuleEngineService.ts +67 -0
  81. package/Server/Services/IncidentService.ts +11 -0
  82. package/Server/Services/Index.ts +38 -0
  83. package/Server/Services/KubernetesClusterService.ts +11 -3
  84. package/Server/Services/LogAggregationService.ts +3 -0
  85. package/Server/Services/MetricAggregationService.ts +3 -0
  86. package/Server/Services/OpenTelemetryIngestService.ts +73 -0
  87. package/Server/Services/PodmanHostLabelRuleEngineService.ts +198 -0
  88. package/Server/Services/PodmanHostLabelRuleService.ts +14 -0
  89. package/Server/Services/PodmanHostOwnerRuleEngineService.ts +216 -0
  90. package/Server/Services/PodmanHostOwnerRuleService.ts +14 -0
  91. package/Server/Services/PodmanHostOwnerTeamService.ts +10 -0
  92. package/Server/Services/PodmanHostOwnerUserService.ts +10 -0
  93. package/Server/Services/PodmanHostService.ts +368 -0
  94. package/Server/Services/PodmanResourceService.ts +310 -0
  95. package/Server/Services/ProxmoxClusterLabelRuleEngineService.ts +204 -0
  96. package/Server/Services/ProxmoxClusterLabelRuleService.ts +14 -0
  97. package/Server/Services/ProxmoxClusterOwnerRuleEngineService.ts +222 -0
  98. package/Server/Services/ProxmoxClusterOwnerRuleService.ts +14 -0
  99. package/Server/Services/ProxmoxClusterOwnerTeamService.ts +10 -0
  100. package/Server/Services/ProxmoxClusterOwnerUserService.ts +10 -0
  101. package/Server/Services/ProxmoxClusterService.ts +382 -0
  102. package/Server/Services/ProxmoxResourceService.ts +404 -0
  103. package/Server/Services/RumApplicationService.ts +11 -3
  104. package/Server/Services/ScheduledMaintenanceLabelRuleEngineService.ts +29 -0
  105. package/Server/Services/ScheduledMaintenanceOwnerRuleEngineService.ts +67 -0
  106. package/Server/Services/ServerlessFunctionService.ts +11 -3
  107. package/Server/Services/TelemetryUsageBillingService.ts +59 -3
  108. package/Server/Services/TraceAggregationService.ts +3 -0
  109. package/Server/Types/AnalyticsDatabase/AggregateBy.ts +8 -23
  110. package/Server/Types/Database/Permissions/OwnerTableRegistry.ts +13 -0
  111. package/Server/Utils/Monitor/MonitorAlert.ts +55 -0
  112. package/Server/Utils/Monitor/MonitorClusterContext.ts +158 -0
  113. package/Server/Utils/Monitor/MonitorCriteriaEvaluator.ts +650 -4
  114. package/Server/Utils/Monitor/MonitorIncident.ts +175 -7
  115. package/Server/Utils/Monitor/MonitorMaintenanceSuppression.ts +56 -6
  116. package/Server/Utils/Monitor/MonitorTemplateUtil.ts +6 -1
  117. package/Server/Utils/Monitor/SeriesResourceLabels.ts +59 -0
  118. package/Server/Utils/Profiling.ts +37 -2
  119. package/Server/Utils/Telemetry/EntityRegistry.ts +4 -0
  120. package/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.ts +1096 -0
  121. package/Server/Utils/Telemetry/ResourceFacetResolver.ts +49 -0
  122. package/Server/Utils/Telemetry/Telemetry.ts +10 -0
  123. package/Server/Utils/Telemetry/TelemetryEntity.ts +107 -0
  124. package/Server/Utils/Telemetry.ts +8 -19
  125. package/Tests/Server/API/BillingInvoiceAPI.test.ts +194 -0
  126. package/Tests/Server/API/ProjectAPI.test.ts +91 -0
  127. package/Tests/Server/API/ResellerPlanAPI.test.ts +207 -0
  128. package/Tests/Server/Infrastructure/GlobalCache.test.ts +100 -0
  129. package/Tests/Server/Services/BillingService.test.ts +323 -0
  130. package/Tests/Server/Services/CephResourceService.test.ts +264 -0
  131. package/Tests/Server/Services/ProxmoxResourceService.test.ts +326 -0
  132. package/Tests/Server/Utils/Monitor/MonitorCriteriaEvaluator.test.ts +322 -0
  133. package/Tests/Server/Utils/Monitor/MonitorMaintenanceSuppression.test.ts +14 -0
  134. package/Tests/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.test.ts +879 -0
  135. package/Tests/Server/Utils/Telemetry/TelemetryEntity.test.ts +196 -0
  136. package/Tests/Types/DockerSwarm/DockerSwarmInventoryExtractor.test.ts +667 -0
  137. package/Tests/Types/Monitor/CephAlertTemplates.test.ts +1231 -0
  138. package/Tests/Types/Monitor/DockerSwarmAlertTemplates.test.ts +528 -0
  139. package/Tests/Types/Monitor/ProxmoxAlertTemplates.test.ts +732 -0
  140. package/Tests/Utils/Telemetry/EntityRelationship.test.ts +49 -0
  141. package/Tests/Utils/Telemetry/HeartbeatAvailability.test.ts +423 -0
  142. package/Types/BaseDatabase/AggregationIntervalUtil.ts +74 -0
  143. package/Types/Dashboard/DashboardComponentType.ts +11 -0
  144. package/Types/Dashboard/DashboardComponents/ComponentArgument.ts +4 -0
  145. package/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.ts +15 -0
  146. package/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.ts +14 -0
  147. package/Types/Dashboard/DashboardComponents/DashboardDockerSwarmNodeListComponent.ts +17 -0
  148. package/Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent.ts +17 -0
  149. package/Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent.ts +16 -0
  150. package/Types/Dashboard/DashboardComponents/DashboardPodmanHostListComponent.ts +15 -0
  151. package/Types/Dashboard/DashboardComponents/DashboardPodmanImageListComponent.ts +16 -0
  152. package/Types/Dashboard/DashboardComponents/DashboardPodmanNetworkListComponent.ts +15 -0
  153. package/Types/Dashboard/DashboardComponents/DashboardPodmanVolumeListComponent.ts +15 -0
  154. package/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.ts +17 -0
  155. package/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.ts +16 -0
  156. package/Types/Dashboard/DashboardTemplates.ts +640 -0
  157. package/Types/DockerSwarm/DockerSwarmInventoryExtractor.ts +452 -0
  158. package/Types/Icon/IconProp.ts +3 -0
  159. package/Types/Monitor/CephAlertTemplates.ts +1647 -0
  160. package/Types/Monitor/CephMetricCatalog.ts +409 -0
  161. package/Types/Monitor/DockerSwarmAlertTemplates.ts +461 -0
  162. package/Types/Monitor/DockerSwarmMetricCatalog.ts +139 -0
  163. package/Types/Monitor/HostAlertTemplates.ts +455 -0
  164. package/Types/Monitor/HostMetricCatalog.ts +177 -0
  165. package/Types/Monitor/MetricMonitor/MetricMonitorResponse.ts +65 -0
  166. package/Types/Monitor/MonitorStep.ts +163 -0
  167. package/Types/Monitor/MonitorStepCephMonitor.ts +57 -0
  168. package/Types/Monitor/MonitorStepDockerSwarmMonitor.ts +74 -0
  169. package/Types/Monitor/MonitorStepHostMonitor.ts +30 -0
  170. package/Types/Monitor/MonitorStepPodmanMonitor.ts +38 -0
  171. package/Types/Monitor/MonitorStepProxmoxMonitor.ts +81 -0
  172. package/Types/Monitor/MonitorType.ts +71 -1
  173. package/Types/Monitor/PodmanAlertTemplates.ts +507 -0
  174. package/Types/Monitor/PodmanMetricCatalog.ts +226 -0
  175. package/Types/Monitor/ProxmoxAlertTemplates.ts +899 -0
  176. package/Types/Monitor/ProxmoxMetricCatalog.ts +382 -0
  177. package/Types/Permission.ts +1029 -104
  178. package/Types/Podman/PodmanInventoryExtractor.ts +343 -0
  179. package/Types/Telemetry/EntityType.ts +23 -0
  180. package/Types/Telemetry/ServiceType.ts +4 -0
  181. package/UI/Components/Icon/Icon.tsx +141 -0
  182. package/UI/Components/LogsViewer/LogsViewer.tsx +44 -1
  183. package/UI/Components/LogsViewer/components/LogsFacetSidebar.tsx +28 -0
  184. package/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.ts +15 -5
  185. package/UI/Utils/Telemetry/Telemetry.ts +16 -21
  186. package/UI/Utils/TelemetryService.ts +8 -3
  187. package/Utils/Dashboard/Components/DashboardCephOsdListComponent.ts +63 -0
  188. package/Utils/Dashboard/Components/DashboardCephPoolListComponent.ts +32 -0
  189. package/Utils/Dashboard/Components/DashboardCephResourceListShared.ts +61 -0
  190. package/Utils/Dashboard/Components/DashboardDockerSwarmNodeListComponent.ts +70 -0
  191. package/Utils/Dashboard/Components/DashboardDockerSwarmResourceListShared.ts +61 -0
  192. package/Utils/Dashboard/Components/DashboardDockerSwarmServiceListComponent.ts +71 -0
  193. package/Utils/Dashboard/Components/DashboardPodmanContainerListComponent.ts +100 -0
  194. package/Utils/Dashboard/Components/DashboardPodmanHostListComponent.ts +88 -0
  195. package/Utils/Dashboard/Components/DashboardPodmanImageListComponent.ts +97 -0
  196. package/Utils/Dashboard/Components/DashboardPodmanNetworkListComponent.ts +87 -0
  197. package/Utils/Dashboard/Components/DashboardPodmanVolumeListComponent.ts +87 -0
  198. package/Utils/Dashboard/Components/DashboardProxmoxGuestListComponent.ts +69 -0
  199. package/Utils/Dashboard/Components/DashboardProxmoxNodeListComponent.ts +55 -0
  200. package/Utils/Dashboard/Components/DashboardProxmoxResourceListShared.ts +61 -0
  201. package/Utils/Dashboard/Components/Index.ts +79 -0
  202. package/Utils/Telemetry/EntityKey.ts +53 -0
  203. package/Utils/Telemetry/EntityRelationship.ts +6 -0
  204. package/Utils/Telemetry/HeartbeatAvailability.ts +262 -0
  205. package/build/dist/Models/DatabaseModels/Alert.js +270 -0
  206. package/build/dist/Models/DatabaseModels/Alert.js.map +1 -1
  207. package/build/dist/Models/DatabaseModels/AlertLabelRule.js +39 -0
  208. package/build/dist/Models/DatabaseModels/AlertLabelRule.js.map +1 -1
  209. package/build/dist/Models/DatabaseModels/AlertOwnerRule.js +39 -0
  210. package/build/dist/Models/DatabaseModels/AlertOwnerRule.js.map +1 -1
  211. package/build/dist/Models/DatabaseModels/CephCluster.js +992 -0
  212. package/build/dist/Models/DatabaseModels/CephCluster.js.map +1 -0
  213. package/build/dist/Models/DatabaseModels/CephClusterLabelRule.js +522 -0
  214. package/build/dist/Models/DatabaseModels/CephClusterLabelRule.js.map +1 -0
  215. package/build/dist/Models/DatabaseModels/CephClusterOwnerRule.js +603 -0
  216. package/build/dist/Models/DatabaseModels/CephClusterOwnerRule.js.map +1 -0
  217. package/build/dist/Models/DatabaseModels/CephClusterOwnerTeam.js +503 -0
  218. package/build/dist/Models/DatabaseModels/CephClusterOwnerTeam.js.map +1 -0
  219. package/build/dist/Models/DatabaseModels/CephClusterOwnerUser.js +502 -0
  220. package/build/dist/Models/DatabaseModels/CephClusterOwnerUser.js.map +1 -0
  221. package/build/dist/Models/DatabaseModels/CephResource.js +846 -0
  222. package/build/dist/Models/DatabaseModels/CephResource.js.map +1 -0
  223. package/build/dist/Models/DatabaseModels/DockerSwarmCluster.js +1018 -0
  224. package/build/dist/Models/DatabaseModels/DockerSwarmCluster.js.map +1 -0
  225. package/build/dist/Models/DatabaseModels/DockerSwarmClusterLabelRule.js +522 -0
  226. package/build/dist/Models/DatabaseModels/DockerSwarmClusterLabelRule.js.map +1 -0
  227. package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerRule.js +603 -0
  228. package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerRule.js.map +1 -0
  229. package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerTeam.js +503 -0
  230. package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerTeam.js.map +1 -0
  231. package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerUser.js +502 -0
  232. package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerUser.js.map +1 -0
  233. package/build/dist/Models/DatabaseModels/DockerSwarmResource.js +787 -0
  234. package/build/dist/Models/DatabaseModels/DockerSwarmResource.js.map +1 -0
  235. package/build/dist/Models/DatabaseModels/Host.js +63 -0
  236. package/build/dist/Models/DatabaseModels/Host.js.map +1 -1
  237. package/build/dist/Models/DatabaseModels/Incident.js +270 -0
  238. package/build/dist/Models/DatabaseModels/Incident.js.map +1 -1
  239. package/build/dist/Models/DatabaseModels/IncidentLabelRule.js +39 -0
  240. package/build/dist/Models/DatabaseModels/IncidentLabelRule.js.map +1 -1
  241. package/build/dist/Models/DatabaseModels/IncidentOwnerRule.js +39 -0
  242. package/build/dist/Models/DatabaseModels/IncidentOwnerRule.js.map +1 -1
  243. package/build/dist/Models/DatabaseModels/IncidentTemplate.js +54 -0
  244. package/build/dist/Models/DatabaseModels/IncidentTemplate.js.map +1 -1
  245. package/build/dist/Models/DatabaseModels/Index.js +48 -0
  246. package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
  247. package/build/dist/Models/DatabaseModels/PodmanHost.js +885 -0
  248. package/build/dist/Models/DatabaseModels/PodmanHost.js.map +1 -0
  249. package/build/dist/Models/DatabaseModels/PodmanHostLabelRule.js +522 -0
  250. package/build/dist/Models/DatabaseModels/PodmanHostLabelRule.js.map +1 -0
  251. package/build/dist/Models/DatabaseModels/PodmanHostOwnerRule.js +603 -0
  252. package/build/dist/Models/DatabaseModels/PodmanHostOwnerRule.js.map +1 -0
  253. package/build/dist/Models/DatabaseModels/PodmanHostOwnerTeam.js +503 -0
  254. package/build/dist/Models/DatabaseModels/PodmanHostOwnerTeam.js.map +1 -0
  255. package/build/dist/Models/DatabaseModels/PodmanHostOwnerUser.js +502 -0
  256. package/build/dist/Models/DatabaseModels/PodmanHostOwnerUser.js.map +1 -0
  257. package/build/dist/Models/DatabaseModels/PodmanResource.js +526 -0
  258. package/build/dist/Models/DatabaseModels/PodmanResource.js.map +1 -0
  259. package/build/dist/Models/DatabaseModels/ProxmoxCluster.js +967 -0
  260. package/build/dist/Models/DatabaseModels/ProxmoxCluster.js.map +1 -0
  261. package/build/dist/Models/DatabaseModels/ProxmoxClusterLabelRule.js +522 -0
  262. package/build/dist/Models/DatabaseModels/ProxmoxClusterLabelRule.js.map +1 -0
  263. package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerRule.js +603 -0
  264. package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerRule.js.map +1 -0
  265. package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerTeam.js +503 -0
  266. package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerTeam.js.map +1 -0
  267. package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerUser.js +502 -0
  268. package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerUser.js.map +1 -0
  269. package/build/dist/Models/DatabaseModels/ProxmoxResource.js +761 -0
  270. package/build/dist/Models/DatabaseModels/ProxmoxResource.js.map +1 -0
  271. package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js +216 -0
  272. package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js.map +1 -1
  273. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceLabelRule.js +39 -0
  274. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceLabelRule.js.map +1 -1
  275. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceOwnerRule.js +39 -0
  276. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceOwnerRule.js.map +1 -1
  277. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceTemplate.js +54 -0
  278. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceTemplate.js.map +1 -1
  279. package/build/dist/Models/DatabaseModels/TelemetryException.js +2 -0
  280. package/build/dist/Models/DatabaseModels/TelemetryException.js.map +1 -1
  281. package/build/dist/Server/API/BillingInvoiceAPI.js +35 -5
  282. package/build/dist/Server/API/BillingInvoiceAPI.js.map +1 -1
  283. package/build/dist/Server/API/CephResourceAPI.js +98 -0
  284. package/build/dist/Server/API/CephResourceAPI.js.map +1 -0
  285. package/build/dist/Server/API/DashboardAPI.js +135 -0
  286. package/build/dist/Server/API/DashboardAPI.js.map +1 -1
  287. package/build/dist/Server/API/DockerSwarmResourceAPI.js +100 -0
  288. package/build/dist/Server/API/DockerSwarmResourceAPI.js.map +1 -0
  289. package/build/dist/Server/API/ProjectAPI.js +11 -0
  290. package/build/dist/Server/API/ProjectAPI.js.map +1 -1
  291. package/build/dist/Server/API/ProxmoxResourceAPI.js +95 -0
  292. package/build/dist/Server/API/ProxmoxResourceAPI.js.map +1 -0
  293. package/build/dist/Server/API/ResellerPlanAPI.js +17 -3
  294. package/build/dist/Server/API/ResellerPlanAPI.js.map +1 -1
  295. package/build/dist/Server/API/TelemetryAPI.js +8 -1
  296. package/build/dist/Server/API/TelemetryAPI.js.map +1 -1
  297. package/build/dist/Server/Infrastructure/GlobalCache.js +7 -2
  298. package/build/dist/Server/Infrastructure/GlobalCache.js.map +1 -1
  299. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.js +76 -0
  300. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.js.map +1 -0
  301. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781587937032-MigrationName.js +1100 -0
  302. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781587937032-MigrationName.js.map +1 -0
  303. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000000-AddProxmoxCephV2Columns.js +108 -0
  304. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000000-AddProxmoxCephV2Columns.js.map +1 -0
  305. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000001-AddProxmoxCephActivityAndRules.js +253 -0
  306. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000001-AddProxmoxCephActivityAndRules.js.map +1 -0
  307. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781700000000-AddProxmoxCephV3Columns.js +43 -0
  308. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781700000000-AddProxmoxCephV3Columns.js.map +1 -0
  309. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +10 -0
  310. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
  311. package/build/dist/Server/Infrastructure/Redis.js +31 -8
  312. package/build/dist/Server/Infrastructure/Redis.js.map +1 -1
  313. package/build/dist/Server/Services/AlertLabelRuleEngineService.js +30 -4
  314. package/build/dist/Server/Services/AlertLabelRuleEngineService.js.map +1 -1
  315. package/build/dist/Server/Services/AlertOwnerRuleEngineService.js +62 -5
  316. package/build/dist/Server/Services/AlertOwnerRuleEngineService.js.map +1 -1
  317. package/build/dist/Server/Services/AnalyticsDatabaseService.js +1 -1
  318. package/build/dist/Server/Services/AnalyticsDatabaseService.js.map +1 -1
  319. package/build/dist/Server/Services/BillingService.js +85 -23
  320. package/build/dist/Server/Services/BillingService.js.map +1 -1
  321. package/build/dist/Server/Services/CephClusterLabelRuleEngineService.js +166 -0
  322. package/build/dist/Server/Services/CephClusterLabelRuleEngineService.js.map +1 -0
  323. package/build/dist/Server/Services/CephClusterLabelRuleService.js +13 -0
  324. package/build/dist/Server/Services/CephClusterLabelRuleService.js.map +1 -0
  325. package/build/dist/Server/Services/CephClusterOwnerRuleEngineService.js +186 -0
  326. package/build/dist/Server/Services/CephClusterOwnerRuleEngineService.js.map +1 -0
  327. package/build/dist/Server/Services/CephClusterOwnerRuleService.js +13 -0
  328. package/build/dist/Server/Services/CephClusterOwnerRuleService.js.map +1 -0
  329. package/build/dist/Server/Services/CephClusterOwnerTeamService.js +9 -0
  330. package/build/dist/Server/Services/CephClusterOwnerTeamService.js.map +1 -0
  331. package/build/dist/Server/Services/CephClusterOwnerUserService.js +9 -0
  332. package/build/dist/Server/Services/CephClusterOwnerUserService.js.map +1 -0
  333. package/build/dist/Server/Services/CephClusterService.js +353 -0
  334. package/build/dist/Server/Services/CephClusterService.js.map +1 -0
  335. package/build/dist/Server/Services/CephResourceService.js +257 -0
  336. package/build/dist/Server/Services/CephResourceService.js.map +1 -0
  337. package/build/dist/Server/Services/CloudResourceService.js +10 -2
  338. package/build/dist/Server/Services/CloudResourceService.js.map +1 -1
  339. package/build/dist/Server/Services/DockerHostService.js +10 -2
  340. package/build/dist/Server/Services/DockerHostService.js.map +1 -1
  341. package/build/dist/Server/Services/DockerSwarmClusterLabelRuleEngineService.js +168 -0
  342. package/build/dist/Server/Services/DockerSwarmClusterLabelRuleEngineService.js.map +1 -0
  343. package/build/dist/Server/Services/DockerSwarmClusterLabelRuleService.js +13 -0
  344. package/build/dist/Server/Services/DockerSwarmClusterLabelRuleService.js.map +1 -0
  345. package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleEngineService.js +188 -0
  346. package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleEngineService.js.map +1 -0
  347. package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleService.js +13 -0
  348. package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleService.js.map +1 -0
  349. package/build/dist/Server/Services/DockerSwarmClusterOwnerTeamService.js +9 -0
  350. package/build/dist/Server/Services/DockerSwarmClusterOwnerTeamService.js.map +1 -0
  351. package/build/dist/Server/Services/DockerSwarmClusterOwnerUserService.js +9 -0
  352. package/build/dist/Server/Services/DockerSwarmClusterOwnerUserService.js.map +1 -0
  353. package/build/dist/Server/Services/DockerSwarmClusterService.js +353 -0
  354. package/build/dist/Server/Services/DockerSwarmClusterService.js.map +1 -0
  355. package/build/dist/Server/Services/DockerSwarmResourceService.js +258 -0
  356. package/build/dist/Server/Services/DockerSwarmResourceService.js.map +1 -0
  357. package/build/dist/Server/Services/ExceptionAggregationService.js +3 -0
  358. package/build/dist/Server/Services/ExceptionAggregationService.js.map +1 -1
  359. package/build/dist/Server/Services/HostService.js +10 -2
  360. package/build/dist/Server/Services/HostService.js.map +1 -1
  361. package/build/dist/Server/Services/IncidentLabelRuleEngineService.js +28 -4
  362. package/build/dist/Server/Services/IncidentLabelRuleEngineService.js.map +1 -1
  363. package/build/dist/Server/Services/IncidentOwnerRuleEngineService.js +62 -5
  364. package/build/dist/Server/Services/IncidentOwnerRuleEngineService.js.map +1 -1
  365. package/build/dist/Server/Services/IncidentService.js +8 -0
  366. package/build/dist/Server/Services/IncidentService.js.map +1 -1
  367. package/build/dist/Server/Services/Index.js +38 -0
  368. package/build/dist/Server/Services/Index.js.map +1 -1
  369. package/build/dist/Server/Services/KubernetesClusterService.js +10 -2
  370. package/build/dist/Server/Services/KubernetesClusterService.js.map +1 -1
  371. package/build/dist/Server/Services/LogAggregationService.js +3 -0
  372. package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
  373. package/build/dist/Server/Services/MetricAggregationService.js +3 -0
  374. package/build/dist/Server/Services/MetricAggregationService.js.map +1 -1
  375. package/build/dist/Server/Services/OpenTelemetryIngestService.js +69 -9
  376. package/build/dist/Server/Services/OpenTelemetryIngestService.js.map +1 -1
  377. package/build/dist/Server/Services/PodmanHostLabelRuleEngineService.js +166 -0
  378. package/build/dist/Server/Services/PodmanHostLabelRuleEngineService.js.map +1 -0
  379. package/build/dist/Server/Services/PodmanHostLabelRuleService.js +13 -0
  380. package/build/dist/Server/Services/PodmanHostLabelRuleService.js.map +1 -0
  381. package/build/dist/Server/Services/PodmanHostOwnerRuleEngineService.js +186 -0
  382. package/build/dist/Server/Services/PodmanHostOwnerRuleEngineService.js.map +1 -0
  383. package/build/dist/Server/Services/PodmanHostOwnerRuleService.js +13 -0
  384. package/build/dist/Server/Services/PodmanHostOwnerRuleService.js.map +1 -0
  385. package/build/dist/Server/Services/PodmanHostOwnerTeamService.js +9 -0
  386. package/build/dist/Server/Services/PodmanHostOwnerTeamService.js.map +1 -0
  387. package/build/dist/Server/Services/PodmanHostOwnerUserService.js +9 -0
  388. package/build/dist/Server/Services/PodmanHostOwnerUserService.js.map +1 -0
  389. package/build/dist/Server/Services/PodmanHostService.js +319 -0
  390. package/build/dist/Server/Services/PodmanHostService.js.map +1 -0
  391. package/build/dist/Server/Services/PodmanResourceService.js +196 -0
  392. package/build/dist/Server/Services/PodmanResourceService.js.map +1 -0
  393. package/build/dist/Server/Services/ProxmoxClusterLabelRuleEngineService.js +166 -0
  394. package/build/dist/Server/Services/ProxmoxClusterLabelRuleEngineService.js.map +1 -0
  395. package/build/dist/Server/Services/ProxmoxClusterLabelRuleService.js +13 -0
  396. package/build/dist/Server/Services/ProxmoxClusterLabelRuleService.js.map +1 -0
  397. package/build/dist/Server/Services/ProxmoxClusterOwnerRuleEngineService.js +186 -0
  398. package/build/dist/Server/Services/ProxmoxClusterOwnerRuleEngineService.js.map +1 -0
  399. package/build/dist/Server/Services/ProxmoxClusterOwnerRuleService.js +13 -0
  400. package/build/dist/Server/Services/ProxmoxClusterOwnerRuleService.js.map +1 -0
  401. package/build/dist/Server/Services/ProxmoxClusterOwnerTeamService.js +9 -0
  402. package/build/dist/Server/Services/ProxmoxClusterOwnerTeamService.js.map +1 -0
  403. package/build/dist/Server/Services/ProxmoxClusterOwnerUserService.js +9 -0
  404. package/build/dist/Server/Services/ProxmoxClusterOwnerUserService.js.map +1 -0
  405. package/build/dist/Server/Services/ProxmoxClusterService.js +337 -0
  406. package/build/dist/Server/Services/ProxmoxClusterService.js.map +1 -0
  407. package/build/dist/Server/Services/ProxmoxResourceService.js +285 -0
  408. package/build/dist/Server/Services/ProxmoxResourceService.js.map +1 -0
  409. package/build/dist/Server/Services/RumApplicationService.js +10 -2
  410. package/build/dist/Server/Services/RumApplicationService.js.map +1 -1
  411. package/build/dist/Server/Services/ScheduledMaintenanceLabelRuleEngineService.js +30 -4
  412. package/build/dist/Server/Services/ScheduledMaintenanceLabelRuleEngineService.js.map +1 -1
  413. package/build/dist/Server/Services/ScheduledMaintenanceOwnerRuleEngineService.js +62 -5
  414. package/build/dist/Server/Services/ScheduledMaintenanceOwnerRuleEngineService.js.map +1 -1
  415. package/build/dist/Server/Services/ServerlessFunctionService.js +10 -2
  416. package/build/dist/Server/Services/ServerlessFunctionService.js.map +1 -1
  417. package/build/dist/Server/Services/TelemetryUsageBillingService.js +43 -3
  418. package/build/dist/Server/Services/TelemetryUsageBillingService.js.map +1 -1
  419. package/build/dist/Server/Services/TraceAggregationService.js +3 -0
  420. package/build/dist/Server/Services/TraceAggregationService.js.map +1 -1
  421. package/build/dist/Server/Types/AnalyticsDatabase/AggregateBy.js +8 -25
  422. package/build/dist/Server/Types/AnalyticsDatabase/AggregateBy.js.map +1 -1
  423. package/build/dist/Server/Types/Database/Permissions/OwnerTableRegistry.js +13 -0
  424. package/build/dist/Server/Types/Database/Permissions/OwnerTableRegistry.js.map +1 -1
  425. package/build/dist/Server/Utils/Monitor/MonitorAlert.js +44 -0
  426. package/build/dist/Server/Utils/Monitor/MonitorAlert.js.map +1 -1
  427. package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js +118 -0
  428. package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js.map +1 -0
  429. package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js +422 -4
  430. package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js.map +1 -1
  431. package/build/dist/Server/Utils/Monitor/MonitorIncident.js +137 -8
  432. package/build/dist/Server/Utils/Monitor/MonitorIncident.js.map +1 -1
  433. package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js +32 -6
  434. package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js.map +1 -1
  435. package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js +6 -1
  436. package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js.map +1 -1
  437. package/build/dist/Server/Utils/Monitor/SeriesResourceLabels.js +39 -0
  438. package/build/dist/Server/Utils/Monitor/SeriesResourceLabels.js.map +1 -1
  439. package/build/dist/Server/Utils/Profiling.js +24 -3
  440. package/build/dist/Server/Utils/Profiling.js.map +1 -1
  441. package/build/dist/Server/Utils/Telemetry/EntityRegistry.js +4 -0
  442. package/build/dist/Server/Utils/Telemetry/EntityRegistry.js.map +1 -1
  443. package/build/dist/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.js +854 -0
  444. package/build/dist/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.js.map +1 -0
  445. package/build/dist/Server/Utils/Telemetry/ResourceFacetResolver.js +30 -0
  446. package/build/dist/Server/Utils/Telemetry/ResourceFacetResolver.js.map +1 -1
  447. package/build/dist/Server/Utils/Telemetry/Telemetry.js +6 -0
  448. package/build/dist/Server/Utils/Telemetry/Telemetry.js.map +1 -1
  449. package/build/dist/Server/Utils/Telemetry/TelemetryEntity.js +80 -0
  450. package/build/dist/Server/Utils/Telemetry/TelemetryEntity.js.map +1 -1
  451. package/build/dist/Server/Utils/Telemetry.js +8 -10
  452. package/build/dist/Server/Utils/Telemetry.js.map +1 -1
  453. package/build/dist/Types/BaseDatabase/AggregationIntervalUtil.js +69 -0
  454. package/build/dist/Types/BaseDatabase/AggregationIntervalUtil.js.map +1 -0
  455. package/build/dist/Types/Dashboard/DashboardComponentType.js +11 -0
  456. package/build/dist/Types/Dashboard/DashboardComponentType.js.map +1 -1
  457. package/build/dist/Types/Dashboard/DashboardComponents/ComponentArgument.js +4 -0
  458. package/build/dist/Types/Dashboard/DashboardComponents/ComponentArgument.js.map +1 -1
  459. package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.js +2 -0
  460. package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.js.map +1 -0
  461. package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.js +2 -0
  462. package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.js.map +1 -0
  463. package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmNodeListComponent.js +2 -0
  464. package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmNodeListComponent.js.map +1 -0
  465. package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent.js +2 -0
  466. package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent.js.map +1 -0
  467. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent.js +2 -0
  468. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent.js.map +1 -0
  469. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanHostListComponent.js +2 -0
  470. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanHostListComponent.js.map +1 -0
  471. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanImageListComponent.js +2 -0
  472. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanImageListComponent.js.map +1 -0
  473. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanNetworkListComponent.js +2 -0
  474. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanNetworkListComponent.js.map +1 -0
  475. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanVolumeListComponent.js +2 -0
  476. package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanVolumeListComponent.js.map +1 -0
  477. package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.js +2 -0
  478. package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.js.map +1 -0
  479. package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.js +2 -0
  480. package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.js.map +1 -0
  481. package/build/dist/Types/Dashboard/DashboardTemplates.js +562 -0
  482. package/build/dist/Types/Dashboard/DashboardTemplates.js.map +1 -1
  483. package/build/dist/Types/DockerSwarm/DockerSwarmInventoryExtractor.js +359 -0
  484. package/build/dist/Types/DockerSwarm/DockerSwarmInventoryExtractor.js.map +1 -0
  485. package/build/dist/Types/Icon/IconProp.js +3 -0
  486. package/build/dist/Types/Icon/IconProp.js.map +1 -1
  487. package/build/dist/Types/Monitor/CephAlertTemplates.js +1379 -0
  488. package/build/dist/Types/Monitor/CephAlertTemplates.js.map +1 -0
  489. package/build/dist/Types/Monitor/CephMetricCatalog.js +353 -0
  490. package/build/dist/Types/Monitor/CephMetricCatalog.js.map +1 -0
  491. package/build/dist/Types/Monitor/DockerSwarmAlertTemplates.js +358 -0
  492. package/build/dist/Types/Monitor/DockerSwarmAlertTemplates.js.map +1 -0
  493. package/build/dist/Types/Monitor/DockerSwarmMetricCatalog.js +103 -0
  494. package/build/dist/Types/Monitor/DockerSwarmMetricCatalog.js.map +1 -0
  495. package/build/dist/Types/Monitor/HostAlertTemplates.js +365 -0
  496. package/build/dist/Types/Monitor/HostAlertTemplates.js.map +1 -0
  497. package/build/dist/Types/Monitor/HostMetricCatalog.js +138 -0
  498. package/build/dist/Types/Monitor/HostMetricCatalog.js.map +1 -0
  499. package/build/dist/Types/Monitor/MonitorStep.js +115 -0
  500. package/build/dist/Types/Monitor/MonitorStep.js.map +1 -1
  501. package/build/dist/Types/Monitor/MonitorStepCephMonitor.js +34 -0
  502. package/build/dist/Types/Monitor/MonitorStepCephMonitor.js.map +1 -0
  503. package/build/dist/Types/Monitor/MonitorStepDockerSwarmMonitor.js +21 -0
  504. package/build/dist/Types/Monitor/MonitorStepDockerSwarmMonitor.js.map +1 -0
  505. package/build/dist/Types/Monitor/MonitorStepHostMonitor.js +20 -0
  506. package/build/dist/Types/Monitor/MonitorStepHostMonitor.js.map +1 -0
  507. package/build/dist/Types/Monitor/MonitorStepPodmanMonitor.js +21 -0
  508. package/build/dist/Types/Monitor/MonitorStepPodmanMonitor.js.map +1 -0
  509. package/build/dist/Types/Monitor/MonitorStepProxmoxMonitor.js +36 -0
  510. package/build/dist/Types/Monitor/MonitorStepProxmoxMonitor.js.map +1 -0
  511. package/build/dist/Types/Monitor/MonitorType.js +66 -1
  512. package/build/dist/Types/Monitor/MonitorType.js.map +1 -1
  513. package/build/dist/Types/Monitor/PodmanAlertTemplates.js +410 -0
  514. package/build/dist/Types/Monitor/PodmanAlertTemplates.js.map +1 -0
  515. package/build/dist/Types/Monitor/PodmanMetricCatalog.js +192 -0
  516. package/build/dist/Types/Monitor/PodmanMetricCatalog.js.map +1 -0
  517. package/build/dist/Types/Monitor/ProxmoxAlertTemplates.js +743 -0
  518. package/build/dist/Types/Monitor/ProxmoxAlertTemplates.js.map +1 -0
  519. package/build/dist/Types/Monitor/ProxmoxMetricCatalog.js +320 -0
  520. package/build/dist/Types/Monitor/ProxmoxMetricCatalog.js.map +1 -0
  521. package/build/dist/Types/Permission.js +824 -0
  522. package/build/dist/Types/Permission.js.map +1 -1
  523. package/build/dist/Types/Podman/PodmanInventoryExtractor.js +293 -0
  524. package/build/dist/Types/Podman/PodmanInventoryExtractor.js.map +1 -0
  525. package/build/dist/Types/Telemetry/EntityType.js +23 -0
  526. package/build/dist/Types/Telemetry/EntityType.js.map +1 -1
  527. package/build/dist/Types/Telemetry/ServiceType.js +4 -0
  528. package/build/dist/Types/Telemetry/ServiceType.js.map +1 -1
  529. package/build/dist/UI/Components/Icon/Icon.js +49 -0
  530. package/build/dist/UI/Components/Icon/Icon.js.map +1 -1
  531. package/build/dist/UI/Components/LogsViewer/LogsViewer.js +30 -2
  532. package/build/dist/UI/Components/LogsViewer/LogsViewer.js.map +1 -1
  533. package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js +22 -0
  534. package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js.map +1 -1
  535. package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js +11 -1
  536. package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js.map +1 -1
  537. package/build/dist/UI/Utils/Telemetry/Telemetry.js +11 -10
  538. package/build/dist/UI/Utils/Telemetry/Telemetry.js.map +1 -1
  539. package/build/dist/UI/Utils/TelemetryService.js +6 -2
  540. package/build/dist/UI/Utils/TelemetryService.js.map +1 -1
  541. package/build/dist/Utils/Dashboard/Components/DashboardCephOsdListComponent.js +50 -0
  542. package/build/dist/Utils/Dashboard/Components/DashboardCephOsdListComponent.js.map +1 -0
  543. package/build/dist/Utils/Dashboard/Components/DashboardCephPoolListComponent.js +27 -0
  544. package/build/dist/Utils/Dashboard/Components/DashboardCephPoolListComponent.js.map +1 -0
  545. package/build/dist/Utils/Dashboard/Components/DashboardCephResourceListShared.js +46 -0
  546. package/build/dist/Utils/Dashboard/Components/DashboardCephResourceListShared.js.map +1 -0
  547. package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmNodeListComponent.js +55 -0
  548. package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmNodeListComponent.js.map +1 -0
  549. package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmResourceListShared.js +46 -0
  550. package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmResourceListShared.js.map +1 -0
  551. package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmServiceListComponent.js +55 -0
  552. package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmServiceListComponent.js.map +1 -0
  553. package/build/dist/Utils/Dashboard/Components/DashboardPodmanContainerListComponent.js +77 -0
  554. package/build/dist/Utils/Dashboard/Components/DashboardPodmanContainerListComponent.js.map +1 -0
  555. package/build/dist/Utils/Dashboard/Components/DashboardPodmanHostListComponent.js +71 -0
  556. package/build/dist/Utils/Dashboard/Components/DashboardPodmanHostListComponent.js.map +1 -0
  557. package/build/dist/Utils/Dashboard/Components/DashboardPodmanImageListComponent.js +77 -0
  558. package/build/dist/Utils/Dashboard/Components/DashboardPodmanImageListComponent.js.map +1 -0
  559. package/build/dist/Utils/Dashboard/Components/DashboardPodmanNetworkListComponent.js +68 -0
  560. package/build/dist/Utils/Dashboard/Components/DashboardPodmanNetworkListComponent.js.map +1 -0
  561. package/build/dist/Utils/Dashboard/Components/DashboardPodmanVolumeListComponent.js +68 -0
  562. package/build/dist/Utils/Dashboard/Components/DashboardPodmanVolumeListComponent.js.map +1 -0
  563. package/build/dist/Utils/Dashboard/Components/DashboardProxmoxGuestListComponent.js +55 -0
  564. package/build/dist/Utils/Dashboard/Components/DashboardProxmoxGuestListComponent.js.map +1 -0
  565. package/build/dist/Utils/Dashboard/Components/DashboardProxmoxNodeListComponent.js +42 -0
  566. package/build/dist/Utils/Dashboard/Components/DashboardProxmoxNodeListComponent.js.map +1 -0
  567. package/build/dist/Utils/Dashboard/Components/DashboardProxmoxResourceListShared.js +46 -0
  568. package/build/dist/Utils/Dashboard/Components/DashboardProxmoxResourceListShared.js.map +1 -0
  569. package/build/dist/Utils/Dashboard/Components/Index.js +44 -0
  570. package/build/dist/Utils/Dashboard/Components/Index.js.map +1 -1
  571. package/build/dist/Utils/Telemetry/EntityKey.js +41 -0
  572. package/build/dist/Utils/Telemetry/EntityKey.js.map +1 -1
  573. package/build/dist/Utils/Telemetry/EntityRelationship.js +3 -0
  574. package/build/dist/Utils/Telemetry/EntityRelationship.js.map +1 -1
  575. package/build/dist/Utils/Telemetry/HeartbeatAvailability.js +174 -0
  576. package/build/dist/Utils/Telemetry/HeartbeatAvailability.js.map +1 -0
  577. package/package.json +29 -21
@@ -505,12 +505,24 @@ enum Permission {
505
505
  EditDockerHostOwnerRule = "EditDockerHostOwnerRule",
506
506
  ReadDockerHostOwnerRule = "ReadDockerHostOwnerRule",
507
507
 
508
+ // Podman Host Owner Rule Permissions
509
+ CreatePodmanHostOwnerRule = "CreatePodmanHostOwnerRule",
510
+ DeletePodmanHostOwnerRule = "DeletePodmanHostOwnerRule",
511
+ EditPodmanHostOwnerRule = "EditPodmanHostOwnerRule",
512
+ ReadPodmanHostOwnerRule = "ReadPodmanHostOwnerRule",
513
+
508
514
  // Docker Host Label Rule Permissions
509
515
  CreateDockerHostLabelRule = "CreateDockerHostLabelRule",
510
516
  DeleteDockerHostLabelRule = "DeleteDockerHostLabelRule",
511
517
  EditDockerHostLabelRule = "EditDockerHostLabelRule",
512
518
  ReadDockerHostLabelRule = "ReadDockerHostLabelRule",
513
519
 
520
+ // Podman Host Label Rule Permissions
521
+ CreatePodmanHostLabelRule = "CreatePodmanHostLabelRule",
522
+ DeletePodmanHostLabelRule = "DeletePodmanHostLabelRule",
523
+ EditPodmanHostLabelRule = "EditPodmanHostLabelRule",
524
+ ReadPodmanHostLabelRule = "ReadPodmanHostLabelRule",
525
+
514
526
  // Kubernetes Cluster Owner Rule Permissions
515
527
  CreateKubernetesClusterOwnerRule = "CreateKubernetesClusterOwnerRule",
516
528
  DeleteKubernetesClusterOwnerRule = "DeleteKubernetesClusterOwnerRule",
@@ -523,6 +535,44 @@ enum Permission {
523
535
  EditKubernetesClusterLabelRule = "EditKubernetesClusterLabelRule",
524
536
  ReadKubernetesClusterLabelRule = "ReadKubernetesClusterLabelRule",
525
537
 
538
+ /*
539
+ * Proxmox Cluster Owner Rule Permissions
540
+ * Docker Swarm Cluster Owner Rule Permissions
541
+ */
542
+ CreateProxmoxClusterOwnerRule = "CreateProxmoxClusterOwnerRule",
543
+ CreateDockerSwarmClusterOwnerRule = "CreateDockerSwarmClusterOwnerRule",
544
+ DeleteProxmoxClusterOwnerRule = "DeleteProxmoxClusterOwnerRule",
545
+ DeleteDockerSwarmClusterOwnerRule = "DeleteDockerSwarmClusterOwnerRule",
546
+ EditProxmoxClusterOwnerRule = "EditProxmoxClusterOwnerRule",
547
+ EditDockerSwarmClusterOwnerRule = "EditDockerSwarmClusterOwnerRule",
548
+ ReadProxmoxClusterOwnerRule = "ReadProxmoxClusterOwnerRule",
549
+ ReadDockerSwarmClusterOwnerRule = "ReadDockerSwarmClusterOwnerRule",
550
+
551
+ /*
552
+ * Proxmox Cluster Label Rule Permissions
553
+ * Docker Swarm Cluster Label Rule Permissions
554
+ */
555
+ CreateProxmoxClusterLabelRule = "CreateProxmoxClusterLabelRule",
556
+ CreateDockerSwarmClusterLabelRule = "CreateDockerSwarmClusterLabelRule",
557
+ DeleteProxmoxClusterLabelRule = "DeleteProxmoxClusterLabelRule",
558
+ DeleteDockerSwarmClusterLabelRule = "DeleteDockerSwarmClusterLabelRule",
559
+ EditProxmoxClusterLabelRule = "EditProxmoxClusterLabelRule",
560
+ EditDockerSwarmClusterLabelRule = "EditDockerSwarmClusterLabelRule",
561
+ ReadProxmoxClusterLabelRule = "ReadProxmoxClusterLabelRule",
562
+ ReadDockerSwarmClusterLabelRule = "ReadDockerSwarmClusterLabelRule",
563
+
564
+ // Ceph Cluster Owner Rule Permissions
565
+ CreateCephClusterOwnerRule = "CreateCephClusterOwnerRule",
566
+ DeleteCephClusterOwnerRule = "DeleteCephClusterOwnerRule",
567
+ EditCephClusterOwnerRule = "EditCephClusterOwnerRule",
568
+ ReadCephClusterOwnerRule = "ReadCephClusterOwnerRule",
569
+
570
+ // Ceph Cluster Label Rule Permissions
571
+ CreateCephClusterLabelRule = "CreateCephClusterLabelRule",
572
+ DeleteCephClusterLabelRule = "DeleteCephClusterLabelRule",
573
+ EditCephClusterLabelRule = "EditCephClusterLabelRule",
574
+ ReadCephClusterLabelRule = "ReadCephClusterLabelRule",
575
+
526
576
  // Runbook Owner Rule Permissions
527
577
  CreateRunbookOwnerRule = "CreateRunbookOwnerRule",
528
578
  DeleteRunbookOwnerRule = "DeleteRunbookOwnerRule",
@@ -1099,16 +1149,73 @@ enum Permission {
1099
1149
  EditDockerHost = "EditDockerHost",
1100
1150
  ReadDockerHost = "ReadDockerHost",
1101
1151
 
1152
+ CreatePodmanHost = "CreatePodmanHost",
1153
+ DeletePodmanHost = "DeletePodmanHost",
1154
+ EditPodmanHost = "EditPodmanHost",
1155
+ ReadPodmanHost = "ReadPodmanHost",
1156
+
1102
1157
  CreateDockerHostOwnerTeam = "CreateDockerHostOwnerTeam",
1103
1158
  DeleteDockerHostOwnerTeam = "DeleteDockerHostOwnerTeam",
1104
1159
  EditDockerHostOwnerTeam = "EditDockerHostOwnerTeam",
1105
1160
  ReadDockerHostOwnerTeam = "ReadDockerHostOwnerTeam",
1106
1161
 
1162
+ CreatePodmanHostOwnerTeam = "CreatePodmanHostOwnerTeam",
1163
+ DeletePodmanHostOwnerTeam = "DeletePodmanHostOwnerTeam",
1164
+ EditPodmanHostOwnerTeam = "EditPodmanHostOwnerTeam",
1165
+ ReadPodmanHostOwnerTeam = "ReadPodmanHostOwnerTeam",
1166
+
1107
1167
  CreateDockerHostOwnerUser = "CreateDockerHostOwnerUser",
1108
1168
  DeleteDockerHostOwnerUser = "DeleteDockerHostOwnerUser",
1109
1169
  EditDockerHostOwnerUser = "EditDockerHostOwnerUser",
1110
1170
  ReadDockerHostOwnerUser = "ReadDockerHostOwnerUser",
1111
1171
 
1172
+ CreatePodmanHostOwnerUser = "CreatePodmanHostOwnerUser",
1173
+ DeletePodmanHostOwnerUser = "DeletePodmanHostOwnerUser",
1174
+ EditPodmanHostOwnerUser = "EditPodmanHostOwnerUser",
1175
+ ReadPodmanHostOwnerUser = "ReadPodmanHostOwnerUser",
1176
+
1177
+ CreateProxmoxCluster = "CreateProxmoxCluster",
1178
+ CreateDockerSwarmCluster = "CreateDockerSwarmCluster",
1179
+ DeleteProxmoxCluster = "DeleteProxmoxCluster",
1180
+ DeleteDockerSwarmCluster = "DeleteDockerSwarmCluster",
1181
+ EditProxmoxCluster = "EditProxmoxCluster",
1182
+ EditDockerSwarmCluster = "EditDockerSwarmCluster",
1183
+ ReadProxmoxCluster = "ReadProxmoxCluster",
1184
+ ReadDockerSwarmCluster = "ReadDockerSwarmCluster",
1185
+
1186
+ CreateCephCluster = "CreateCephCluster",
1187
+ DeleteCephCluster = "DeleteCephCluster",
1188
+ EditCephCluster = "EditCephCluster",
1189
+ ReadCephCluster = "ReadCephCluster",
1190
+
1191
+ CreateProxmoxClusterOwnerTeam = "CreateProxmoxClusterOwnerTeam",
1192
+ CreateDockerSwarmClusterOwnerTeam = "CreateDockerSwarmClusterOwnerTeam",
1193
+ DeleteProxmoxClusterOwnerTeam = "DeleteProxmoxClusterOwnerTeam",
1194
+ DeleteDockerSwarmClusterOwnerTeam = "DeleteDockerSwarmClusterOwnerTeam",
1195
+ EditProxmoxClusterOwnerTeam = "EditProxmoxClusterOwnerTeam",
1196
+ EditDockerSwarmClusterOwnerTeam = "EditDockerSwarmClusterOwnerTeam",
1197
+ ReadProxmoxClusterOwnerTeam = "ReadProxmoxClusterOwnerTeam",
1198
+ ReadDockerSwarmClusterOwnerTeam = "ReadDockerSwarmClusterOwnerTeam",
1199
+
1200
+ CreateProxmoxClusterOwnerUser = "CreateProxmoxClusterOwnerUser",
1201
+ CreateDockerSwarmClusterOwnerUser = "CreateDockerSwarmClusterOwnerUser",
1202
+ DeleteProxmoxClusterOwnerUser = "DeleteProxmoxClusterOwnerUser",
1203
+ DeleteDockerSwarmClusterOwnerUser = "DeleteDockerSwarmClusterOwnerUser",
1204
+ EditProxmoxClusterOwnerUser = "EditProxmoxClusterOwnerUser",
1205
+ EditDockerSwarmClusterOwnerUser = "EditDockerSwarmClusterOwnerUser",
1206
+ ReadProxmoxClusterOwnerUser = "ReadProxmoxClusterOwnerUser",
1207
+ ReadDockerSwarmClusterOwnerUser = "ReadDockerSwarmClusterOwnerUser",
1208
+
1209
+ CreateCephClusterOwnerTeam = "CreateCephClusterOwnerTeam",
1210
+ DeleteCephClusterOwnerTeam = "DeleteCephClusterOwnerTeam",
1211
+ EditCephClusterOwnerTeam = "EditCephClusterOwnerTeam",
1212
+ ReadCephClusterOwnerTeam = "ReadCephClusterOwnerTeam",
1213
+
1214
+ CreateCephClusterOwnerUser = "CreateCephClusterOwnerUser",
1215
+ DeleteCephClusterOwnerUser = "DeleteCephClusterOwnerUser",
1216
+ EditCephClusterOwnerUser = "EditCephClusterOwnerUser",
1217
+ ReadCephClusterOwnerUser = "ReadCephClusterOwnerUser",
1218
+
1112
1219
  CreateHost = "CreateHost",
1113
1220
  DeleteHost = "DeleteHost",
1114
1221
  EditHost = "EditHost",
@@ -7351,6 +7458,160 @@ export class PermissionHelper {
7351
7458
  isRolePermission: false,
7352
7459
  group: PermissionGroup.Telemetry,
7353
7460
  },
7461
+ {
7462
+ permission: Permission.CreatePodmanHost,
7463
+ title: "Create Podman Host",
7464
+ description: "This permission can create Podman Host in this project.",
7465
+ isAssignableToTenant: true,
7466
+ isAccessControlPermission: false,
7467
+ isRolePermission: false,
7468
+ group: PermissionGroup.Telemetry,
7469
+ },
7470
+ {
7471
+ permission: Permission.DeletePodmanHost,
7472
+ title: "Delete Podman Host",
7473
+ description: "This permission can delete Podman Host of this project.",
7474
+ isAssignableToTenant: true,
7475
+ isAccessControlPermission: true,
7476
+ isRolePermission: false,
7477
+ group: PermissionGroup.Telemetry,
7478
+ },
7479
+ {
7480
+ permission: Permission.EditPodmanHost,
7481
+ title: "Edit Podman Host",
7482
+ description: "This permission can edit Podman Host of this project.",
7483
+ isAssignableToTenant: true,
7484
+ isAccessControlPermission: true,
7485
+ isRolePermission: false,
7486
+ group: PermissionGroup.Telemetry,
7487
+ },
7488
+ {
7489
+ permission: Permission.ReadPodmanHost,
7490
+ title: "Read Podman Host",
7491
+ description: "This permission can read Podman Host of this project.",
7492
+ isAssignableToTenant: true,
7493
+ isAccessControlPermission: true,
7494
+ isRolePermission: false,
7495
+ group: PermissionGroup.Telemetry,
7496
+ },
7497
+
7498
+ {
7499
+ permission: Permission.CreateProxmoxCluster,
7500
+ title: "Create Proxmox Cluster",
7501
+ description:
7502
+ "This permission can create Proxmox Cluster in this project.",
7503
+ isAssignableToTenant: true,
7504
+ isAccessControlPermission: false,
7505
+ isRolePermission: false,
7506
+ group: PermissionGroup.Telemetry,
7507
+ },
7508
+ {
7509
+ permission: Permission.CreateDockerSwarmCluster,
7510
+ title: "Create Docker Swarm Cluster",
7511
+ description:
7512
+ "This permission can create Docker Swarm Cluster in this project.",
7513
+ isAssignableToTenant: true,
7514
+ isAccessControlPermission: false,
7515
+ isRolePermission: false,
7516
+ group: PermissionGroup.Telemetry,
7517
+ },
7518
+ {
7519
+ permission: Permission.DeleteProxmoxCluster,
7520
+ title: "Delete Proxmox Cluster",
7521
+ description:
7522
+ "This permission can delete Proxmox Cluster of this project.",
7523
+ isAssignableToTenant: true,
7524
+ isAccessControlPermission: true,
7525
+ isRolePermission: false,
7526
+ group: PermissionGroup.Telemetry,
7527
+ },
7528
+ {
7529
+ permission: Permission.DeleteDockerSwarmCluster,
7530
+ title: "Delete Docker Swarm Cluster",
7531
+ description:
7532
+ "This permission can delete Docker Swarm Cluster of this project.",
7533
+ isAssignableToTenant: true,
7534
+ isAccessControlPermission: true,
7535
+ isRolePermission: false,
7536
+ group: PermissionGroup.Telemetry,
7537
+ },
7538
+ {
7539
+ permission: Permission.EditProxmoxCluster,
7540
+ title: "Edit Proxmox Cluster",
7541
+ description:
7542
+ "This permission can edit Proxmox Cluster of this project.",
7543
+ isAssignableToTenant: true,
7544
+ isAccessControlPermission: true,
7545
+ isRolePermission: false,
7546
+ group: PermissionGroup.Telemetry,
7547
+ },
7548
+ {
7549
+ permission: Permission.EditDockerSwarmCluster,
7550
+ title: "Edit Docker Swarm Cluster",
7551
+ description:
7552
+ "This permission can edit Docker Swarm Cluster of this project.",
7553
+ isAssignableToTenant: true,
7554
+ isAccessControlPermission: true,
7555
+ isRolePermission: false,
7556
+ group: PermissionGroup.Telemetry,
7557
+ },
7558
+ {
7559
+ permission: Permission.ReadProxmoxCluster,
7560
+ title: "Read Proxmox Cluster",
7561
+ description:
7562
+ "This permission can read Proxmox Cluster of this project.",
7563
+ isAssignableToTenant: true,
7564
+ isAccessControlPermission: true,
7565
+ isRolePermission: false,
7566
+ group: PermissionGroup.Telemetry,
7567
+ },
7568
+ {
7569
+ permission: Permission.ReadDockerSwarmCluster,
7570
+ title: "Read Docker Swarm Cluster",
7571
+ description:
7572
+ "This permission can read Docker Swarm Cluster of this project.",
7573
+ isAssignableToTenant: true,
7574
+ isAccessControlPermission: true,
7575
+ isRolePermission: false,
7576
+ group: PermissionGroup.Telemetry,
7577
+ },
7578
+
7579
+ {
7580
+ permission: Permission.CreateCephCluster,
7581
+ title: "Create Ceph Cluster",
7582
+ description: "This permission can create Ceph Cluster in this project.",
7583
+ isAssignableToTenant: true,
7584
+ isAccessControlPermission: false,
7585
+ isRolePermission: false,
7586
+ group: PermissionGroup.Telemetry,
7587
+ },
7588
+ {
7589
+ permission: Permission.DeleteCephCluster,
7590
+ title: "Delete Ceph Cluster",
7591
+ description: "This permission can delete Ceph Cluster of this project.",
7592
+ isAssignableToTenant: true,
7593
+ isAccessControlPermission: true,
7594
+ isRolePermission: false,
7595
+ group: PermissionGroup.Telemetry,
7596
+ },
7597
+ {
7598
+ permission: Permission.EditCephCluster,
7599
+ title: "Edit Ceph Cluster",
7600
+ description: "This permission can edit Ceph Cluster of this project.",
7601
+ isAssignableToTenant: true,
7602
+ isAccessControlPermission: true,
7603
+ isRolePermission: false,
7604
+ group: PermissionGroup.Telemetry,
7605
+ },
7606
+ {
7607
+ permission: Permission.ReadCephCluster,
7608
+ title: "Read Ceph Cluster",
7609
+ description: "This permission can read Ceph Cluster of this project.",
7610
+ isAssignableToTenant: true,
7611
+ isAccessControlPermission: true,
7612
+ isRolePermission: false,
7613
+ group: PermissionGroup.Telemetry,
7614
+ },
7354
7615
  ];
7355
7616
 
7356
7617
  /*
@@ -8053,81 +8314,80 @@ export class PermissionHelper {
8053
8314
  },
8054
8315
 
8055
8316
  {
8056
- permission: Permission.CreateDockerHostOwnerTeam,
8057
- title: "Create Docker Host Team Owner",
8317
+ permission: Permission.CreateProxmoxClusterOwnerTeam,
8318
+ title: "Create Proxmox Cluster Team Owner",
8058
8319
  description:
8059
- "This permission can create Docker Host Team Owner of this project.",
8320
+ "This permission can create Proxmox Cluster Team Owner of this project.",
8060
8321
  isAssignableToTenant: true,
8061
8322
  isAccessControlPermission: false,
8062
8323
  isRolePermission: false,
8063
8324
  group: PermissionGroup.Telemetry,
8064
8325
  },
8065
8326
  {
8066
- permission: Permission.DeleteDockerHostOwnerTeam,
8067
- title: "Delete Docker Host Team Owner",
8327
+ permission: Permission.CreateDockerSwarmClusterOwnerTeam,
8328
+ title: "Create Docker Swarm Cluster Team Owner",
8068
8329
  description:
8069
- "This permission can delete Docker Host Team Owner of this project.",
8330
+ "This permission can create Docker Swarm Cluster Team Owner of this project.",
8070
8331
  isAssignableToTenant: true,
8071
8332
  isAccessControlPermission: false,
8072
8333
  isRolePermission: false,
8073
8334
  group: PermissionGroup.Telemetry,
8074
8335
  },
8075
8336
  {
8076
- permission: Permission.EditDockerHostOwnerTeam,
8077
- title: "Edit Docker Host Team Owner",
8337
+ permission: Permission.DeleteProxmoxClusterOwnerTeam,
8338
+ title: "Delete Proxmox Cluster Team Owner",
8078
8339
  description:
8079
- "This permission can edit Docker Host Team Owner of this project.",
8340
+ "This permission can delete Proxmox Cluster Team Owner of this project.",
8080
8341
  isAssignableToTenant: true,
8081
8342
  isAccessControlPermission: false,
8082
8343
  isRolePermission: false,
8083
8344
  group: PermissionGroup.Telemetry,
8084
8345
  },
8085
8346
  {
8086
- permission: Permission.ReadDockerHostOwnerTeam,
8087
- title: "Read Docker Host Team Owner",
8347
+ permission: Permission.DeleteDockerSwarmClusterOwnerTeam,
8348
+ title: "Delete Docker Swarm Cluster Team Owner",
8088
8349
  description:
8089
- "This permission can read Docker Host Team Owner of this project.",
8350
+ "This permission can delete Docker Swarm Cluster Team Owner of this project.",
8090
8351
  isAssignableToTenant: true,
8091
8352
  isAccessControlPermission: false,
8092
8353
  isRolePermission: false,
8093
8354
  group: PermissionGroup.Telemetry,
8094
8355
  },
8095
-
8096
8356
  {
8097
- permission: Permission.CreateDockerHostOwnerUser,
8098
- title: "Create Docker Host User Owner",
8357
+ permission: Permission.EditProxmoxClusterOwnerTeam,
8358
+ title: "Edit Proxmox Cluster Team Owner",
8099
8359
  description:
8100
- "This permission can create Docker Host User Owner of this project.",
8360
+ "This permission can edit Proxmox Cluster Team Owner of this project.",
8101
8361
  isAssignableToTenant: true,
8102
8362
  isAccessControlPermission: false,
8103
8363
  isRolePermission: false,
8104
8364
  group: PermissionGroup.Telemetry,
8105
8365
  },
8106
8366
  {
8107
- permission: Permission.DeleteDockerHostOwnerUser,
8108
- title: "Delete Docker Host User Owner",
8367
+ permission: Permission.EditDockerSwarmClusterOwnerTeam,
8368
+ title: "Edit Docker Swarm Cluster Team Owner",
8109
8369
  description:
8110
- "This permission can delete Docker Host User Owner of this project.",
8370
+ "This permission can edit Docker Swarm Cluster Team Owner of this project.",
8111
8371
  isAssignableToTenant: true,
8112
8372
  isAccessControlPermission: false,
8113
8373
  isRolePermission: false,
8114
8374
  group: PermissionGroup.Telemetry,
8115
8375
  },
8116
8376
  {
8117
- permission: Permission.EditDockerHostOwnerUser,
8118
- title: "Edit Docker Host User Owner",
8377
+ permission: Permission.ReadProxmoxClusterOwnerTeam,
8378
+ title: "Read Proxmox Cluster Team Owner",
8119
8379
  description:
8120
- "This permission can edit Docker Host User Owner of this project.",
8380
+ "This permission can read Proxmox Cluster Team Owner of this project.",
8121
8381
  isAssignableToTenant: true,
8122
8382
  isAccessControlPermission: false,
8123
8383
  isRolePermission: false,
8124
8384
  group: PermissionGroup.Telemetry,
8125
8385
  },
8126
8386
  {
8127
- permission: Permission.ReadDockerHostOwnerUser,
8128
- title: "Read Docker Host User Owner",
8387
+ permission: Permission.ReadDockerSwarmClusterOwnerTeam,
8388
+ title: "Read Docker Swarm Cluster Team Owner",
8129
8389
  description:
8130
- "This permission can read Docker Host User Owner of this project.",
8390
+ "This permission can read Docker Swarm Cluster Team Owner of this project.",
8131
8391
  isAssignableToTenant: true,
8132
8392
  isAccessControlPermission: false,
8133
8393
  isRolePermission: false,
@@ -8135,77 +8395,80 @@ export class PermissionHelper {
8135
8395
  },
8136
8396
 
8137
8397
  {
8138
- permission: Permission.CreateHost,
8139
- title: "Create Host",
8140
- description: "This permission can create Host in this project.",
8398
+ permission: Permission.CreateProxmoxClusterOwnerUser,
8399
+ title: "Create Proxmox Cluster User Owner",
8400
+ description:
8401
+ "This permission can create Proxmox Cluster User Owner of this project.",
8141
8402
  isAssignableToTenant: true,
8142
8403
  isAccessControlPermission: false,
8143
8404
  isRolePermission: false,
8144
8405
  group: PermissionGroup.Telemetry,
8145
8406
  },
8146
8407
  {
8147
- permission: Permission.DeleteHost,
8148
- title: "Delete Host",
8149
- description: "This permission can delete Host of this project.",
8408
+ permission: Permission.CreateDockerSwarmClusterOwnerUser,
8409
+ title: "Create Docker Swarm Cluster User Owner",
8410
+ description:
8411
+ "This permission can create Docker Swarm Cluster User Owner of this project.",
8150
8412
  isAssignableToTenant: true,
8151
- isAccessControlPermission: true,
8413
+ isAccessControlPermission: false,
8152
8414
  isRolePermission: false,
8153
8415
  group: PermissionGroup.Telemetry,
8154
8416
  },
8155
8417
  {
8156
- permission: Permission.EditHost,
8157
- title: "Edit Host",
8158
- description: "This permission can edit Host of this project.",
8418
+ permission: Permission.DeleteProxmoxClusterOwnerUser,
8419
+ title: "Delete Proxmox Cluster User Owner",
8420
+ description:
8421
+ "This permission can delete Proxmox Cluster User Owner of this project.",
8159
8422
  isAssignableToTenant: true,
8160
- isAccessControlPermission: true,
8423
+ isAccessControlPermission: false,
8161
8424
  isRolePermission: false,
8162
8425
  group: PermissionGroup.Telemetry,
8163
8426
  },
8164
8427
  {
8165
- permission: Permission.ReadHost,
8166
- title: "Read Host",
8167
- description: "This permission can read Host of this project.",
8428
+ permission: Permission.DeleteDockerSwarmClusterOwnerUser,
8429
+ title: "Delete Docker Swarm Cluster User Owner",
8430
+ description:
8431
+ "This permission can delete Docker Swarm Cluster User Owner of this project.",
8168
8432
  isAssignableToTenant: true,
8169
- isAccessControlPermission: true,
8433
+ isAccessControlPermission: false,
8170
8434
  isRolePermission: false,
8171
8435
  group: PermissionGroup.Telemetry,
8172
8436
  },
8173
-
8174
8437
  {
8175
- permission: Permission.CreateHostOwnerTeam,
8176
- title: "Create Host Team Owner",
8438
+ permission: Permission.EditProxmoxClusterOwnerUser,
8439
+ title: "Edit Proxmox Cluster User Owner",
8177
8440
  description:
8178
- "This permission can create Host Team Owner of this project.",
8441
+ "This permission can edit Proxmox Cluster User Owner of this project.",
8179
8442
  isAssignableToTenant: true,
8180
8443
  isAccessControlPermission: false,
8181
8444
  isRolePermission: false,
8182
8445
  group: PermissionGroup.Telemetry,
8183
8446
  },
8184
8447
  {
8185
- permission: Permission.DeleteHostOwnerTeam,
8186
- title: "Delete Host Team Owner",
8448
+ permission: Permission.EditDockerSwarmClusterOwnerUser,
8449
+ title: "Edit Docker Swarm Cluster User Owner",
8187
8450
  description:
8188
- "This permission can delete Host Team Owner of this project.",
8451
+ "This permission can edit Docker Swarm Cluster User Owner of this project.",
8189
8452
  isAssignableToTenant: true,
8190
8453
  isAccessControlPermission: false,
8191
8454
  isRolePermission: false,
8192
8455
  group: PermissionGroup.Telemetry,
8193
8456
  },
8194
8457
  {
8195
- permission: Permission.EditHostOwnerTeam,
8196
- title: "Edit Host Team Owner",
8458
+ permission: Permission.ReadProxmoxClusterOwnerUser,
8459
+ title: "Read Proxmox Cluster User Owner",
8197
8460
  description:
8198
- "This permission can edit Host Team Owner of this project.",
8461
+ "This permission can read Proxmox Cluster User Owner of this project.",
8199
8462
  isAssignableToTenant: true,
8200
8463
  isAccessControlPermission: false,
8201
8464
  isRolePermission: false,
8202
8465
  group: PermissionGroup.Telemetry,
8203
8466
  },
8204
8467
  {
8205
- permission: Permission.ReadHostOwnerTeam,
8206
- title: "Read Host Team Owner",
8468
+ permission: Permission.ReadDockerSwarmClusterOwnerUser,
8469
+ title: "Read Docker Swarm Cluster User Owner",
8207
8470
  description:
8208
- "This permission can read Host Team Owner of this project.",
8471
+ "This permission can read Docker Swarm Cluster User Owner of this project.",
8209
8472
  isAssignableToTenant: true,
8210
8473
  isAccessControlPermission: false,
8211
8474
  isRolePermission: false,
@@ -8213,40 +8476,40 @@ export class PermissionHelper {
8213
8476
  },
8214
8477
 
8215
8478
  {
8216
- permission: Permission.CreateHostOwnerUser,
8217
- title: "Create Host User Owner",
8479
+ permission: Permission.CreateCephClusterOwnerTeam,
8480
+ title: "Create Ceph Cluster Team Owner",
8218
8481
  description:
8219
- "This permission can create Host User Owner of this project.",
8482
+ "This permission can create Ceph Cluster Team Owner of this project.",
8220
8483
  isAssignableToTenant: true,
8221
8484
  isAccessControlPermission: false,
8222
8485
  isRolePermission: false,
8223
8486
  group: PermissionGroup.Telemetry,
8224
8487
  },
8225
8488
  {
8226
- permission: Permission.DeleteHostOwnerUser,
8227
- title: "Delete Host User Owner",
8489
+ permission: Permission.DeleteCephClusterOwnerTeam,
8490
+ title: "Delete Ceph Cluster Team Owner",
8228
8491
  description:
8229
- "This permission can delete Host User Owner of this project.",
8492
+ "This permission can delete Ceph Cluster Team Owner of this project.",
8230
8493
  isAssignableToTenant: true,
8231
8494
  isAccessControlPermission: false,
8232
8495
  isRolePermission: false,
8233
8496
  group: PermissionGroup.Telemetry,
8234
8497
  },
8235
8498
  {
8236
- permission: Permission.EditHostOwnerUser,
8237
- title: "Edit Host User Owner",
8499
+ permission: Permission.EditCephClusterOwnerTeam,
8500
+ title: "Edit Ceph Cluster Team Owner",
8238
8501
  description:
8239
- "This permission can edit Host User Owner of this project.",
8502
+ "This permission can edit Ceph Cluster Team Owner of this project.",
8240
8503
  isAssignableToTenant: true,
8241
8504
  isAccessControlPermission: false,
8242
8505
  isRolePermission: false,
8243
8506
  group: PermissionGroup.Telemetry,
8244
8507
  },
8245
8508
  {
8246
- permission: Permission.ReadHostOwnerUser,
8247
- title: "Read Host User Owner",
8509
+ permission: Permission.ReadCephClusterOwnerTeam,
8510
+ title: "Read Ceph Cluster Team Owner",
8248
8511
  description:
8249
- "This permission can read Host User Owner of this project.",
8512
+ "This permission can read Ceph Cluster Team Owner of this project.",
8250
8513
  isAssignableToTenant: true,
8251
8514
  isAccessControlPermission: false,
8252
8515
  isRolePermission: false,
@@ -8254,88 +8517,412 @@ export class PermissionHelper {
8254
8517
  },
8255
8518
 
8256
8519
  {
8257
- permission: Permission.CreateService,
8258
- title: "Create Service",
8259
- description: "This permission can create Service in this project.",
8520
+ permission: Permission.CreateCephClusterOwnerUser,
8521
+ title: "Create Ceph Cluster User Owner",
8522
+ description:
8523
+ "This permission can create Ceph Cluster User Owner of this project.",
8260
8524
  isAssignableToTenant: true,
8261
- isAccessControlPermission: true,
8525
+ isAccessControlPermission: false,
8262
8526
  isRolePermission: false,
8263
- group: PermissionGroup.ServiceCatalog,
8527
+ group: PermissionGroup.Telemetry,
8264
8528
  },
8265
8529
  {
8266
- permission: Permission.DeleteService,
8267
- title: "Delete Service",
8268
- description: "This permission can delete Service of this project.",
8530
+ permission: Permission.DeleteCephClusterOwnerUser,
8531
+ title: "Delete Ceph Cluster User Owner",
8532
+ description:
8533
+ "This permission can delete Ceph Cluster User Owner of this project.",
8269
8534
  isAssignableToTenant: true,
8270
- isAccessControlPermission: true,
8535
+ isAccessControlPermission: false,
8271
8536
  isRolePermission: false,
8272
- group: PermissionGroup.ServiceCatalog,
8537
+ group: PermissionGroup.Telemetry,
8273
8538
  },
8274
8539
  {
8275
- permission: Permission.EditService,
8276
- title: "Edit Service",
8277
- description: "This permission can edit Service of this project.",
8540
+ permission: Permission.EditCephClusterOwnerUser,
8541
+ title: "Edit Ceph Cluster User Owner",
8542
+ description:
8543
+ "This permission can edit Ceph Cluster User Owner of this project.",
8278
8544
  isAssignableToTenant: true,
8279
- isAccessControlPermission: true,
8545
+ isAccessControlPermission: false,
8280
8546
  isRolePermission: false,
8281
- group: PermissionGroup.ServiceCatalog,
8547
+ group: PermissionGroup.Telemetry,
8282
8548
  },
8283
8549
  {
8284
- permission: Permission.ReadService,
8285
- title: "Read Service",
8286
- description: "This permission can read Service of this project.",
8550
+ permission: Permission.ReadCephClusterOwnerUser,
8551
+ title: "Read Ceph Cluster User Owner",
8552
+ description:
8553
+ "This permission can read Ceph Cluster User Owner of this project.",
8287
8554
  isAssignableToTenant: true,
8288
- isAccessControlPermission: true,
8555
+ isAccessControlPermission: false,
8289
8556
  isRolePermission: false,
8290
- group: PermissionGroup.ServiceCatalog,
8557
+ group: PermissionGroup.Telemetry,
8291
8558
  },
8292
8559
 
8293
8560
  {
8294
- permission: Permission.CreateServiceTelemetryService,
8295
- title: "Create Service Telemetry Service",
8561
+ permission: Permission.CreateDockerHostOwnerTeam,
8562
+ title: "Create Docker Host Team Owner",
8296
8563
  description:
8297
- "This permission can create Service Telemetry Service in this project.",
8564
+ "This permission can create Docker Host Team Owner of this project.",
8298
8565
  isAssignableToTenant: true,
8299
8566
  isAccessControlPermission: false,
8300
8567
  isRolePermission: false,
8301
- group: PermissionGroup.ServiceCatalog,
8568
+ group: PermissionGroup.Telemetry,
8302
8569
  },
8303
8570
  {
8304
- permission: Permission.DeleteServiceTelemetryService,
8305
- title: "Delete Service Telemetry Service",
8571
+ permission: Permission.DeleteDockerHostOwnerTeam,
8572
+ title: "Delete Docker Host Team Owner",
8306
8573
  description:
8307
- "This permission can delete Service Telemetry Service of this project.",
8574
+ "This permission can delete Docker Host Team Owner of this project.",
8308
8575
  isAssignableToTenant: true,
8309
8576
  isAccessControlPermission: false,
8310
8577
  isRolePermission: false,
8311
- group: PermissionGroup.ServiceCatalog,
8578
+ group: PermissionGroup.Telemetry,
8312
8579
  },
8313
8580
  {
8314
- permission: Permission.EditServiceTelemetryService,
8315
- title: "Edit Service Telemetry Service",
8581
+ permission: Permission.EditDockerHostOwnerTeam,
8582
+ title: "Edit Docker Host Team Owner",
8316
8583
  description:
8317
- "This permission can edit Service Telemetry Service of this project.",
8584
+ "This permission can edit Docker Host Team Owner of this project.",
8318
8585
  isAssignableToTenant: true,
8319
8586
  isAccessControlPermission: false,
8320
8587
  isRolePermission: false,
8321
- group: PermissionGroup.ServiceCatalog,
8588
+ group: PermissionGroup.Telemetry,
8322
8589
  },
8323
8590
  {
8324
- permission: Permission.ReadServiceTelemetryService,
8325
- title: "Read Service Telemetry Service",
8591
+ permission: Permission.ReadDockerHostOwnerTeam,
8592
+ title: "Read Docker Host Team Owner",
8326
8593
  description:
8327
- "This permission can read Service Telemetry Service of this project.",
8594
+ "This permission can read Docker Host Team Owner of this project.",
8328
8595
  isAssignableToTenant: true,
8329
8596
  isAccessControlPermission: false,
8330
8597
  isRolePermission: false,
8331
- group: PermissionGroup.ServiceCatalog,
8598
+ group: PermissionGroup.Telemetry,
8332
8599
  },
8333
8600
 
8334
8601
  {
8335
- permission: Permission.CreateServiceCodeRepository,
8336
- title: "Create Service Code Repository",
8602
+ permission: Permission.CreatePodmanHostOwnerTeam,
8603
+ title: "Create Podman Host Team Owner",
8337
8604
  description:
8338
- "This permission can create Service Code Repository in this project.",
8605
+ "This permission can create Podman Host Team Owner of this project.",
8606
+ isAssignableToTenant: true,
8607
+ isAccessControlPermission: false,
8608
+ isRolePermission: false,
8609
+ group: PermissionGroup.Telemetry,
8610
+ },
8611
+ {
8612
+ permission: Permission.DeletePodmanHostOwnerTeam,
8613
+ title: "Delete Podman Host Team Owner",
8614
+ description:
8615
+ "This permission can delete Podman Host Team Owner of this project.",
8616
+ isAssignableToTenant: true,
8617
+ isAccessControlPermission: false,
8618
+ isRolePermission: false,
8619
+ group: PermissionGroup.Telemetry,
8620
+ },
8621
+ {
8622
+ permission: Permission.EditPodmanHostOwnerTeam,
8623
+ title: "Edit Podman Host Team Owner",
8624
+ description:
8625
+ "This permission can edit Podman Host Team Owner of this project.",
8626
+ isAssignableToTenant: true,
8627
+ isAccessControlPermission: false,
8628
+ isRolePermission: false,
8629
+ group: PermissionGroup.Telemetry,
8630
+ },
8631
+ {
8632
+ permission: Permission.ReadPodmanHostOwnerTeam,
8633
+ title: "Read Podman Host Team Owner",
8634
+ description:
8635
+ "This permission can read Podman Host Team Owner of this project.",
8636
+ isAssignableToTenant: true,
8637
+ isAccessControlPermission: false,
8638
+ isRolePermission: false,
8639
+ group: PermissionGroup.Telemetry,
8640
+ },
8641
+
8642
+ {
8643
+ permission: Permission.CreateDockerHostOwnerUser,
8644
+ title: "Create Docker Host User Owner",
8645
+ description:
8646
+ "This permission can create Docker Host User Owner of this project.",
8647
+ isAssignableToTenant: true,
8648
+ isAccessControlPermission: false,
8649
+ isRolePermission: false,
8650
+ group: PermissionGroup.Telemetry,
8651
+ },
8652
+ {
8653
+ permission: Permission.DeleteDockerHostOwnerUser,
8654
+ title: "Delete Docker Host User Owner",
8655
+ description:
8656
+ "This permission can delete Docker Host User Owner of this project.",
8657
+ isAssignableToTenant: true,
8658
+ isAccessControlPermission: false,
8659
+ isRolePermission: false,
8660
+ group: PermissionGroup.Telemetry,
8661
+ },
8662
+ {
8663
+ permission: Permission.EditDockerHostOwnerUser,
8664
+ title: "Edit Docker Host User Owner",
8665
+ description:
8666
+ "This permission can edit Docker Host User Owner of this project.",
8667
+ isAssignableToTenant: true,
8668
+ isAccessControlPermission: false,
8669
+ isRolePermission: false,
8670
+ group: PermissionGroup.Telemetry,
8671
+ },
8672
+ {
8673
+ permission: Permission.ReadDockerHostOwnerUser,
8674
+ title: "Read Docker Host User Owner",
8675
+ description:
8676
+ "This permission can read Docker Host User Owner of this project.",
8677
+ isAssignableToTenant: true,
8678
+ isAccessControlPermission: false,
8679
+ isRolePermission: false,
8680
+ group: PermissionGroup.Telemetry,
8681
+ },
8682
+
8683
+ {
8684
+ permission: Permission.CreatePodmanHostOwnerUser,
8685
+ title: "Create Podman Host User Owner",
8686
+ description:
8687
+ "This permission can create Podman Host User Owner of this project.",
8688
+ isAssignableToTenant: true,
8689
+ isAccessControlPermission: false,
8690
+ isRolePermission: false,
8691
+ group: PermissionGroup.Telemetry,
8692
+ },
8693
+ {
8694
+ permission: Permission.DeletePodmanHostOwnerUser,
8695
+ title: "Delete Podman Host User Owner",
8696
+ description:
8697
+ "This permission can delete Podman Host User Owner of this project.",
8698
+ isAssignableToTenant: true,
8699
+ isAccessControlPermission: false,
8700
+ isRolePermission: false,
8701
+ group: PermissionGroup.Telemetry,
8702
+ },
8703
+ {
8704
+ permission: Permission.EditPodmanHostOwnerUser,
8705
+ title: "Edit Podman Host User Owner",
8706
+ description:
8707
+ "This permission can edit Podman Host User Owner of this project.",
8708
+ isAssignableToTenant: true,
8709
+ isAccessControlPermission: false,
8710
+ isRolePermission: false,
8711
+ group: PermissionGroup.Telemetry,
8712
+ },
8713
+ {
8714
+ permission: Permission.ReadPodmanHostOwnerUser,
8715
+ title: "Read Podman Host User Owner",
8716
+ description:
8717
+ "This permission can read Podman Host User Owner of this project.",
8718
+ isAssignableToTenant: true,
8719
+ isAccessControlPermission: false,
8720
+ isRolePermission: false,
8721
+ group: PermissionGroup.Telemetry,
8722
+ },
8723
+
8724
+ {
8725
+ permission: Permission.CreateHost,
8726
+ title: "Create Host",
8727
+ description: "This permission can create Host in this project.",
8728
+ isAssignableToTenant: true,
8729
+ isAccessControlPermission: false,
8730
+ isRolePermission: false,
8731
+ group: PermissionGroup.Telemetry,
8732
+ },
8733
+ {
8734
+ permission: Permission.DeleteHost,
8735
+ title: "Delete Host",
8736
+ description: "This permission can delete Host of this project.",
8737
+ isAssignableToTenant: true,
8738
+ isAccessControlPermission: true,
8739
+ isRolePermission: false,
8740
+ group: PermissionGroup.Telemetry,
8741
+ },
8742
+ {
8743
+ permission: Permission.EditHost,
8744
+ title: "Edit Host",
8745
+ description: "This permission can edit Host of this project.",
8746
+ isAssignableToTenant: true,
8747
+ isAccessControlPermission: true,
8748
+ isRolePermission: false,
8749
+ group: PermissionGroup.Telemetry,
8750
+ },
8751
+ {
8752
+ permission: Permission.ReadHost,
8753
+ title: "Read Host",
8754
+ description: "This permission can read Host of this project.",
8755
+ isAssignableToTenant: true,
8756
+ isAccessControlPermission: true,
8757
+ isRolePermission: false,
8758
+ group: PermissionGroup.Telemetry,
8759
+ },
8760
+
8761
+ {
8762
+ permission: Permission.CreateHostOwnerTeam,
8763
+ title: "Create Host Team Owner",
8764
+ description:
8765
+ "This permission can create Host Team Owner of this project.",
8766
+ isAssignableToTenant: true,
8767
+ isAccessControlPermission: false,
8768
+ isRolePermission: false,
8769
+ group: PermissionGroup.Telemetry,
8770
+ },
8771
+ {
8772
+ permission: Permission.DeleteHostOwnerTeam,
8773
+ title: "Delete Host Team Owner",
8774
+ description:
8775
+ "This permission can delete Host Team Owner of this project.",
8776
+ isAssignableToTenant: true,
8777
+ isAccessControlPermission: false,
8778
+ isRolePermission: false,
8779
+ group: PermissionGroup.Telemetry,
8780
+ },
8781
+ {
8782
+ permission: Permission.EditHostOwnerTeam,
8783
+ title: "Edit Host Team Owner",
8784
+ description:
8785
+ "This permission can edit Host Team Owner of this project.",
8786
+ isAssignableToTenant: true,
8787
+ isAccessControlPermission: false,
8788
+ isRolePermission: false,
8789
+ group: PermissionGroup.Telemetry,
8790
+ },
8791
+ {
8792
+ permission: Permission.ReadHostOwnerTeam,
8793
+ title: "Read Host Team Owner",
8794
+ description:
8795
+ "This permission can read Host Team Owner of this project.",
8796
+ isAssignableToTenant: true,
8797
+ isAccessControlPermission: false,
8798
+ isRolePermission: false,
8799
+ group: PermissionGroup.Telemetry,
8800
+ },
8801
+
8802
+ {
8803
+ permission: Permission.CreateHostOwnerUser,
8804
+ title: "Create Host User Owner",
8805
+ description:
8806
+ "This permission can create Host User Owner of this project.",
8807
+ isAssignableToTenant: true,
8808
+ isAccessControlPermission: false,
8809
+ isRolePermission: false,
8810
+ group: PermissionGroup.Telemetry,
8811
+ },
8812
+ {
8813
+ permission: Permission.DeleteHostOwnerUser,
8814
+ title: "Delete Host User Owner",
8815
+ description:
8816
+ "This permission can delete Host User Owner of this project.",
8817
+ isAssignableToTenant: true,
8818
+ isAccessControlPermission: false,
8819
+ isRolePermission: false,
8820
+ group: PermissionGroup.Telemetry,
8821
+ },
8822
+ {
8823
+ permission: Permission.EditHostOwnerUser,
8824
+ title: "Edit Host User Owner",
8825
+ description:
8826
+ "This permission can edit Host User Owner of this project.",
8827
+ isAssignableToTenant: true,
8828
+ isAccessControlPermission: false,
8829
+ isRolePermission: false,
8830
+ group: PermissionGroup.Telemetry,
8831
+ },
8832
+ {
8833
+ permission: Permission.ReadHostOwnerUser,
8834
+ title: "Read Host User Owner",
8835
+ description:
8836
+ "This permission can read Host User Owner of this project.",
8837
+ isAssignableToTenant: true,
8838
+ isAccessControlPermission: false,
8839
+ isRolePermission: false,
8840
+ group: PermissionGroup.Telemetry,
8841
+ },
8842
+
8843
+ {
8844
+ permission: Permission.CreateService,
8845
+ title: "Create Service",
8846
+ description: "This permission can create Service in this project.",
8847
+ isAssignableToTenant: true,
8848
+ isAccessControlPermission: true,
8849
+ isRolePermission: false,
8850
+ group: PermissionGroup.ServiceCatalog,
8851
+ },
8852
+ {
8853
+ permission: Permission.DeleteService,
8854
+ title: "Delete Service",
8855
+ description: "This permission can delete Service of this project.",
8856
+ isAssignableToTenant: true,
8857
+ isAccessControlPermission: true,
8858
+ isRolePermission: false,
8859
+ group: PermissionGroup.ServiceCatalog,
8860
+ },
8861
+ {
8862
+ permission: Permission.EditService,
8863
+ title: "Edit Service",
8864
+ description: "This permission can edit Service of this project.",
8865
+ isAssignableToTenant: true,
8866
+ isAccessControlPermission: true,
8867
+ isRolePermission: false,
8868
+ group: PermissionGroup.ServiceCatalog,
8869
+ },
8870
+ {
8871
+ permission: Permission.ReadService,
8872
+ title: "Read Service",
8873
+ description: "This permission can read Service of this project.",
8874
+ isAssignableToTenant: true,
8875
+ isAccessControlPermission: true,
8876
+ isRolePermission: false,
8877
+ group: PermissionGroup.ServiceCatalog,
8878
+ },
8879
+
8880
+ {
8881
+ permission: Permission.CreateServiceTelemetryService,
8882
+ title: "Create Service Telemetry Service",
8883
+ description:
8884
+ "This permission can create Service Telemetry Service in this project.",
8885
+ isAssignableToTenant: true,
8886
+ isAccessControlPermission: false,
8887
+ isRolePermission: false,
8888
+ group: PermissionGroup.ServiceCatalog,
8889
+ },
8890
+ {
8891
+ permission: Permission.DeleteServiceTelemetryService,
8892
+ title: "Delete Service Telemetry Service",
8893
+ description:
8894
+ "This permission can delete Service Telemetry Service of this project.",
8895
+ isAssignableToTenant: true,
8896
+ isAccessControlPermission: false,
8897
+ isRolePermission: false,
8898
+ group: PermissionGroup.ServiceCatalog,
8899
+ },
8900
+ {
8901
+ permission: Permission.EditServiceTelemetryService,
8902
+ title: "Edit Service Telemetry Service",
8903
+ description:
8904
+ "This permission can edit Service Telemetry Service of this project.",
8905
+ isAssignableToTenant: true,
8906
+ isAccessControlPermission: false,
8907
+ isRolePermission: false,
8908
+ group: PermissionGroup.ServiceCatalog,
8909
+ },
8910
+ {
8911
+ permission: Permission.ReadServiceTelemetryService,
8912
+ title: "Read Service Telemetry Service",
8913
+ description:
8914
+ "This permission can read Service Telemetry Service of this project.",
8915
+ isAssignableToTenant: true,
8916
+ isAccessControlPermission: false,
8917
+ isRolePermission: false,
8918
+ group: PermissionGroup.ServiceCatalog,
8919
+ },
8920
+
8921
+ {
8922
+ permission: Permission.CreateServiceCodeRepository,
8923
+ title: "Create Service Code Repository",
8924
+ description:
8925
+ "This permission can create Service Code Repository in this project.",
8339
8926
  isAssignableToTenant: true,
8340
8927
  isAccessControlPermission: false,
8341
8928
  isRolePermission: false,
@@ -9897,6 +10484,48 @@ export class PermissionHelper {
9897
10484
  group: PermissionGroup.Telemetry,
9898
10485
  },
9899
10486
 
10487
+ // Podman Host Owner Rule Permissions
10488
+ {
10489
+ permission: Permission.CreatePodmanHostOwnerRule,
10490
+ title: "Create Podman Host Owner Rule",
10491
+ description:
10492
+ "This permission can create Podman Host Owner Rules in this project.",
10493
+ isAssignableToTenant: true,
10494
+ isAccessControlPermission: false,
10495
+ isRolePermission: false,
10496
+ group: PermissionGroup.Telemetry,
10497
+ },
10498
+ {
10499
+ permission: Permission.DeletePodmanHostOwnerRule,
10500
+ title: "Delete Podman Host Owner Rule",
10501
+ description:
10502
+ "This permission can delete Podman Host Owner Rules of this project.",
10503
+ isAssignableToTenant: true,
10504
+ isAccessControlPermission: false,
10505
+ isRolePermission: false,
10506
+ group: PermissionGroup.Telemetry,
10507
+ },
10508
+ {
10509
+ permission: Permission.EditPodmanHostOwnerRule,
10510
+ title: "Edit Podman Host Owner Rule",
10511
+ description:
10512
+ "This permission can edit Podman Host Owner Rules of this project.",
10513
+ isAssignableToTenant: true,
10514
+ isAccessControlPermission: false,
10515
+ isRolePermission: false,
10516
+ group: PermissionGroup.Telemetry,
10517
+ },
10518
+ {
10519
+ permission: Permission.ReadPodmanHostOwnerRule,
10520
+ title: "Read Podman Host Owner Rule",
10521
+ description:
10522
+ "This permission can read Podman Host Owner Rules of this project.",
10523
+ isAssignableToTenant: true,
10524
+ isAccessControlPermission: false,
10525
+ isRolePermission: false,
10526
+ group: PermissionGroup.Telemetry,
10527
+ },
10528
+
9900
10529
  // Docker Host Label Rule Permissions
9901
10530
  {
9902
10531
  permission: Permission.CreateDockerHostLabelRule,
@@ -9939,6 +10568,48 @@ export class PermissionHelper {
9939
10568
  group: PermissionGroup.Telemetry,
9940
10569
  },
9941
10570
 
10571
+ // Podman Host Label Rule Permissions
10572
+ {
10573
+ permission: Permission.CreatePodmanHostLabelRule,
10574
+ title: "Create Podman Host Label Rule",
10575
+ description:
10576
+ "This permission can create Podman Host Label Rules in this project.",
10577
+ isAssignableToTenant: true,
10578
+ isAccessControlPermission: false,
10579
+ isRolePermission: false,
10580
+ group: PermissionGroup.Telemetry,
10581
+ },
10582
+ {
10583
+ permission: Permission.DeletePodmanHostLabelRule,
10584
+ title: "Delete Podman Host Label Rule",
10585
+ description:
10586
+ "This permission can delete Podman Host Label Rules of this project.",
10587
+ isAssignableToTenant: true,
10588
+ isAccessControlPermission: false,
10589
+ isRolePermission: false,
10590
+ group: PermissionGroup.Telemetry,
10591
+ },
10592
+ {
10593
+ permission: Permission.EditPodmanHostLabelRule,
10594
+ title: "Edit Podman Host Label Rule",
10595
+ description:
10596
+ "This permission can edit Podman Host Label Rules of this project.",
10597
+ isAssignableToTenant: true,
10598
+ isAccessControlPermission: false,
10599
+ isRolePermission: false,
10600
+ group: PermissionGroup.Telemetry,
10601
+ },
10602
+ {
10603
+ permission: Permission.ReadPodmanHostLabelRule,
10604
+ title: "Read Podman Host Label Rule",
10605
+ description:
10606
+ "This permission can read Podman Host Label Rules of this project.",
10607
+ isAssignableToTenant: true,
10608
+ isAccessControlPermission: false,
10609
+ isRolePermission: false,
10610
+ group: PermissionGroup.Telemetry,
10611
+ },
10612
+
9942
10613
  // Kubernetes Cluster Owner Rule Permissions
9943
10614
  {
9944
10615
  permission: Permission.CreateKubernetesClusterOwnerRule,
@@ -10023,6 +10694,260 @@ export class PermissionHelper {
10023
10694
  group: PermissionGroup.Telemetry,
10024
10695
  },
10025
10696
 
10697
+ /*
10698
+ * Proxmox Cluster Owner Rule Permissions
10699
+ * Docker Swarm Cluster Owner Rule Permissions
10700
+ */
10701
+ {
10702
+ permission: Permission.CreateProxmoxClusterOwnerRule,
10703
+ title: "Create Proxmox Cluster Owner Rule",
10704
+ description:
10705
+ "This permission can create Proxmox Cluster Owner Rules in this project.",
10706
+ isAssignableToTenant: true,
10707
+ isAccessControlPermission: false,
10708
+ isRolePermission: false,
10709
+ group: PermissionGroup.Telemetry,
10710
+ },
10711
+ {
10712
+ permission: Permission.CreateDockerSwarmClusterOwnerRule,
10713
+ title: "Create Docker Swarm Cluster Owner Rule",
10714
+ description:
10715
+ "This permission can create Docker Swarm Cluster Owner Rules in this project.",
10716
+ isAssignableToTenant: true,
10717
+ isAccessControlPermission: false,
10718
+ isRolePermission: false,
10719
+ group: PermissionGroup.Telemetry,
10720
+ },
10721
+ {
10722
+ permission: Permission.DeleteProxmoxClusterOwnerRule,
10723
+ title: "Delete Proxmox Cluster Owner Rule",
10724
+ description:
10725
+ "This permission can delete Proxmox Cluster Owner Rules of this project.",
10726
+ isAssignableToTenant: true,
10727
+ isAccessControlPermission: false,
10728
+ isRolePermission: false,
10729
+ group: PermissionGroup.Telemetry,
10730
+ },
10731
+ {
10732
+ permission: Permission.DeleteDockerSwarmClusterOwnerRule,
10733
+ title: "Delete Docker Swarm Cluster Owner Rule",
10734
+ description:
10735
+ "This permission can delete Docker Swarm Cluster Owner Rules of this project.",
10736
+ isAssignableToTenant: true,
10737
+ isAccessControlPermission: false,
10738
+ isRolePermission: false,
10739
+ group: PermissionGroup.Telemetry,
10740
+ },
10741
+ {
10742
+ permission: Permission.EditProxmoxClusterOwnerRule,
10743
+ title: "Edit Proxmox Cluster Owner Rule",
10744
+ description:
10745
+ "This permission can edit Proxmox Cluster Owner Rules of this project.",
10746
+ isAssignableToTenant: true,
10747
+ isAccessControlPermission: false,
10748
+ isRolePermission: false,
10749
+ group: PermissionGroup.Telemetry,
10750
+ },
10751
+ {
10752
+ permission: Permission.EditDockerSwarmClusterOwnerRule,
10753
+ title: "Edit Docker Swarm Cluster Owner Rule",
10754
+ description:
10755
+ "This permission can edit Docker Swarm Cluster Owner Rules of this project.",
10756
+ isAssignableToTenant: true,
10757
+ isAccessControlPermission: false,
10758
+ isRolePermission: false,
10759
+ group: PermissionGroup.Telemetry,
10760
+ },
10761
+ {
10762
+ permission: Permission.ReadProxmoxClusterOwnerRule,
10763
+ title: "Read Proxmox Cluster Owner Rule",
10764
+ description:
10765
+ "This permission can read Proxmox Cluster Owner Rules of this project.",
10766
+ isAssignableToTenant: true,
10767
+ isAccessControlPermission: false,
10768
+ isRolePermission: false,
10769
+ group: PermissionGroup.Telemetry,
10770
+ },
10771
+ {
10772
+ permission: Permission.ReadDockerSwarmClusterOwnerRule,
10773
+ title: "Read Docker Swarm Cluster Owner Rule",
10774
+ description:
10775
+ "This permission can read Docker Swarm Cluster Owner Rules of this project.",
10776
+ isAssignableToTenant: true,
10777
+ isAccessControlPermission: false,
10778
+ isRolePermission: false,
10779
+ group: PermissionGroup.Telemetry,
10780
+ },
10781
+
10782
+ /*
10783
+ * Proxmox Cluster Label Rule Permissions
10784
+ * Docker Swarm Cluster Label Rule Permissions
10785
+ */
10786
+ {
10787
+ permission: Permission.CreateProxmoxClusterLabelRule,
10788
+ title: "Create Proxmox Cluster Label Rule",
10789
+ description:
10790
+ "This permission can create Proxmox Cluster Label Rules in this project.",
10791
+ isAssignableToTenant: true,
10792
+ isAccessControlPermission: false,
10793
+ isRolePermission: false,
10794
+ group: PermissionGroup.Telemetry,
10795
+ },
10796
+ {
10797
+ permission: Permission.CreateDockerSwarmClusterLabelRule,
10798
+ title: "Create Docker Swarm Cluster Label Rule",
10799
+ description:
10800
+ "This permission can create Docker Swarm Cluster Label Rules in this project.",
10801
+ isAssignableToTenant: true,
10802
+ isAccessControlPermission: false,
10803
+ isRolePermission: false,
10804
+ group: PermissionGroup.Telemetry,
10805
+ },
10806
+ {
10807
+ permission: Permission.DeleteProxmoxClusterLabelRule,
10808
+ title: "Delete Proxmox Cluster Label Rule",
10809
+ description:
10810
+ "This permission can delete Proxmox Cluster Label Rules of this project.",
10811
+ isAssignableToTenant: true,
10812
+ isAccessControlPermission: false,
10813
+ isRolePermission: false,
10814
+ group: PermissionGroup.Telemetry,
10815
+ },
10816
+ {
10817
+ permission: Permission.DeleteDockerSwarmClusterLabelRule,
10818
+ title: "Delete Docker Swarm Cluster Label Rule",
10819
+ description:
10820
+ "This permission can delete Docker Swarm Cluster Label Rules of this project.",
10821
+ isAssignableToTenant: true,
10822
+ isAccessControlPermission: false,
10823
+ isRolePermission: false,
10824
+ group: PermissionGroup.Telemetry,
10825
+ },
10826
+ {
10827
+ permission: Permission.EditProxmoxClusterLabelRule,
10828
+ title: "Edit Proxmox Cluster Label Rule",
10829
+ description:
10830
+ "This permission can edit Proxmox Cluster Label Rules of this project.",
10831
+ isAssignableToTenant: true,
10832
+ isAccessControlPermission: false,
10833
+ isRolePermission: false,
10834
+ group: PermissionGroup.Telemetry,
10835
+ },
10836
+ {
10837
+ permission: Permission.EditDockerSwarmClusterLabelRule,
10838
+ title: "Edit Docker Swarm Cluster Label Rule",
10839
+ description:
10840
+ "This permission can edit Docker Swarm Cluster Label Rules of this project.",
10841
+ isAssignableToTenant: true,
10842
+ isAccessControlPermission: false,
10843
+ isRolePermission: false,
10844
+ group: PermissionGroup.Telemetry,
10845
+ },
10846
+ {
10847
+ permission: Permission.ReadProxmoxClusterLabelRule,
10848
+ title: "Read Proxmox Cluster Label Rule",
10849
+ description:
10850
+ "This permission can read Proxmox Cluster Label Rules of this project.",
10851
+ isAssignableToTenant: true,
10852
+ isAccessControlPermission: false,
10853
+ isRolePermission: false,
10854
+ group: PermissionGroup.Telemetry,
10855
+ },
10856
+ {
10857
+ permission: Permission.ReadDockerSwarmClusterLabelRule,
10858
+ title: "Read Docker Swarm Cluster Label Rule",
10859
+ description:
10860
+ "This permission can read Docker Swarm Cluster Label Rules of this project.",
10861
+ isAssignableToTenant: true,
10862
+ isAccessControlPermission: false,
10863
+ isRolePermission: false,
10864
+ group: PermissionGroup.Telemetry,
10865
+ },
10866
+
10867
+ // Ceph Cluster Owner Rule Permissions
10868
+ {
10869
+ permission: Permission.CreateCephClusterOwnerRule,
10870
+ title: "Create Ceph Cluster Owner Rule",
10871
+ description:
10872
+ "This permission can create Ceph Cluster Owner Rules in this project.",
10873
+ isAssignableToTenant: true,
10874
+ isAccessControlPermission: false,
10875
+ isRolePermission: false,
10876
+ group: PermissionGroup.Telemetry,
10877
+ },
10878
+ {
10879
+ permission: Permission.DeleteCephClusterOwnerRule,
10880
+ title: "Delete Ceph Cluster Owner Rule",
10881
+ description:
10882
+ "This permission can delete Ceph Cluster Owner Rules of this project.",
10883
+ isAssignableToTenant: true,
10884
+ isAccessControlPermission: false,
10885
+ isRolePermission: false,
10886
+ group: PermissionGroup.Telemetry,
10887
+ },
10888
+ {
10889
+ permission: Permission.EditCephClusterOwnerRule,
10890
+ title: "Edit Ceph Cluster Owner Rule",
10891
+ description:
10892
+ "This permission can edit Ceph Cluster Owner Rules of this project.",
10893
+ isAssignableToTenant: true,
10894
+ isAccessControlPermission: false,
10895
+ isRolePermission: false,
10896
+ group: PermissionGroup.Telemetry,
10897
+ },
10898
+ {
10899
+ permission: Permission.ReadCephClusterOwnerRule,
10900
+ title: "Read Ceph Cluster Owner Rule",
10901
+ description:
10902
+ "This permission can read Ceph Cluster Owner Rules of this project.",
10903
+ isAssignableToTenant: true,
10904
+ isAccessControlPermission: false,
10905
+ isRolePermission: false,
10906
+ group: PermissionGroup.Telemetry,
10907
+ },
10908
+
10909
+ // Ceph Cluster Label Rule Permissions
10910
+ {
10911
+ permission: Permission.CreateCephClusterLabelRule,
10912
+ title: "Create Ceph Cluster Label Rule",
10913
+ description:
10914
+ "This permission can create Ceph Cluster Label Rules in this project.",
10915
+ isAssignableToTenant: true,
10916
+ isAccessControlPermission: false,
10917
+ isRolePermission: false,
10918
+ group: PermissionGroup.Telemetry,
10919
+ },
10920
+ {
10921
+ permission: Permission.DeleteCephClusterLabelRule,
10922
+ title: "Delete Ceph Cluster Label Rule",
10923
+ description:
10924
+ "This permission can delete Ceph Cluster Label Rules of this project.",
10925
+ isAssignableToTenant: true,
10926
+ isAccessControlPermission: false,
10927
+ isRolePermission: false,
10928
+ group: PermissionGroup.Telemetry,
10929
+ },
10930
+ {
10931
+ permission: Permission.EditCephClusterLabelRule,
10932
+ title: "Edit Ceph Cluster Label Rule",
10933
+ description:
10934
+ "This permission can edit Ceph Cluster Label Rules of this project.",
10935
+ isAssignableToTenant: true,
10936
+ isAccessControlPermission: false,
10937
+ isRolePermission: false,
10938
+ group: PermissionGroup.Telemetry,
10939
+ },
10940
+ {
10941
+ permission: Permission.ReadCephClusterLabelRule,
10942
+ title: "Read Ceph Cluster Label Rule",
10943
+ description:
10944
+ "This permission can read Ceph Cluster Label Rules of this project.",
10945
+ isAssignableToTenant: true,
10946
+ isAccessControlPermission: false,
10947
+ isRolePermission: false,
10948
+ group: PermissionGroup.Telemetry,
10949
+ },
10950
+
10026
10951
  // Runbook Owner Rule Permissions
10027
10952
  {
10028
10953
  permission: Permission.CreateRunbookOwnerRule,