@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.
- package/Models/DatabaseModels/Alert.ts +276 -0
- package/Models/DatabaseModels/AlertLabelRule.ts +38 -0
- package/Models/DatabaseModels/AlertOwnerRule.ts +38 -0
- package/Models/DatabaseModels/CephCluster.ts +964 -0
- package/Models/DatabaseModels/CephClusterLabelRule.ts +514 -0
- package/Models/DatabaseModels/CephClusterOwnerRule.ts +596 -0
- package/Models/DatabaseModels/CephClusterOwnerTeam.ts +487 -0
- package/Models/DatabaseModels/CephClusterOwnerUser.ts +486 -0
- package/Models/DatabaseModels/CephResource.ts +809 -0
- package/Models/DatabaseModels/DockerSwarmCluster.ts +989 -0
- package/Models/DatabaseModels/DockerSwarmClusterLabelRule.ts +514 -0
- package/Models/DatabaseModels/DockerSwarmClusterOwnerRule.ts +596 -0
- package/Models/DatabaseModels/DockerSwarmClusterOwnerTeam.ts +487 -0
- package/Models/DatabaseModels/DockerSwarmClusterOwnerUser.ts +486 -0
- package/Models/DatabaseModels/DockerSwarmResource.ts +750 -0
- package/Models/DatabaseModels/Host.ts +64 -0
- package/Models/DatabaseModels/Incident.ts +276 -0
- package/Models/DatabaseModels/IncidentLabelRule.ts +38 -0
- package/Models/DatabaseModels/IncidentOwnerRule.ts +38 -0
- package/Models/DatabaseModels/IncidentTemplate.ts +56 -0
- package/Models/DatabaseModels/Index.ts +48 -0
- package/Models/DatabaseModels/PodmanHost.ts +859 -0
- package/Models/DatabaseModels/PodmanHostLabelRule.ts +514 -0
- package/Models/DatabaseModels/PodmanHostOwnerRule.ts +596 -0
- package/Models/DatabaseModels/PodmanHostOwnerTeam.ts +487 -0
- package/Models/DatabaseModels/PodmanHostOwnerUser.ts +486 -0
- package/Models/DatabaseModels/PodmanResource.ts +498 -0
- package/Models/DatabaseModels/ProxmoxCluster.ts +943 -0
- package/Models/DatabaseModels/ProxmoxClusterLabelRule.ts +514 -0
- package/Models/DatabaseModels/ProxmoxClusterOwnerRule.ts +596 -0
- package/Models/DatabaseModels/ProxmoxClusterOwnerTeam.ts +487 -0
- package/Models/DatabaseModels/ProxmoxClusterOwnerUser.ts +486 -0
- package/Models/DatabaseModels/ProxmoxResource.ts +726 -0
- package/Models/DatabaseModels/ScheduledMaintenance.ts +220 -0
- package/Models/DatabaseModels/ScheduledMaintenanceLabelRule.ts +38 -0
- package/Models/DatabaseModels/ScheduledMaintenanceOwnerRule.ts +38 -0
- package/Models/DatabaseModels/ScheduledMaintenanceTemplate.ts +56 -0
- package/Models/DatabaseModels/TelemetryException.ts +2 -0
- package/Server/API/BillingInvoiceAPI.ts +47 -7
- package/Server/API/CephResourceAPI.ts +134 -0
- package/Server/API/DashboardAPI.ts +135 -0
- package/Server/API/DockerSwarmResourceAPI.ts +137 -0
- package/Server/API/ProjectAPI.ts +15 -0
- package/Server/API/ProxmoxResourceAPI.ts +132 -0
- package/Server/API/ResellerPlanAPI.ts +17 -0
- package/Server/API/TelemetryAPI.ts +8 -1
- package/Server/Infrastructure/GlobalCache.ts +8 -2
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.ts +163 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781587937032-MigrationName.ts +3199 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781600000000-AddProxmoxCephV2Columns.ts +211 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781600000001-AddProxmoxCephActivityAndRules.ts +590 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781700000000-AddProxmoxCephV3Columns.ts +64 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +10 -0
- package/Server/Infrastructure/Redis.ts +40 -12
- package/Server/Services/AlertLabelRuleEngineService.ts +29 -0
- package/Server/Services/AlertOwnerRuleEngineService.ts +67 -0
- package/Server/Services/AnalyticsDatabaseService.ts +1 -1
- package/Server/Services/BillingService.ts +109 -21
- package/Server/Services/CephClusterLabelRuleEngineService.ts +200 -0
- package/Server/Services/CephClusterLabelRuleService.ts +14 -0
- package/Server/Services/CephClusterOwnerRuleEngineService.ts +218 -0
- package/Server/Services/CephClusterOwnerRuleService.ts +14 -0
- package/Server/Services/CephClusterOwnerTeamService.ts +10 -0
- package/Server/Services/CephClusterOwnerUserService.ts +10 -0
- package/Server/Services/CephClusterService.ts +401 -0
- package/Server/Services/CephResourceService.ts +383 -0
- package/Server/Services/CloudResourceService.ts +11 -3
- package/Server/Services/DockerHostService.ts +11 -3
- package/Server/Services/DockerSwarmClusterLabelRuleEngineService.ts +214 -0
- package/Server/Services/DockerSwarmClusterLabelRuleService.ts +14 -0
- package/Server/Services/DockerSwarmClusterOwnerRuleEngineService.ts +232 -0
- package/Server/Services/DockerSwarmClusterOwnerRuleService.ts +14 -0
- package/Server/Services/DockerSwarmClusterOwnerTeamService.ts +10 -0
- package/Server/Services/DockerSwarmClusterOwnerUserService.ts +10 -0
- package/Server/Services/DockerSwarmClusterService.ts +404 -0
- package/Server/Services/DockerSwarmResourceService.ts +381 -0
- package/Server/Services/ExceptionAggregationService.ts +3 -0
- package/Server/Services/HostService.ts +11 -3
- package/Server/Services/IncidentLabelRuleEngineService.ts +27 -0
- package/Server/Services/IncidentOwnerRuleEngineService.ts +67 -0
- package/Server/Services/IncidentService.ts +11 -0
- package/Server/Services/Index.ts +38 -0
- package/Server/Services/KubernetesClusterService.ts +11 -3
- package/Server/Services/LogAggregationService.ts +3 -0
- package/Server/Services/MetricAggregationService.ts +3 -0
- package/Server/Services/OpenTelemetryIngestService.ts +73 -0
- package/Server/Services/PodmanHostLabelRuleEngineService.ts +198 -0
- package/Server/Services/PodmanHostLabelRuleService.ts +14 -0
- package/Server/Services/PodmanHostOwnerRuleEngineService.ts +216 -0
- package/Server/Services/PodmanHostOwnerRuleService.ts +14 -0
- package/Server/Services/PodmanHostOwnerTeamService.ts +10 -0
- package/Server/Services/PodmanHostOwnerUserService.ts +10 -0
- package/Server/Services/PodmanHostService.ts +368 -0
- package/Server/Services/PodmanResourceService.ts +310 -0
- package/Server/Services/ProxmoxClusterLabelRuleEngineService.ts +204 -0
- package/Server/Services/ProxmoxClusterLabelRuleService.ts +14 -0
- package/Server/Services/ProxmoxClusterOwnerRuleEngineService.ts +222 -0
- package/Server/Services/ProxmoxClusterOwnerRuleService.ts +14 -0
- package/Server/Services/ProxmoxClusterOwnerTeamService.ts +10 -0
- package/Server/Services/ProxmoxClusterOwnerUserService.ts +10 -0
- package/Server/Services/ProxmoxClusterService.ts +382 -0
- package/Server/Services/ProxmoxResourceService.ts +404 -0
- package/Server/Services/RumApplicationService.ts +11 -3
- package/Server/Services/ScheduledMaintenanceLabelRuleEngineService.ts +29 -0
- package/Server/Services/ScheduledMaintenanceOwnerRuleEngineService.ts +67 -0
- package/Server/Services/ServerlessFunctionService.ts +11 -3
- package/Server/Services/TelemetryUsageBillingService.ts +59 -3
- package/Server/Services/TraceAggregationService.ts +3 -0
- package/Server/Types/AnalyticsDatabase/AggregateBy.ts +8 -23
- package/Server/Types/Database/Permissions/OwnerTableRegistry.ts +13 -0
- package/Server/Utils/Monitor/MonitorAlert.ts +55 -0
- package/Server/Utils/Monitor/MonitorClusterContext.ts +158 -0
- package/Server/Utils/Monitor/MonitorCriteriaEvaluator.ts +650 -4
- package/Server/Utils/Monitor/MonitorIncident.ts +175 -7
- package/Server/Utils/Monitor/MonitorMaintenanceSuppression.ts +56 -6
- package/Server/Utils/Monitor/MonitorTemplateUtil.ts +6 -1
- package/Server/Utils/Monitor/SeriesResourceLabels.ts +59 -0
- package/Server/Utils/Profiling.ts +37 -2
- package/Server/Utils/Telemetry/EntityRegistry.ts +4 -0
- package/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.ts +1096 -0
- package/Server/Utils/Telemetry/ResourceFacetResolver.ts +49 -0
- package/Server/Utils/Telemetry/Telemetry.ts +10 -0
- package/Server/Utils/Telemetry/TelemetryEntity.ts +107 -0
- package/Server/Utils/Telemetry.ts +8 -19
- package/Tests/Server/API/BillingInvoiceAPI.test.ts +194 -0
- package/Tests/Server/API/ProjectAPI.test.ts +91 -0
- package/Tests/Server/API/ResellerPlanAPI.test.ts +207 -0
- package/Tests/Server/Infrastructure/GlobalCache.test.ts +100 -0
- package/Tests/Server/Services/BillingService.test.ts +323 -0
- package/Tests/Server/Services/CephResourceService.test.ts +264 -0
- package/Tests/Server/Services/ProxmoxResourceService.test.ts +326 -0
- package/Tests/Server/Utils/Monitor/MonitorCriteriaEvaluator.test.ts +322 -0
- package/Tests/Server/Utils/Monitor/MonitorMaintenanceSuppression.test.ts +14 -0
- package/Tests/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.test.ts +879 -0
- package/Tests/Server/Utils/Telemetry/TelemetryEntity.test.ts +196 -0
- package/Tests/Types/DockerSwarm/DockerSwarmInventoryExtractor.test.ts +667 -0
- package/Tests/Types/Monitor/CephAlertTemplates.test.ts +1231 -0
- package/Tests/Types/Monitor/DockerSwarmAlertTemplates.test.ts +528 -0
- package/Tests/Types/Monitor/ProxmoxAlertTemplates.test.ts +732 -0
- package/Tests/Utils/Telemetry/EntityRelationship.test.ts +49 -0
- package/Tests/Utils/Telemetry/HeartbeatAvailability.test.ts +423 -0
- package/Types/BaseDatabase/AggregationIntervalUtil.ts +74 -0
- package/Types/Dashboard/DashboardComponentType.ts +11 -0
- package/Types/Dashboard/DashboardComponents/ComponentArgument.ts +4 -0
- package/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.ts +14 -0
- package/Types/Dashboard/DashboardComponents/DashboardDockerSwarmNodeListComponent.ts +17 -0
- package/Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent.ts +17 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent.ts +16 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanHostListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanImageListComponent.ts +16 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanNetworkListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanVolumeListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.ts +17 -0
- package/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.ts +16 -0
- package/Types/Dashboard/DashboardTemplates.ts +640 -0
- package/Types/DockerSwarm/DockerSwarmInventoryExtractor.ts +452 -0
- package/Types/Icon/IconProp.ts +3 -0
- package/Types/Monitor/CephAlertTemplates.ts +1647 -0
- package/Types/Monitor/CephMetricCatalog.ts +409 -0
- package/Types/Monitor/DockerSwarmAlertTemplates.ts +461 -0
- package/Types/Monitor/DockerSwarmMetricCatalog.ts +139 -0
- package/Types/Monitor/HostAlertTemplates.ts +455 -0
- package/Types/Monitor/HostMetricCatalog.ts +177 -0
- package/Types/Monitor/MetricMonitor/MetricMonitorResponse.ts +65 -0
- package/Types/Monitor/MonitorStep.ts +163 -0
- package/Types/Monitor/MonitorStepCephMonitor.ts +57 -0
- package/Types/Monitor/MonitorStepDockerSwarmMonitor.ts +74 -0
- package/Types/Monitor/MonitorStepHostMonitor.ts +30 -0
- package/Types/Monitor/MonitorStepPodmanMonitor.ts +38 -0
- package/Types/Monitor/MonitorStepProxmoxMonitor.ts +81 -0
- package/Types/Monitor/MonitorType.ts +71 -1
- package/Types/Monitor/PodmanAlertTemplates.ts +507 -0
- package/Types/Monitor/PodmanMetricCatalog.ts +226 -0
- package/Types/Monitor/ProxmoxAlertTemplates.ts +899 -0
- package/Types/Monitor/ProxmoxMetricCatalog.ts +382 -0
- package/Types/Permission.ts +1029 -104
- package/Types/Podman/PodmanInventoryExtractor.ts +343 -0
- package/Types/Telemetry/EntityType.ts +23 -0
- package/Types/Telemetry/ServiceType.ts +4 -0
- package/UI/Components/Icon/Icon.tsx +141 -0
- package/UI/Components/LogsViewer/LogsViewer.tsx +44 -1
- package/UI/Components/LogsViewer/components/LogsFacetSidebar.tsx +28 -0
- package/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.ts +15 -5
- package/UI/Utils/Telemetry/Telemetry.ts +16 -21
- package/UI/Utils/TelemetryService.ts +8 -3
- package/Utils/Dashboard/Components/DashboardCephOsdListComponent.ts +63 -0
- package/Utils/Dashboard/Components/DashboardCephPoolListComponent.ts +32 -0
- package/Utils/Dashboard/Components/DashboardCephResourceListShared.ts +61 -0
- package/Utils/Dashboard/Components/DashboardDockerSwarmNodeListComponent.ts +70 -0
- package/Utils/Dashboard/Components/DashboardDockerSwarmResourceListShared.ts +61 -0
- package/Utils/Dashboard/Components/DashboardDockerSwarmServiceListComponent.ts +71 -0
- package/Utils/Dashboard/Components/DashboardPodmanContainerListComponent.ts +100 -0
- package/Utils/Dashboard/Components/DashboardPodmanHostListComponent.ts +88 -0
- package/Utils/Dashboard/Components/DashboardPodmanImageListComponent.ts +97 -0
- package/Utils/Dashboard/Components/DashboardPodmanNetworkListComponent.ts +87 -0
- package/Utils/Dashboard/Components/DashboardPodmanVolumeListComponent.ts +87 -0
- package/Utils/Dashboard/Components/DashboardProxmoxGuestListComponent.ts +69 -0
- package/Utils/Dashboard/Components/DashboardProxmoxNodeListComponent.ts +55 -0
- package/Utils/Dashboard/Components/DashboardProxmoxResourceListShared.ts +61 -0
- package/Utils/Dashboard/Components/Index.ts +79 -0
- package/Utils/Telemetry/EntityKey.ts +53 -0
- package/Utils/Telemetry/EntityRelationship.ts +6 -0
- package/Utils/Telemetry/HeartbeatAvailability.ts +262 -0
- package/build/dist/Models/DatabaseModels/Alert.js +270 -0
- package/build/dist/Models/DatabaseModels/Alert.js.map +1 -1
- package/build/dist/Models/DatabaseModels/AlertLabelRule.js +39 -0
- package/build/dist/Models/DatabaseModels/AlertLabelRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/AlertOwnerRule.js +39 -0
- package/build/dist/Models/DatabaseModels/AlertOwnerRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/CephCluster.js +992 -0
- package/build/dist/Models/DatabaseModels/CephCluster.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephClusterLabelRule.js +522 -0
- package/build/dist/Models/DatabaseModels/CephClusterLabelRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerRule.js +603 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerTeam.js +503 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerUser.js +502 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephResource.js +846 -0
- package/build/dist/Models/DatabaseModels/CephResource.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmCluster.js +1018 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmCluster.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterLabelRule.js +522 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterLabelRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerRule.js +603 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerTeam.js +503 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerUser.js +502 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmResource.js +787 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmResource.js.map +1 -0
- package/build/dist/Models/DatabaseModels/Host.js +63 -0
- package/build/dist/Models/DatabaseModels/Host.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Incident.js +270 -0
- package/build/dist/Models/DatabaseModels/Incident.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentLabelRule.js +39 -0
- package/build/dist/Models/DatabaseModels/IncidentLabelRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentOwnerRule.js +39 -0
- package/build/dist/Models/DatabaseModels/IncidentOwnerRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentTemplate.js +54 -0
- package/build/dist/Models/DatabaseModels/IncidentTemplate.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Index.js +48 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/PodmanHost.js +885 -0
- package/build/dist/Models/DatabaseModels/PodmanHost.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanHostLabelRule.js +522 -0
- package/build/dist/Models/DatabaseModels/PodmanHostLabelRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerRule.js +603 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerTeam.js +503 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerUser.js +502 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanResource.js +526 -0
- package/build/dist/Models/DatabaseModels/PodmanResource.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxCluster.js +967 -0
- package/build/dist/Models/DatabaseModels/ProxmoxCluster.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterLabelRule.js +522 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterLabelRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerRule.js +603 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerTeam.js +503 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerUser.js +502 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxResource.js +761 -0
- package/build/dist/Models/DatabaseModels/ProxmoxResource.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js +216 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js.map +1 -1
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceLabelRule.js +39 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceLabelRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceOwnerRule.js +39 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceOwnerRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceTemplate.js +54 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceTemplate.js.map +1 -1
- package/build/dist/Models/DatabaseModels/TelemetryException.js +2 -0
- package/build/dist/Models/DatabaseModels/TelemetryException.js.map +1 -1
- package/build/dist/Server/API/BillingInvoiceAPI.js +35 -5
- package/build/dist/Server/API/BillingInvoiceAPI.js.map +1 -1
- package/build/dist/Server/API/CephResourceAPI.js +98 -0
- package/build/dist/Server/API/CephResourceAPI.js.map +1 -0
- package/build/dist/Server/API/DashboardAPI.js +135 -0
- package/build/dist/Server/API/DashboardAPI.js.map +1 -1
- package/build/dist/Server/API/DockerSwarmResourceAPI.js +100 -0
- package/build/dist/Server/API/DockerSwarmResourceAPI.js.map +1 -0
- package/build/dist/Server/API/ProjectAPI.js +11 -0
- package/build/dist/Server/API/ProjectAPI.js.map +1 -1
- package/build/dist/Server/API/ProxmoxResourceAPI.js +95 -0
- package/build/dist/Server/API/ProxmoxResourceAPI.js.map +1 -0
- package/build/dist/Server/API/ResellerPlanAPI.js +17 -3
- package/build/dist/Server/API/ResellerPlanAPI.js.map +1 -1
- package/build/dist/Server/API/TelemetryAPI.js +8 -1
- package/build/dist/Server/API/TelemetryAPI.js.map +1 -1
- package/build/dist/Server/Infrastructure/GlobalCache.js +7 -2
- package/build/dist/Server/Infrastructure/GlobalCache.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.js +76 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781587937032-MigrationName.js +1100 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781587937032-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000000-AddProxmoxCephV2Columns.js +108 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000000-AddProxmoxCephV2Columns.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000001-AddProxmoxCephActivityAndRules.js +253 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000001-AddProxmoxCephActivityAndRules.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781700000000-AddProxmoxCephV3Columns.js +43 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781700000000-AddProxmoxCephV3Columns.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +10 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Infrastructure/Redis.js +31 -8
- package/build/dist/Server/Infrastructure/Redis.js.map +1 -1
- package/build/dist/Server/Services/AlertLabelRuleEngineService.js +30 -4
- package/build/dist/Server/Services/AlertLabelRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/AlertOwnerRuleEngineService.js +62 -5
- package/build/dist/Server/Services/AlertOwnerRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/AnalyticsDatabaseService.js +1 -1
- package/build/dist/Server/Services/AnalyticsDatabaseService.js.map +1 -1
- package/build/dist/Server/Services/BillingService.js +85 -23
- package/build/dist/Server/Services/BillingService.js.map +1 -1
- package/build/dist/Server/Services/CephClusterLabelRuleEngineService.js +166 -0
- package/build/dist/Server/Services/CephClusterLabelRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterLabelRuleService.js +13 -0
- package/build/dist/Server/Services/CephClusterLabelRuleService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterOwnerRuleEngineService.js +186 -0
- package/build/dist/Server/Services/CephClusterOwnerRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterOwnerRuleService.js +13 -0
- package/build/dist/Server/Services/CephClusterOwnerRuleService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/CephClusterOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterOwnerUserService.js +9 -0
- package/build/dist/Server/Services/CephClusterOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterService.js +353 -0
- package/build/dist/Server/Services/CephClusterService.js.map +1 -0
- package/build/dist/Server/Services/CephResourceService.js +257 -0
- package/build/dist/Server/Services/CephResourceService.js.map +1 -0
- package/build/dist/Server/Services/CloudResourceService.js +10 -2
- package/build/dist/Server/Services/CloudResourceService.js.map +1 -1
- package/build/dist/Server/Services/DockerHostService.js +10 -2
- package/build/dist/Server/Services/DockerHostService.js.map +1 -1
- package/build/dist/Server/Services/DockerSwarmClusterLabelRuleEngineService.js +168 -0
- package/build/dist/Server/Services/DockerSwarmClusterLabelRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterLabelRuleService.js +13 -0
- package/build/dist/Server/Services/DockerSwarmClusterLabelRuleService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleEngineService.js +188 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleService.js +13 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerUserService.js +9 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterService.js +353 -0
- package/build/dist/Server/Services/DockerSwarmClusterService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmResourceService.js +258 -0
- package/build/dist/Server/Services/DockerSwarmResourceService.js.map +1 -0
- package/build/dist/Server/Services/ExceptionAggregationService.js +3 -0
- package/build/dist/Server/Services/ExceptionAggregationService.js.map +1 -1
- package/build/dist/Server/Services/HostService.js +10 -2
- package/build/dist/Server/Services/HostService.js.map +1 -1
- package/build/dist/Server/Services/IncidentLabelRuleEngineService.js +28 -4
- package/build/dist/Server/Services/IncidentLabelRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/IncidentOwnerRuleEngineService.js +62 -5
- package/build/dist/Server/Services/IncidentOwnerRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/IncidentService.js +8 -0
- package/build/dist/Server/Services/IncidentService.js.map +1 -1
- package/build/dist/Server/Services/Index.js +38 -0
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/Server/Services/KubernetesClusterService.js +10 -2
- package/build/dist/Server/Services/KubernetesClusterService.js.map +1 -1
- package/build/dist/Server/Services/LogAggregationService.js +3 -0
- package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
- package/build/dist/Server/Services/MetricAggregationService.js +3 -0
- package/build/dist/Server/Services/MetricAggregationService.js.map +1 -1
- package/build/dist/Server/Services/OpenTelemetryIngestService.js +69 -9
- package/build/dist/Server/Services/OpenTelemetryIngestService.js.map +1 -1
- package/build/dist/Server/Services/PodmanHostLabelRuleEngineService.js +166 -0
- package/build/dist/Server/Services/PodmanHostLabelRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostLabelRuleService.js +13 -0
- package/build/dist/Server/Services/PodmanHostLabelRuleService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostOwnerRuleEngineService.js +186 -0
- package/build/dist/Server/Services/PodmanHostOwnerRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostOwnerRuleService.js +13 -0
- package/build/dist/Server/Services/PodmanHostOwnerRuleService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/PodmanHostOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostOwnerUserService.js +9 -0
- package/build/dist/Server/Services/PodmanHostOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostService.js +319 -0
- package/build/dist/Server/Services/PodmanHostService.js.map +1 -0
- package/build/dist/Server/Services/PodmanResourceService.js +196 -0
- package/build/dist/Server/Services/PodmanResourceService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterLabelRuleEngineService.js +166 -0
- package/build/dist/Server/Services/ProxmoxClusterLabelRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterLabelRuleService.js +13 -0
- package/build/dist/Server/Services/ProxmoxClusterLabelRuleService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerRuleEngineService.js +186 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerRuleService.js +13 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerRuleService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerUserService.js +9 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterService.js +337 -0
- package/build/dist/Server/Services/ProxmoxClusterService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxResourceService.js +285 -0
- package/build/dist/Server/Services/ProxmoxResourceService.js.map +1 -0
- package/build/dist/Server/Services/RumApplicationService.js +10 -2
- package/build/dist/Server/Services/RumApplicationService.js.map +1 -1
- package/build/dist/Server/Services/ScheduledMaintenanceLabelRuleEngineService.js +30 -4
- package/build/dist/Server/Services/ScheduledMaintenanceLabelRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/ScheduledMaintenanceOwnerRuleEngineService.js +62 -5
- package/build/dist/Server/Services/ScheduledMaintenanceOwnerRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/ServerlessFunctionService.js +10 -2
- package/build/dist/Server/Services/ServerlessFunctionService.js.map +1 -1
- package/build/dist/Server/Services/TelemetryUsageBillingService.js +43 -3
- package/build/dist/Server/Services/TelemetryUsageBillingService.js.map +1 -1
- package/build/dist/Server/Services/TraceAggregationService.js +3 -0
- package/build/dist/Server/Services/TraceAggregationService.js.map +1 -1
- package/build/dist/Server/Types/AnalyticsDatabase/AggregateBy.js +8 -25
- package/build/dist/Server/Types/AnalyticsDatabase/AggregateBy.js.map +1 -1
- package/build/dist/Server/Types/Database/Permissions/OwnerTableRegistry.js +13 -0
- package/build/dist/Server/Types/Database/Permissions/OwnerTableRegistry.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorAlert.js +44 -0
- package/build/dist/Server/Utils/Monitor/MonitorAlert.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js +118 -0
- package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js.map +1 -0
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js +422 -4
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js +137 -8
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js +32 -6
- package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js +6 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/SeriesResourceLabels.js +39 -0
- package/build/dist/Server/Utils/Monitor/SeriesResourceLabels.js.map +1 -1
- package/build/dist/Server/Utils/Profiling.js +24 -3
- package/build/dist/Server/Utils/Profiling.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/EntityRegistry.js +4 -0
- package/build/dist/Server/Utils/Telemetry/EntityRegistry.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.js +854 -0
- package/build/dist/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry/ResourceFacetResolver.js +30 -0
- package/build/dist/Server/Utils/Telemetry/ResourceFacetResolver.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/Telemetry.js +6 -0
- package/build/dist/Server/Utils/Telemetry/Telemetry.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/TelemetryEntity.js +80 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryEntity.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry.js +8 -10
- package/build/dist/Server/Utils/Telemetry.js.map +1 -1
- package/build/dist/Types/BaseDatabase/AggregationIntervalUtil.js +69 -0
- package/build/dist/Types/BaseDatabase/AggregationIntervalUtil.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponentType.js +11 -0
- package/build/dist/Types/Dashboard/DashboardComponentType.js.map +1 -1
- package/build/dist/Types/Dashboard/DashboardComponents/ComponentArgument.js +4 -0
- package/build/dist/Types/Dashboard/DashboardComponents/ComponentArgument.js.map +1 -1
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmNodeListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmNodeListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanHostListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanHostListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanImageListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanImageListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanNetworkListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanNetworkListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanVolumeListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanVolumeListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardTemplates.js +562 -0
- package/build/dist/Types/Dashboard/DashboardTemplates.js.map +1 -1
- package/build/dist/Types/DockerSwarm/DockerSwarmInventoryExtractor.js +359 -0
- package/build/dist/Types/DockerSwarm/DockerSwarmInventoryExtractor.js.map +1 -0
- package/build/dist/Types/Icon/IconProp.js +3 -0
- package/build/dist/Types/Icon/IconProp.js.map +1 -1
- package/build/dist/Types/Monitor/CephAlertTemplates.js +1379 -0
- package/build/dist/Types/Monitor/CephAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/CephMetricCatalog.js +353 -0
- package/build/dist/Types/Monitor/CephMetricCatalog.js.map +1 -0
- package/build/dist/Types/Monitor/DockerSwarmAlertTemplates.js +358 -0
- package/build/dist/Types/Monitor/DockerSwarmAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/DockerSwarmMetricCatalog.js +103 -0
- package/build/dist/Types/Monitor/DockerSwarmMetricCatalog.js.map +1 -0
- package/build/dist/Types/Monitor/HostAlertTemplates.js +365 -0
- package/build/dist/Types/Monitor/HostAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/HostMetricCatalog.js +138 -0
- package/build/dist/Types/Monitor/HostMetricCatalog.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStep.js +115 -0
- package/build/dist/Types/Monitor/MonitorStep.js.map +1 -1
- package/build/dist/Types/Monitor/MonitorStepCephMonitor.js +34 -0
- package/build/dist/Types/Monitor/MonitorStepCephMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStepDockerSwarmMonitor.js +21 -0
- package/build/dist/Types/Monitor/MonitorStepDockerSwarmMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStepHostMonitor.js +20 -0
- package/build/dist/Types/Monitor/MonitorStepHostMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStepPodmanMonitor.js +21 -0
- package/build/dist/Types/Monitor/MonitorStepPodmanMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStepProxmoxMonitor.js +36 -0
- package/build/dist/Types/Monitor/MonitorStepProxmoxMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorType.js +66 -1
- package/build/dist/Types/Monitor/MonitorType.js.map +1 -1
- package/build/dist/Types/Monitor/PodmanAlertTemplates.js +410 -0
- package/build/dist/Types/Monitor/PodmanAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/PodmanMetricCatalog.js +192 -0
- package/build/dist/Types/Monitor/PodmanMetricCatalog.js.map +1 -0
- package/build/dist/Types/Monitor/ProxmoxAlertTemplates.js +743 -0
- package/build/dist/Types/Monitor/ProxmoxAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/ProxmoxMetricCatalog.js +320 -0
- package/build/dist/Types/Monitor/ProxmoxMetricCatalog.js.map +1 -0
- package/build/dist/Types/Permission.js +824 -0
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/Types/Podman/PodmanInventoryExtractor.js +293 -0
- package/build/dist/Types/Podman/PodmanInventoryExtractor.js.map +1 -0
- package/build/dist/Types/Telemetry/EntityType.js +23 -0
- package/build/dist/Types/Telemetry/EntityType.js.map +1 -1
- package/build/dist/Types/Telemetry/ServiceType.js +4 -0
- package/build/dist/Types/Telemetry/ServiceType.js.map +1 -1
- package/build/dist/UI/Components/Icon/Icon.js +49 -0
- package/build/dist/UI/Components/Icon/Icon.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js +30 -2
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js +22 -0
- package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js.map +1 -1
- package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js +11 -1
- package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js.map +1 -1
- package/build/dist/UI/Utils/Telemetry/Telemetry.js +11 -10
- package/build/dist/UI/Utils/Telemetry/Telemetry.js.map +1 -1
- package/build/dist/UI/Utils/TelemetryService.js +6 -2
- package/build/dist/UI/Utils/TelemetryService.js.map +1 -1
- package/build/dist/Utils/Dashboard/Components/DashboardCephOsdListComponent.js +50 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephOsdListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephPoolListComponent.js +27 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephPoolListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephResourceListShared.js +46 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephResourceListShared.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmNodeListComponent.js +55 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmNodeListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmResourceListShared.js +46 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmResourceListShared.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmServiceListComponent.js +55 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmServiceListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanContainerListComponent.js +77 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanContainerListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanHostListComponent.js +71 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanHostListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanImageListComponent.js +77 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanImageListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanNetworkListComponent.js +68 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanNetworkListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanVolumeListComponent.js +68 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanVolumeListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxGuestListComponent.js +55 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxGuestListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxNodeListComponent.js +42 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxNodeListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxResourceListShared.js +46 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxResourceListShared.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/Index.js +44 -0
- package/build/dist/Utils/Dashboard/Components/Index.js.map +1 -1
- package/build/dist/Utils/Telemetry/EntityKey.js +41 -0
- package/build/dist/Utils/Telemetry/EntityKey.js.map +1 -1
- package/build/dist/Utils/Telemetry/EntityRelationship.js +3 -0
- package/build/dist/Utils/Telemetry/EntityRelationship.js.map +1 -1
- package/build/dist/Utils/Telemetry/HeartbeatAvailability.js +174 -0
- package/build/dist/Utils/Telemetry/HeartbeatAvailability.js.map +1 -0
- package/package.json +29 -21
|
@@ -396,11 +396,21 @@ var Permission;
|
|
|
396
396
|
Permission["DeleteDockerHostOwnerRule"] = "DeleteDockerHostOwnerRule";
|
|
397
397
|
Permission["EditDockerHostOwnerRule"] = "EditDockerHostOwnerRule";
|
|
398
398
|
Permission["ReadDockerHostOwnerRule"] = "ReadDockerHostOwnerRule";
|
|
399
|
+
// Podman Host Owner Rule Permissions
|
|
400
|
+
Permission["CreatePodmanHostOwnerRule"] = "CreatePodmanHostOwnerRule";
|
|
401
|
+
Permission["DeletePodmanHostOwnerRule"] = "DeletePodmanHostOwnerRule";
|
|
402
|
+
Permission["EditPodmanHostOwnerRule"] = "EditPodmanHostOwnerRule";
|
|
403
|
+
Permission["ReadPodmanHostOwnerRule"] = "ReadPodmanHostOwnerRule";
|
|
399
404
|
// Docker Host Label Rule Permissions
|
|
400
405
|
Permission["CreateDockerHostLabelRule"] = "CreateDockerHostLabelRule";
|
|
401
406
|
Permission["DeleteDockerHostLabelRule"] = "DeleteDockerHostLabelRule";
|
|
402
407
|
Permission["EditDockerHostLabelRule"] = "EditDockerHostLabelRule";
|
|
403
408
|
Permission["ReadDockerHostLabelRule"] = "ReadDockerHostLabelRule";
|
|
409
|
+
// Podman Host Label Rule Permissions
|
|
410
|
+
Permission["CreatePodmanHostLabelRule"] = "CreatePodmanHostLabelRule";
|
|
411
|
+
Permission["DeletePodmanHostLabelRule"] = "DeletePodmanHostLabelRule";
|
|
412
|
+
Permission["EditPodmanHostLabelRule"] = "EditPodmanHostLabelRule";
|
|
413
|
+
Permission["ReadPodmanHostLabelRule"] = "ReadPodmanHostLabelRule";
|
|
404
414
|
// Kubernetes Cluster Owner Rule Permissions
|
|
405
415
|
Permission["CreateKubernetesClusterOwnerRule"] = "CreateKubernetesClusterOwnerRule";
|
|
406
416
|
Permission["DeleteKubernetesClusterOwnerRule"] = "DeleteKubernetesClusterOwnerRule";
|
|
@@ -411,6 +421,40 @@ var Permission;
|
|
|
411
421
|
Permission["DeleteKubernetesClusterLabelRule"] = "DeleteKubernetesClusterLabelRule";
|
|
412
422
|
Permission["EditKubernetesClusterLabelRule"] = "EditKubernetesClusterLabelRule";
|
|
413
423
|
Permission["ReadKubernetesClusterLabelRule"] = "ReadKubernetesClusterLabelRule";
|
|
424
|
+
/*
|
|
425
|
+
* Proxmox Cluster Owner Rule Permissions
|
|
426
|
+
* Docker Swarm Cluster Owner Rule Permissions
|
|
427
|
+
*/
|
|
428
|
+
Permission["CreateProxmoxClusterOwnerRule"] = "CreateProxmoxClusterOwnerRule";
|
|
429
|
+
Permission["CreateDockerSwarmClusterOwnerRule"] = "CreateDockerSwarmClusterOwnerRule";
|
|
430
|
+
Permission["DeleteProxmoxClusterOwnerRule"] = "DeleteProxmoxClusterOwnerRule";
|
|
431
|
+
Permission["DeleteDockerSwarmClusterOwnerRule"] = "DeleteDockerSwarmClusterOwnerRule";
|
|
432
|
+
Permission["EditProxmoxClusterOwnerRule"] = "EditProxmoxClusterOwnerRule";
|
|
433
|
+
Permission["EditDockerSwarmClusterOwnerRule"] = "EditDockerSwarmClusterOwnerRule";
|
|
434
|
+
Permission["ReadProxmoxClusterOwnerRule"] = "ReadProxmoxClusterOwnerRule";
|
|
435
|
+
Permission["ReadDockerSwarmClusterOwnerRule"] = "ReadDockerSwarmClusterOwnerRule";
|
|
436
|
+
/*
|
|
437
|
+
* Proxmox Cluster Label Rule Permissions
|
|
438
|
+
* Docker Swarm Cluster Label Rule Permissions
|
|
439
|
+
*/
|
|
440
|
+
Permission["CreateProxmoxClusterLabelRule"] = "CreateProxmoxClusterLabelRule";
|
|
441
|
+
Permission["CreateDockerSwarmClusterLabelRule"] = "CreateDockerSwarmClusterLabelRule";
|
|
442
|
+
Permission["DeleteProxmoxClusterLabelRule"] = "DeleteProxmoxClusterLabelRule";
|
|
443
|
+
Permission["DeleteDockerSwarmClusterLabelRule"] = "DeleteDockerSwarmClusterLabelRule";
|
|
444
|
+
Permission["EditProxmoxClusterLabelRule"] = "EditProxmoxClusterLabelRule";
|
|
445
|
+
Permission["EditDockerSwarmClusterLabelRule"] = "EditDockerSwarmClusterLabelRule";
|
|
446
|
+
Permission["ReadProxmoxClusterLabelRule"] = "ReadProxmoxClusterLabelRule";
|
|
447
|
+
Permission["ReadDockerSwarmClusterLabelRule"] = "ReadDockerSwarmClusterLabelRule";
|
|
448
|
+
// Ceph Cluster Owner Rule Permissions
|
|
449
|
+
Permission["CreateCephClusterOwnerRule"] = "CreateCephClusterOwnerRule";
|
|
450
|
+
Permission["DeleteCephClusterOwnerRule"] = "DeleteCephClusterOwnerRule";
|
|
451
|
+
Permission["EditCephClusterOwnerRule"] = "EditCephClusterOwnerRule";
|
|
452
|
+
Permission["ReadCephClusterOwnerRule"] = "ReadCephClusterOwnerRule";
|
|
453
|
+
// Ceph Cluster Label Rule Permissions
|
|
454
|
+
Permission["CreateCephClusterLabelRule"] = "CreateCephClusterLabelRule";
|
|
455
|
+
Permission["DeleteCephClusterLabelRule"] = "DeleteCephClusterLabelRule";
|
|
456
|
+
Permission["EditCephClusterLabelRule"] = "EditCephClusterLabelRule";
|
|
457
|
+
Permission["ReadCephClusterLabelRule"] = "ReadCephClusterLabelRule";
|
|
414
458
|
// Runbook Owner Rule Permissions
|
|
415
459
|
Permission["CreateRunbookOwnerRule"] = "CreateRunbookOwnerRule";
|
|
416
460
|
Permission["DeleteRunbookOwnerRule"] = "DeleteRunbookOwnerRule";
|
|
@@ -876,14 +920,62 @@ var Permission;
|
|
|
876
920
|
Permission["DeleteDockerHost"] = "DeleteDockerHost";
|
|
877
921
|
Permission["EditDockerHost"] = "EditDockerHost";
|
|
878
922
|
Permission["ReadDockerHost"] = "ReadDockerHost";
|
|
923
|
+
Permission["CreatePodmanHost"] = "CreatePodmanHost";
|
|
924
|
+
Permission["DeletePodmanHost"] = "DeletePodmanHost";
|
|
925
|
+
Permission["EditPodmanHost"] = "EditPodmanHost";
|
|
926
|
+
Permission["ReadPodmanHost"] = "ReadPodmanHost";
|
|
879
927
|
Permission["CreateDockerHostOwnerTeam"] = "CreateDockerHostOwnerTeam";
|
|
880
928
|
Permission["DeleteDockerHostOwnerTeam"] = "DeleteDockerHostOwnerTeam";
|
|
881
929
|
Permission["EditDockerHostOwnerTeam"] = "EditDockerHostOwnerTeam";
|
|
882
930
|
Permission["ReadDockerHostOwnerTeam"] = "ReadDockerHostOwnerTeam";
|
|
931
|
+
Permission["CreatePodmanHostOwnerTeam"] = "CreatePodmanHostOwnerTeam";
|
|
932
|
+
Permission["DeletePodmanHostOwnerTeam"] = "DeletePodmanHostOwnerTeam";
|
|
933
|
+
Permission["EditPodmanHostOwnerTeam"] = "EditPodmanHostOwnerTeam";
|
|
934
|
+
Permission["ReadPodmanHostOwnerTeam"] = "ReadPodmanHostOwnerTeam";
|
|
883
935
|
Permission["CreateDockerHostOwnerUser"] = "CreateDockerHostOwnerUser";
|
|
884
936
|
Permission["DeleteDockerHostOwnerUser"] = "DeleteDockerHostOwnerUser";
|
|
885
937
|
Permission["EditDockerHostOwnerUser"] = "EditDockerHostOwnerUser";
|
|
886
938
|
Permission["ReadDockerHostOwnerUser"] = "ReadDockerHostOwnerUser";
|
|
939
|
+
Permission["CreatePodmanHostOwnerUser"] = "CreatePodmanHostOwnerUser";
|
|
940
|
+
Permission["DeletePodmanHostOwnerUser"] = "DeletePodmanHostOwnerUser";
|
|
941
|
+
Permission["EditPodmanHostOwnerUser"] = "EditPodmanHostOwnerUser";
|
|
942
|
+
Permission["ReadPodmanHostOwnerUser"] = "ReadPodmanHostOwnerUser";
|
|
943
|
+
Permission["CreateProxmoxCluster"] = "CreateProxmoxCluster";
|
|
944
|
+
Permission["CreateDockerSwarmCluster"] = "CreateDockerSwarmCluster";
|
|
945
|
+
Permission["DeleteProxmoxCluster"] = "DeleteProxmoxCluster";
|
|
946
|
+
Permission["DeleteDockerSwarmCluster"] = "DeleteDockerSwarmCluster";
|
|
947
|
+
Permission["EditProxmoxCluster"] = "EditProxmoxCluster";
|
|
948
|
+
Permission["EditDockerSwarmCluster"] = "EditDockerSwarmCluster";
|
|
949
|
+
Permission["ReadProxmoxCluster"] = "ReadProxmoxCluster";
|
|
950
|
+
Permission["ReadDockerSwarmCluster"] = "ReadDockerSwarmCluster";
|
|
951
|
+
Permission["CreateCephCluster"] = "CreateCephCluster";
|
|
952
|
+
Permission["DeleteCephCluster"] = "DeleteCephCluster";
|
|
953
|
+
Permission["EditCephCluster"] = "EditCephCluster";
|
|
954
|
+
Permission["ReadCephCluster"] = "ReadCephCluster";
|
|
955
|
+
Permission["CreateProxmoxClusterOwnerTeam"] = "CreateProxmoxClusterOwnerTeam";
|
|
956
|
+
Permission["CreateDockerSwarmClusterOwnerTeam"] = "CreateDockerSwarmClusterOwnerTeam";
|
|
957
|
+
Permission["DeleteProxmoxClusterOwnerTeam"] = "DeleteProxmoxClusterOwnerTeam";
|
|
958
|
+
Permission["DeleteDockerSwarmClusterOwnerTeam"] = "DeleteDockerSwarmClusterOwnerTeam";
|
|
959
|
+
Permission["EditProxmoxClusterOwnerTeam"] = "EditProxmoxClusterOwnerTeam";
|
|
960
|
+
Permission["EditDockerSwarmClusterOwnerTeam"] = "EditDockerSwarmClusterOwnerTeam";
|
|
961
|
+
Permission["ReadProxmoxClusterOwnerTeam"] = "ReadProxmoxClusterOwnerTeam";
|
|
962
|
+
Permission["ReadDockerSwarmClusterOwnerTeam"] = "ReadDockerSwarmClusterOwnerTeam";
|
|
963
|
+
Permission["CreateProxmoxClusterOwnerUser"] = "CreateProxmoxClusterOwnerUser";
|
|
964
|
+
Permission["CreateDockerSwarmClusterOwnerUser"] = "CreateDockerSwarmClusterOwnerUser";
|
|
965
|
+
Permission["DeleteProxmoxClusterOwnerUser"] = "DeleteProxmoxClusterOwnerUser";
|
|
966
|
+
Permission["DeleteDockerSwarmClusterOwnerUser"] = "DeleteDockerSwarmClusterOwnerUser";
|
|
967
|
+
Permission["EditProxmoxClusterOwnerUser"] = "EditProxmoxClusterOwnerUser";
|
|
968
|
+
Permission["EditDockerSwarmClusterOwnerUser"] = "EditDockerSwarmClusterOwnerUser";
|
|
969
|
+
Permission["ReadProxmoxClusterOwnerUser"] = "ReadProxmoxClusterOwnerUser";
|
|
970
|
+
Permission["ReadDockerSwarmClusterOwnerUser"] = "ReadDockerSwarmClusterOwnerUser";
|
|
971
|
+
Permission["CreateCephClusterOwnerTeam"] = "CreateCephClusterOwnerTeam";
|
|
972
|
+
Permission["DeleteCephClusterOwnerTeam"] = "DeleteCephClusterOwnerTeam";
|
|
973
|
+
Permission["EditCephClusterOwnerTeam"] = "EditCephClusterOwnerTeam";
|
|
974
|
+
Permission["ReadCephClusterOwnerTeam"] = "ReadCephClusterOwnerTeam";
|
|
975
|
+
Permission["CreateCephClusterOwnerUser"] = "CreateCephClusterOwnerUser";
|
|
976
|
+
Permission["DeleteCephClusterOwnerUser"] = "DeleteCephClusterOwnerUser";
|
|
977
|
+
Permission["EditCephClusterOwnerUser"] = "EditCephClusterOwnerUser";
|
|
978
|
+
Permission["ReadCephClusterOwnerUser"] = "ReadCephClusterOwnerUser";
|
|
887
979
|
Permission["CreateHost"] = "CreateHost";
|
|
888
980
|
Permission["DeleteHost"] = "DeleteHost";
|
|
889
981
|
Permission["EditHost"] = "EditHost";
|
|
@@ -6461,6 +6553,150 @@ export class PermissionHelper {
|
|
|
6461
6553
|
isRolePermission: false,
|
|
6462
6554
|
group: PermissionGroup.Telemetry,
|
|
6463
6555
|
},
|
|
6556
|
+
{
|
|
6557
|
+
permission: Permission.CreatePodmanHost,
|
|
6558
|
+
title: "Create Podman Host",
|
|
6559
|
+
description: "This permission can create Podman Host in this project.",
|
|
6560
|
+
isAssignableToTenant: true,
|
|
6561
|
+
isAccessControlPermission: false,
|
|
6562
|
+
isRolePermission: false,
|
|
6563
|
+
group: PermissionGroup.Telemetry,
|
|
6564
|
+
},
|
|
6565
|
+
{
|
|
6566
|
+
permission: Permission.DeletePodmanHost,
|
|
6567
|
+
title: "Delete Podman Host",
|
|
6568
|
+
description: "This permission can delete Podman Host of this project.",
|
|
6569
|
+
isAssignableToTenant: true,
|
|
6570
|
+
isAccessControlPermission: true,
|
|
6571
|
+
isRolePermission: false,
|
|
6572
|
+
group: PermissionGroup.Telemetry,
|
|
6573
|
+
},
|
|
6574
|
+
{
|
|
6575
|
+
permission: Permission.EditPodmanHost,
|
|
6576
|
+
title: "Edit Podman Host",
|
|
6577
|
+
description: "This permission can edit Podman Host of this project.",
|
|
6578
|
+
isAssignableToTenant: true,
|
|
6579
|
+
isAccessControlPermission: true,
|
|
6580
|
+
isRolePermission: false,
|
|
6581
|
+
group: PermissionGroup.Telemetry,
|
|
6582
|
+
},
|
|
6583
|
+
{
|
|
6584
|
+
permission: Permission.ReadPodmanHost,
|
|
6585
|
+
title: "Read Podman Host",
|
|
6586
|
+
description: "This permission can read Podman Host of this project.",
|
|
6587
|
+
isAssignableToTenant: true,
|
|
6588
|
+
isAccessControlPermission: true,
|
|
6589
|
+
isRolePermission: false,
|
|
6590
|
+
group: PermissionGroup.Telemetry,
|
|
6591
|
+
},
|
|
6592
|
+
{
|
|
6593
|
+
permission: Permission.CreateProxmoxCluster,
|
|
6594
|
+
title: "Create Proxmox Cluster",
|
|
6595
|
+
description: "This permission can create Proxmox Cluster in this project.",
|
|
6596
|
+
isAssignableToTenant: true,
|
|
6597
|
+
isAccessControlPermission: false,
|
|
6598
|
+
isRolePermission: false,
|
|
6599
|
+
group: PermissionGroup.Telemetry,
|
|
6600
|
+
},
|
|
6601
|
+
{
|
|
6602
|
+
permission: Permission.CreateDockerSwarmCluster,
|
|
6603
|
+
title: "Create Docker Swarm Cluster",
|
|
6604
|
+
description: "This permission can create Docker Swarm Cluster in this project.",
|
|
6605
|
+
isAssignableToTenant: true,
|
|
6606
|
+
isAccessControlPermission: false,
|
|
6607
|
+
isRolePermission: false,
|
|
6608
|
+
group: PermissionGroup.Telemetry,
|
|
6609
|
+
},
|
|
6610
|
+
{
|
|
6611
|
+
permission: Permission.DeleteProxmoxCluster,
|
|
6612
|
+
title: "Delete Proxmox Cluster",
|
|
6613
|
+
description: "This permission can delete Proxmox Cluster of this project.",
|
|
6614
|
+
isAssignableToTenant: true,
|
|
6615
|
+
isAccessControlPermission: true,
|
|
6616
|
+
isRolePermission: false,
|
|
6617
|
+
group: PermissionGroup.Telemetry,
|
|
6618
|
+
},
|
|
6619
|
+
{
|
|
6620
|
+
permission: Permission.DeleteDockerSwarmCluster,
|
|
6621
|
+
title: "Delete Docker Swarm Cluster",
|
|
6622
|
+
description: "This permission can delete Docker Swarm Cluster of this project.",
|
|
6623
|
+
isAssignableToTenant: true,
|
|
6624
|
+
isAccessControlPermission: true,
|
|
6625
|
+
isRolePermission: false,
|
|
6626
|
+
group: PermissionGroup.Telemetry,
|
|
6627
|
+
},
|
|
6628
|
+
{
|
|
6629
|
+
permission: Permission.EditProxmoxCluster,
|
|
6630
|
+
title: "Edit Proxmox Cluster",
|
|
6631
|
+
description: "This permission can edit Proxmox Cluster of this project.",
|
|
6632
|
+
isAssignableToTenant: true,
|
|
6633
|
+
isAccessControlPermission: true,
|
|
6634
|
+
isRolePermission: false,
|
|
6635
|
+
group: PermissionGroup.Telemetry,
|
|
6636
|
+
},
|
|
6637
|
+
{
|
|
6638
|
+
permission: Permission.EditDockerSwarmCluster,
|
|
6639
|
+
title: "Edit Docker Swarm Cluster",
|
|
6640
|
+
description: "This permission can edit Docker Swarm Cluster of this project.",
|
|
6641
|
+
isAssignableToTenant: true,
|
|
6642
|
+
isAccessControlPermission: true,
|
|
6643
|
+
isRolePermission: false,
|
|
6644
|
+
group: PermissionGroup.Telemetry,
|
|
6645
|
+
},
|
|
6646
|
+
{
|
|
6647
|
+
permission: Permission.ReadProxmoxCluster,
|
|
6648
|
+
title: "Read Proxmox Cluster",
|
|
6649
|
+
description: "This permission can read Proxmox Cluster of this project.",
|
|
6650
|
+
isAssignableToTenant: true,
|
|
6651
|
+
isAccessControlPermission: true,
|
|
6652
|
+
isRolePermission: false,
|
|
6653
|
+
group: PermissionGroup.Telemetry,
|
|
6654
|
+
},
|
|
6655
|
+
{
|
|
6656
|
+
permission: Permission.ReadDockerSwarmCluster,
|
|
6657
|
+
title: "Read Docker Swarm Cluster",
|
|
6658
|
+
description: "This permission can read Docker Swarm Cluster of this project.",
|
|
6659
|
+
isAssignableToTenant: true,
|
|
6660
|
+
isAccessControlPermission: true,
|
|
6661
|
+
isRolePermission: false,
|
|
6662
|
+
group: PermissionGroup.Telemetry,
|
|
6663
|
+
},
|
|
6664
|
+
{
|
|
6665
|
+
permission: Permission.CreateCephCluster,
|
|
6666
|
+
title: "Create Ceph Cluster",
|
|
6667
|
+
description: "This permission can create Ceph Cluster in this project.",
|
|
6668
|
+
isAssignableToTenant: true,
|
|
6669
|
+
isAccessControlPermission: false,
|
|
6670
|
+
isRolePermission: false,
|
|
6671
|
+
group: PermissionGroup.Telemetry,
|
|
6672
|
+
},
|
|
6673
|
+
{
|
|
6674
|
+
permission: Permission.DeleteCephCluster,
|
|
6675
|
+
title: "Delete Ceph Cluster",
|
|
6676
|
+
description: "This permission can delete Ceph Cluster of this project.",
|
|
6677
|
+
isAssignableToTenant: true,
|
|
6678
|
+
isAccessControlPermission: true,
|
|
6679
|
+
isRolePermission: false,
|
|
6680
|
+
group: PermissionGroup.Telemetry,
|
|
6681
|
+
},
|
|
6682
|
+
{
|
|
6683
|
+
permission: Permission.EditCephCluster,
|
|
6684
|
+
title: "Edit Ceph Cluster",
|
|
6685
|
+
description: "This permission can edit Ceph Cluster of this project.",
|
|
6686
|
+
isAssignableToTenant: true,
|
|
6687
|
+
isAccessControlPermission: true,
|
|
6688
|
+
isRolePermission: false,
|
|
6689
|
+
group: PermissionGroup.Telemetry,
|
|
6690
|
+
},
|
|
6691
|
+
{
|
|
6692
|
+
permission: Permission.ReadCephCluster,
|
|
6693
|
+
title: "Read Ceph Cluster",
|
|
6694
|
+
description: "This permission can read Ceph Cluster of this project.",
|
|
6695
|
+
isAssignableToTenant: true,
|
|
6696
|
+
isAccessControlPermission: true,
|
|
6697
|
+
isRolePermission: false,
|
|
6698
|
+
group: PermissionGroup.Telemetry,
|
|
6699
|
+
},
|
|
6464
6700
|
];
|
|
6465
6701
|
/*
|
|
6466
6702
|
* Split into a second array (concatenated below) so the single array
|
|
@@ -7081,6 +7317,222 @@ export class PermissionHelper {
|
|
|
7081
7317
|
isRolePermission: false,
|
|
7082
7318
|
group: PermissionGroup.Telemetry,
|
|
7083
7319
|
},
|
|
7320
|
+
{
|
|
7321
|
+
permission: Permission.CreateProxmoxClusterOwnerTeam,
|
|
7322
|
+
title: "Create Proxmox Cluster Team Owner",
|
|
7323
|
+
description: "This permission can create Proxmox Cluster Team Owner of this project.",
|
|
7324
|
+
isAssignableToTenant: true,
|
|
7325
|
+
isAccessControlPermission: false,
|
|
7326
|
+
isRolePermission: false,
|
|
7327
|
+
group: PermissionGroup.Telemetry,
|
|
7328
|
+
},
|
|
7329
|
+
{
|
|
7330
|
+
permission: Permission.CreateDockerSwarmClusterOwnerTeam,
|
|
7331
|
+
title: "Create Docker Swarm Cluster Team Owner",
|
|
7332
|
+
description: "This permission can create Docker Swarm Cluster Team Owner of this project.",
|
|
7333
|
+
isAssignableToTenant: true,
|
|
7334
|
+
isAccessControlPermission: false,
|
|
7335
|
+
isRolePermission: false,
|
|
7336
|
+
group: PermissionGroup.Telemetry,
|
|
7337
|
+
},
|
|
7338
|
+
{
|
|
7339
|
+
permission: Permission.DeleteProxmoxClusterOwnerTeam,
|
|
7340
|
+
title: "Delete Proxmox Cluster Team Owner",
|
|
7341
|
+
description: "This permission can delete Proxmox Cluster Team Owner of this project.",
|
|
7342
|
+
isAssignableToTenant: true,
|
|
7343
|
+
isAccessControlPermission: false,
|
|
7344
|
+
isRolePermission: false,
|
|
7345
|
+
group: PermissionGroup.Telemetry,
|
|
7346
|
+
},
|
|
7347
|
+
{
|
|
7348
|
+
permission: Permission.DeleteDockerSwarmClusterOwnerTeam,
|
|
7349
|
+
title: "Delete Docker Swarm Cluster Team Owner",
|
|
7350
|
+
description: "This permission can delete Docker Swarm Cluster Team Owner of this project.",
|
|
7351
|
+
isAssignableToTenant: true,
|
|
7352
|
+
isAccessControlPermission: false,
|
|
7353
|
+
isRolePermission: false,
|
|
7354
|
+
group: PermissionGroup.Telemetry,
|
|
7355
|
+
},
|
|
7356
|
+
{
|
|
7357
|
+
permission: Permission.EditProxmoxClusterOwnerTeam,
|
|
7358
|
+
title: "Edit Proxmox Cluster Team Owner",
|
|
7359
|
+
description: "This permission can edit Proxmox Cluster Team Owner of this project.",
|
|
7360
|
+
isAssignableToTenant: true,
|
|
7361
|
+
isAccessControlPermission: false,
|
|
7362
|
+
isRolePermission: false,
|
|
7363
|
+
group: PermissionGroup.Telemetry,
|
|
7364
|
+
},
|
|
7365
|
+
{
|
|
7366
|
+
permission: Permission.EditDockerSwarmClusterOwnerTeam,
|
|
7367
|
+
title: "Edit Docker Swarm Cluster Team Owner",
|
|
7368
|
+
description: "This permission can edit Docker Swarm Cluster Team Owner of this project.",
|
|
7369
|
+
isAssignableToTenant: true,
|
|
7370
|
+
isAccessControlPermission: false,
|
|
7371
|
+
isRolePermission: false,
|
|
7372
|
+
group: PermissionGroup.Telemetry,
|
|
7373
|
+
},
|
|
7374
|
+
{
|
|
7375
|
+
permission: Permission.ReadProxmoxClusterOwnerTeam,
|
|
7376
|
+
title: "Read Proxmox Cluster Team Owner",
|
|
7377
|
+
description: "This permission can read Proxmox Cluster Team Owner of this project.",
|
|
7378
|
+
isAssignableToTenant: true,
|
|
7379
|
+
isAccessControlPermission: false,
|
|
7380
|
+
isRolePermission: false,
|
|
7381
|
+
group: PermissionGroup.Telemetry,
|
|
7382
|
+
},
|
|
7383
|
+
{
|
|
7384
|
+
permission: Permission.ReadDockerSwarmClusterOwnerTeam,
|
|
7385
|
+
title: "Read Docker Swarm Cluster Team Owner",
|
|
7386
|
+
description: "This permission can read Docker Swarm Cluster Team Owner of this project.",
|
|
7387
|
+
isAssignableToTenant: true,
|
|
7388
|
+
isAccessControlPermission: false,
|
|
7389
|
+
isRolePermission: false,
|
|
7390
|
+
group: PermissionGroup.Telemetry,
|
|
7391
|
+
},
|
|
7392
|
+
{
|
|
7393
|
+
permission: Permission.CreateProxmoxClusterOwnerUser,
|
|
7394
|
+
title: "Create Proxmox Cluster User Owner",
|
|
7395
|
+
description: "This permission can create Proxmox Cluster User Owner of this project.",
|
|
7396
|
+
isAssignableToTenant: true,
|
|
7397
|
+
isAccessControlPermission: false,
|
|
7398
|
+
isRolePermission: false,
|
|
7399
|
+
group: PermissionGroup.Telemetry,
|
|
7400
|
+
},
|
|
7401
|
+
{
|
|
7402
|
+
permission: Permission.CreateDockerSwarmClusterOwnerUser,
|
|
7403
|
+
title: "Create Docker Swarm Cluster User Owner",
|
|
7404
|
+
description: "This permission can create Docker Swarm Cluster User Owner of this project.",
|
|
7405
|
+
isAssignableToTenant: true,
|
|
7406
|
+
isAccessControlPermission: false,
|
|
7407
|
+
isRolePermission: false,
|
|
7408
|
+
group: PermissionGroup.Telemetry,
|
|
7409
|
+
},
|
|
7410
|
+
{
|
|
7411
|
+
permission: Permission.DeleteProxmoxClusterOwnerUser,
|
|
7412
|
+
title: "Delete Proxmox Cluster User Owner",
|
|
7413
|
+
description: "This permission can delete Proxmox Cluster User Owner of this project.",
|
|
7414
|
+
isAssignableToTenant: true,
|
|
7415
|
+
isAccessControlPermission: false,
|
|
7416
|
+
isRolePermission: false,
|
|
7417
|
+
group: PermissionGroup.Telemetry,
|
|
7418
|
+
},
|
|
7419
|
+
{
|
|
7420
|
+
permission: Permission.DeleteDockerSwarmClusterOwnerUser,
|
|
7421
|
+
title: "Delete Docker Swarm Cluster User Owner",
|
|
7422
|
+
description: "This permission can delete Docker Swarm Cluster User Owner of this project.",
|
|
7423
|
+
isAssignableToTenant: true,
|
|
7424
|
+
isAccessControlPermission: false,
|
|
7425
|
+
isRolePermission: false,
|
|
7426
|
+
group: PermissionGroup.Telemetry,
|
|
7427
|
+
},
|
|
7428
|
+
{
|
|
7429
|
+
permission: Permission.EditProxmoxClusterOwnerUser,
|
|
7430
|
+
title: "Edit Proxmox Cluster User Owner",
|
|
7431
|
+
description: "This permission can edit Proxmox Cluster User Owner of this project.",
|
|
7432
|
+
isAssignableToTenant: true,
|
|
7433
|
+
isAccessControlPermission: false,
|
|
7434
|
+
isRolePermission: false,
|
|
7435
|
+
group: PermissionGroup.Telemetry,
|
|
7436
|
+
},
|
|
7437
|
+
{
|
|
7438
|
+
permission: Permission.EditDockerSwarmClusterOwnerUser,
|
|
7439
|
+
title: "Edit Docker Swarm Cluster User Owner",
|
|
7440
|
+
description: "This permission can edit Docker Swarm Cluster User Owner of this project.",
|
|
7441
|
+
isAssignableToTenant: true,
|
|
7442
|
+
isAccessControlPermission: false,
|
|
7443
|
+
isRolePermission: false,
|
|
7444
|
+
group: PermissionGroup.Telemetry,
|
|
7445
|
+
},
|
|
7446
|
+
{
|
|
7447
|
+
permission: Permission.ReadProxmoxClusterOwnerUser,
|
|
7448
|
+
title: "Read Proxmox Cluster User Owner",
|
|
7449
|
+
description: "This permission can read Proxmox Cluster User Owner of this project.",
|
|
7450
|
+
isAssignableToTenant: true,
|
|
7451
|
+
isAccessControlPermission: false,
|
|
7452
|
+
isRolePermission: false,
|
|
7453
|
+
group: PermissionGroup.Telemetry,
|
|
7454
|
+
},
|
|
7455
|
+
{
|
|
7456
|
+
permission: Permission.ReadDockerSwarmClusterOwnerUser,
|
|
7457
|
+
title: "Read Docker Swarm Cluster User Owner",
|
|
7458
|
+
description: "This permission can read Docker Swarm Cluster User Owner of this project.",
|
|
7459
|
+
isAssignableToTenant: true,
|
|
7460
|
+
isAccessControlPermission: false,
|
|
7461
|
+
isRolePermission: false,
|
|
7462
|
+
group: PermissionGroup.Telemetry,
|
|
7463
|
+
},
|
|
7464
|
+
{
|
|
7465
|
+
permission: Permission.CreateCephClusterOwnerTeam,
|
|
7466
|
+
title: "Create Ceph Cluster Team Owner",
|
|
7467
|
+
description: "This permission can create Ceph Cluster Team Owner of this project.",
|
|
7468
|
+
isAssignableToTenant: true,
|
|
7469
|
+
isAccessControlPermission: false,
|
|
7470
|
+
isRolePermission: false,
|
|
7471
|
+
group: PermissionGroup.Telemetry,
|
|
7472
|
+
},
|
|
7473
|
+
{
|
|
7474
|
+
permission: Permission.DeleteCephClusterOwnerTeam,
|
|
7475
|
+
title: "Delete Ceph Cluster Team Owner",
|
|
7476
|
+
description: "This permission can delete Ceph Cluster Team Owner of this project.",
|
|
7477
|
+
isAssignableToTenant: true,
|
|
7478
|
+
isAccessControlPermission: false,
|
|
7479
|
+
isRolePermission: false,
|
|
7480
|
+
group: PermissionGroup.Telemetry,
|
|
7481
|
+
},
|
|
7482
|
+
{
|
|
7483
|
+
permission: Permission.EditCephClusterOwnerTeam,
|
|
7484
|
+
title: "Edit Ceph Cluster Team Owner",
|
|
7485
|
+
description: "This permission can edit Ceph Cluster Team Owner of this project.",
|
|
7486
|
+
isAssignableToTenant: true,
|
|
7487
|
+
isAccessControlPermission: false,
|
|
7488
|
+
isRolePermission: false,
|
|
7489
|
+
group: PermissionGroup.Telemetry,
|
|
7490
|
+
},
|
|
7491
|
+
{
|
|
7492
|
+
permission: Permission.ReadCephClusterOwnerTeam,
|
|
7493
|
+
title: "Read Ceph Cluster Team Owner",
|
|
7494
|
+
description: "This permission can read Ceph Cluster Team Owner of this project.",
|
|
7495
|
+
isAssignableToTenant: true,
|
|
7496
|
+
isAccessControlPermission: false,
|
|
7497
|
+
isRolePermission: false,
|
|
7498
|
+
group: PermissionGroup.Telemetry,
|
|
7499
|
+
},
|
|
7500
|
+
{
|
|
7501
|
+
permission: Permission.CreateCephClusterOwnerUser,
|
|
7502
|
+
title: "Create Ceph Cluster User Owner",
|
|
7503
|
+
description: "This permission can create Ceph Cluster User Owner of this project.",
|
|
7504
|
+
isAssignableToTenant: true,
|
|
7505
|
+
isAccessControlPermission: false,
|
|
7506
|
+
isRolePermission: false,
|
|
7507
|
+
group: PermissionGroup.Telemetry,
|
|
7508
|
+
},
|
|
7509
|
+
{
|
|
7510
|
+
permission: Permission.DeleteCephClusterOwnerUser,
|
|
7511
|
+
title: "Delete Ceph Cluster User Owner",
|
|
7512
|
+
description: "This permission can delete Ceph Cluster User Owner of this project.",
|
|
7513
|
+
isAssignableToTenant: true,
|
|
7514
|
+
isAccessControlPermission: false,
|
|
7515
|
+
isRolePermission: false,
|
|
7516
|
+
group: PermissionGroup.Telemetry,
|
|
7517
|
+
},
|
|
7518
|
+
{
|
|
7519
|
+
permission: Permission.EditCephClusterOwnerUser,
|
|
7520
|
+
title: "Edit Ceph Cluster User Owner",
|
|
7521
|
+
description: "This permission can edit Ceph Cluster User Owner of this project.",
|
|
7522
|
+
isAssignableToTenant: true,
|
|
7523
|
+
isAccessControlPermission: false,
|
|
7524
|
+
isRolePermission: false,
|
|
7525
|
+
group: PermissionGroup.Telemetry,
|
|
7526
|
+
},
|
|
7527
|
+
{
|
|
7528
|
+
permission: Permission.ReadCephClusterOwnerUser,
|
|
7529
|
+
title: "Read Ceph Cluster User Owner",
|
|
7530
|
+
description: "This permission can read Ceph Cluster User Owner of this project.",
|
|
7531
|
+
isAssignableToTenant: true,
|
|
7532
|
+
isAccessControlPermission: false,
|
|
7533
|
+
isRolePermission: false,
|
|
7534
|
+
group: PermissionGroup.Telemetry,
|
|
7535
|
+
},
|
|
7084
7536
|
{
|
|
7085
7537
|
permission: Permission.CreateDockerHostOwnerTeam,
|
|
7086
7538
|
title: "Create Docker Host Team Owner",
|
|
@@ -7117,6 +7569,42 @@ export class PermissionHelper {
|
|
|
7117
7569
|
isRolePermission: false,
|
|
7118
7570
|
group: PermissionGroup.Telemetry,
|
|
7119
7571
|
},
|
|
7572
|
+
{
|
|
7573
|
+
permission: Permission.CreatePodmanHostOwnerTeam,
|
|
7574
|
+
title: "Create Podman Host Team Owner",
|
|
7575
|
+
description: "This permission can create Podman Host Team Owner of this project.",
|
|
7576
|
+
isAssignableToTenant: true,
|
|
7577
|
+
isAccessControlPermission: false,
|
|
7578
|
+
isRolePermission: false,
|
|
7579
|
+
group: PermissionGroup.Telemetry,
|
|
7580
|
+
},
|
|
7581
|
+
{
|
|
7582
|
+
permission: Permission.DeletePodmanHostOwnerTeam,
|
|
7583
|
+
title: "Delete Podman Host Team Owner",
|
|
7584
|
+
description: "This permission can delete Podman Host Team Owner of this project.",
|
|
7585
|
+
isAssignableToTenant: true,
|
|
7586
|
+
isAccessControlPermission: false,
|
|
7587
|
+
isRolePermission: false,
|
|
7588
|
+
group: PermissionGroup.Telemetry,
|
|
7589
|
+
},
|
|
7590
|
+
{
|
|
7591
|
+
permission: Permission.EditPodmanHostOwnerTeam,
|
|
7592
|
+
title: "Edit Podman Host Team Owner",
|
|
7593
|
+
description: "This permission can edit Podman Host Team Owner of this project.",
|
|
7594
|
+
isAssignableToTenant: true,
|
|
7595
|
+
isAccessControlPermission: false,
|
|
7596
|
+
isRolePermission: false,
|
|
7597
|
+
group: PermissionGroup.Telemetry,
|
|
7598
|
+
},
|
|
7599
|
+
{
|
|
7600
|
+
permission: Permission.ReadPodmanHostOwnerTeam,
|
|
7601
|
+
title: "Read Podman Host Team Owner",
|
|
7602
|
+
description: "This permission can read Podman Host Team Owner of this project.",
|
|
7603
|
+
isAssignableToTenant: true,
|
|
7604
|
+
isAccessControlPermission: false,
|
|
7605
|
+
isRolePermission: false,
|
|
7606
|
+
group: PermissionGroup.Telemetry,
|
|
7607
|
+
},
|
|
7120
7608
|
{
|
|
7121
7609
|
permission: Permission.CreateDockerHostOwnerUser,
|
|
7122
7610
|
title: "Create Docker Host User Owner",
|
|
@@ -7153,6 +7641,42 @@ export class PermissionHelper {
|
|
|
7153
7641
|
isRolePermission: false,
|
|
7154
7642
|
group: PermissionGroup.Telemetry,
|
|
7155
7643
|
},
|
|
7644
|
+
{
|
|
7645
|
+
permission: Permission.CreatePodmanHostOwnerUser,
|
|
7646
|
+
title: "Create Podman Host User Owner",
|
|
7647
|
+
description: "This permission can create Podman Host User Owner of this project.",
|
|
7648
|
+
isAssignableToTenant: true,
|
|
7649
|
+
isAccessControlPermission: false,
|
|
7650
|
+
isRolePermission: false,
|
|
7651
|
+
group: PermissionGroup.Telemetry,
|
|
7652
|
+
},
|
|
7653
|
+
{
|
|
7654
|
+
permission: Permission.DeletePodmanHostOwnerUser,
|
|
7655
|
+
title: "Delete Podman Host User Owner",
|
|
7656
|
+
description: "This permission can delete Podman Host User Owner of this project.",
|
|
7657
|
+
isAssignableToTenant: true,
|
|
7658
|
+
isAccessControlPermission: false,
|
|
7659
|
+
isRolePermission: false,
|
|
7660
|
+
group: PermissionGroup.Telemetry,
|
|
7661
|
+
},
|
|
7662
|
+
{
|
|
7663
|
+
permission: Permission.EditPodmanHostOwnerUser,
|
|
7664
|
+
title: "Edit Podman Host User Owner",
|
|
7665
|
+
description: "This permission can edit Podman Host User Owner of this project.",
|
|
7666
|
+
isAssignableToTenant: true,
|
|
7667
|
+
isAccessControlPermission: false,
|
|
7668
|
+
isRolePermission: false,
|
|
7669
|
+
group: PermissionGroup.Telemetry,
|
|
7670
|
+
},
|
|
7671
|
+
{
|
|
7672
|
+
permission: Permission.ReadPodmanHostOwnerUser,
|
|
7673
|
+
title: "Read Podman Host User Owner",
|
|
7674
|
+
description: "This permission can read Podman Host User Owner of this project.",
|
|
7675
|
+
isAssignableToTenant: true,
|
|
7676
|
+
isAccessControlPermission: false,
|
|
7677
|
+
isRolePermission: false,
|
|
7678
|
+
group: PermissionGroup.Telemetry,
|
|
7679
|
+
},
|
|
7156
7680
|
{
|
|
7157
7681
|
permission: Permission.CreateHost,
|
|
7158
7682
|
title: "Create Host",
|
|
@@ -8711,6 +9235,43 @@ export class PermissionHelper {
|
|
|
8711
9235
|
isRolePermission: false,
|
|
8712
9236
|
group: PermissionGroup.Telemetry,
|
|
8713
9237
|
},
|
|
9238
|
+
// Podman Host Owner Rule Permissions
|
|
9239
|
+
{
|
|
9240
|
+
permission: Permission.CreatePodmanHostOwnerRule,
|
|
9241
|
+
title: "Create Podman Host Owner Rule",
|
|
9242
|
+
description: "This permission can create Podman Host Owner Rules in this project.",
|
|
9243
|
+
isAssignableToTenant: true,
|
|
9244
|
+
isAccessControlPermission: false,
|
|
9245
|
+
isRolePermission: false,
|
|
9246
|
+
group: PermissionGroup.Telemetry,
|
|
9247
|
+
},
|
|
9248
|
+
{
|
|
9249
|
+
permission: Permission.DeletePodmanHostOwnerRule,
|
|
9250
|
+
title: "Delete Podman Host Owner Rule",
|
|
9251
|
+
description: "This permission can delete Podman Host Owner Rules of this project.",
|
|
9252
|
+
isAssignableToTenant: true,
|
|
9253
|
+
isAccessControlPermission: false,
|
|
9254
|
+
isRolePermission: false,
|
|
9255
|
+
group: PermissionGroup.Telemetry,
|
|
9256
|
+
},
|
|
9257
|
+
{
|
|
9258
|
+
permission: Permission.EditPodmanHostOwnerRule,
|
|
9259
|
+
title: "Edit Podman Host Owner Rule",
|
|
9260
|
+
description: "This permission can edit Podman Host Owner Rules of this project.",
|
|
9261
|
+
isAssignableToTenant: true,
|
|
9262
|
+
isAccessControlPermission: false,
|
|
9263
|
+
isRolePermission: false,
|
|
9264
|
+
group: PermissionGroup.Telemetry,
|
|
9265
|
+
},
|
|
9266
|
+
{
|
|
9267
|
+
permission: Permission.ReadPodmanHostOwnerRule,
|
|
9268
|
+
title: "Read Podman Host Owner Rule",
|
|
9269
|
+
description: "This permission can read Podman Host Owner Rules of this project.",
|
|
9270
|
+
isAssignableToTenant: true,
|
|
9271
|
+
isAccessControlPermission: false,
|
|
9272
|
+
isRolePermission: false,
|
|
9273
|
+
group: PermissionGroup.Telemetry,
|
|
9274
|
+
},
|
|
8714
9275
|
// Docker Host Label Rule Permissions
|
|
8715
9276
|
{
|
|
8716
9277
|
permission: Permission.CreateDockerHostLabelRule,
|
|
@@ -8748,6 +9309,43 @@ export class PermissionHelper {
|
|
|
8748
9309
|
isRolePermission: false,
|
|
8749
9310
|
group: PermissionGroup.Telemetry,
|
|
8750
9311
|
},
|
|
9312
|
+
// Podman Host Label Rule Permissions
|
|
9313
|
+
{
|
|
9314
|
+
permission: Permission.CreatePodmanHostLabelRule,
|
|
9315
|
+
title: "Create Podman Host Label Rule",
|
|
9316
|
+
description: "This permission can create Podman Host Label Rules in this project.",
|
|
9317
|
+
isAssignableToTenant: true,
|
|
9318
|
+
isAccessControlPermission: false,
|
|
9319
|
+
isRolePermission: false,
|
|
9320
|
+
group: PermissionGroup.Telemetry,
|
|
9321
|
+
},
|
|
9322
|
+
{
|
|
9323
|
+
permission: Permission.DeletePodmanHostLabelRule,
|
|
9324
|
+
title: "Delete Podman Host Label Rule",
|
|
9325
|
+
description: "This permission can delete Podman Host Label Rules of this project.",
|
|
9326
|
+
isAssignableToTenant: true,
|
|
9327
|
+
isAccessControlPermission: false,
|
|
9328
|
+
isRolePermission: false,
|
|
9329
|
+
group: PermissionGroup.Telemetry,
|
|
9330
|
+
},
|
|
9331
|
+
{
|
|
9332
|
+
permission: Permission.EditPodmanHostLabelRule,
|
|
9333
|
+
title: "Edit Podman Host Label Rule",
|
|
9334
|
+
description: "This permission can edit Podman Host Label Rules of this project.",
|
|
9335
|
+
isAssignableToTenant: true,
|
|
9336
|
+
isAccessControlPermission: false,
|
|
9337
|
+
isRolePermission: false,
|
|
9338
|
+
group: PermissionGroup.Telemetry,
|
|
9339
|
+
},
|
|
9340
|
+
{
|
|
9341
|
+
permission: Permission.ReadPodmanHostLabelRule,
|
|
9342
|
+
title: "Read Podman Host Label Rule",
|
|
9343
|
+
description: "This permission can read Podman Host Label Rules of this project.",
|
|
9344
|
+
isAssignableToTenant: true,
|
|
9345
|
+
isAccessControlPermission: false,
|
|
9346
|
+
isRolePermission: false,
|
|
9347
|
+
group: PermissionGroup.Telemetry,
|
|
9348
|
+
},
|
|
8751
9349
|
// Kubernetes Cluster Owner Rule Permissions
|
|
8752
9350
|
{
|
|
8753
9351
|
permission: Permission.CreateKubernetesClusterOwnerRule,
|
|
@@ -8822,6 +9420,232 @@ export class PermissionHelper {
|
|
|
8822
9420
|
isRolePermission: false,
|
|
8823
9421
|
group: PermissionGroup.Telemetry,
|
|
8824
9422
|
},
|
|
9423
|
+
/*
|
|
9424
|
+
* Proxmox Cluster Owner Rule Permissions
|
|
9425
|
+
* Docker Swarm Cluster Owner Rule Permissions
|
|
9426
|
+
*/
|
|
9427
|
+
{
|
|
9428
|
+
permission: Permission.CreateProxmoxClusterOwnerRule,
|
|
9429
|
+
title: "Create Proxmox Cluster Owner Rule",
|
|
9430
|
+
description: "This permission can create Proxmox Cluster Owner Rules in this project.",
|
|
9431
|
+
isAssignableToTenant: true,
|
|
9432
|
+
isAccessControlPermission: false,
|
|
9433
|
+
isRolePermission: false,
|
|
9434
|
+
group: PermissionGroup.Telemetry,
|
|
9435
|
+
},
|
|
9436
|
+
{
|
|
9437
|
+
permission: Permission.CreateDockerSwarmClusterOwnerRule,
|
|
9438
|
+
title: "Create Docker Swarm Cluster Owner Rule",
|
|
9439
|
+
description: "This permission can create Docker Swarm Cluster Owner Rules in this project.",
|
|
9440
|
+
isAssignableToTenant: true,
|
|
9441
|
+
isAccessControlPermission: false,
|
|
9442
|
+
isRolePermission: false,
|
|
9443
|
+
group: PermissionGroup.Telemetry,
|
|
9444
|
+
},
|
|
9445
|
+
{
|
|
9446
|
+
permission: Permission.DeleteProxmoxClusterOwnerRule,
|
|
9447
|
+
title: "Delete Proxmox Cluster Owner Rule",
|
|
9448
|
+
description: "This permission can delete Proxmox Cluster Owner Rules of this project.",
|
|
9449
|
+
isAssignableToTenant: true,
|
|
9450
|
+
isAccessControlPermission: false,
|
|
9451
|
+
isRolePermission: false,
|
|
9452
|
+
group: PermissionGroup.Telemetry,
|
|
9453
|
+
},
|
|
9454
|
+
{
|
|
9455
|
+
permission: Permission.DeleteDockerSwarmClusterOwnerRule,
|
|
9456
|
+
title: "Delete Docker Swarm Cluster Owner Rule",
|
|
9457
|
+
description: "This permission can delete Docker Swarm Cluster Owner Rules of this project.",
|
|
9458
|
+
isAssignableToTenant: true,
|
|
9459
|
+
isAccessControlPermission: false,
|
|
9460
|
+
isRolePermission: false,
|
|
9461
|
+
group: PermissionGroup.Telemetry,
|
|
9462
|
+
},
|
|
9463
|
+
{
|
|
9464
|
+
permission: Permission.EditProxmoxClusterOwnerRule,
|
|
9465
|
+
title: "Edit Proxmox Cluster Owner Rule",
|
|
9466
|
+
description: "This permission can edit Proxmox Cluster Owner Rules of this project.",
|
|
9467
|
+
isAssignableToTenant: true,
|
|
9468
|
+
isAccessControlPermission: false,
|
|
9469
|
+
isRolePermission: false,
|
|
9470
|
+
group: PermissionGroup.Telemetry,
|
|
9471
|
+
},
|
|
9472
|
+
{
|
|
9473
|
+
permission: Permission.EditDockerSwarmClusterOwnerRule,
|
|
9474
|
+
title: "Edit Docker Swarm Cluster Owner Rule",
|
|
9475
|
+
description: "This permission can edit Docker Swarm Cluster Owner Rules of this project.",
|
|
9476
|
+
isAssignableToTenant: true,
|
|
9477
|
+
isAccessControlPermission: false,
|
|
9478
|
+
isRolePermission: false,
|
|
9479
|
+
group: PermissionGroup.Telemetry,
|
|
9480
|
+
},
|
|
9481
|
+
{
|
|
9482
|
+
permission: Permission.ReadProxmoxClusterOwnerRule,
|
|
9483
|
+
title: "Read Proxmox Cluster Owner Rule",
|
|
9484
|
+
description: "This permission can read Proxmox Cluster Owner Rules of this project.",
|
|
9485
|
+
isAssignableToTenant: true,
|
|
9486
|
+
isAccessControlPermission: false,
|
|
9487
|
+
isRolePermission: false,
|
|
9488
|
+
group: PermissionGroup.Telemetry,
|
|
9489
|
+
},
|
|
9490
|
+
{
|
|
9491
|
+
permission: Permission.ReadDockerSwarmClusterOwnerRule,
|
|
9492
|
+
title: "Read Docker Swarm Cluster Owner Rule",
|
|
9493
|
+
description: "This permission can read Docker Swarm Cluster Owner Rules of this project.",
|
|
9494
|
+
isAssignableToTenant: true,
|
|
9495
|
+
isAccessControlPermission: false,
|
|
9496
|
+
isRolePermission: false,
|
|
9497
|
+
group: PermissionGroup.Telemetry,
|
|
9498
|
+
},
|
|
9499
|
+
/*
|
|
9500
|
+
* Proxmox Cluster Label Rule Permissions
|
|
9501
|
+
* Docker Swarm Cluster Label Rule Permissions
|
|
9502
|
+
*/
|
|
9503
|
+
{
|
|
9504
|
+
permission: Permission.CreateProxmoxClusterLabelRule,
|
|
9505
|
+
title: "Create Proxmox Cluster Label Rule",
|
|
9506
|
+
description: "This permission can create Proxmox Cluster Label Rules in this project.",
|
|
9507
|
+
isAssignableToTenant: true,
|
|
9508
|
+
isAccessControlPermission: false,
|
|
9509
|
+
isRolePermission: false,
|
|
9510
|
+
group: PermissionGroup.Telemetry,
|
|
9511
|
+
},
|
|
9512
|
+
{
|
|
9513
|
+
permission: Permission.CreateDockerSwarmClusterLabelRule,
|
|
9514
|
+
title: "Create Docker Swarm Cluster Label Rule",
|
|
9515
|
+
description: "This permission can create Docker Swarm Cluster Label Rules in this project.",
|
|
9516
|
+
isAssignableToTenant: true,
|
|
9517
|
+
isAccessControlPermission: false,
|
|
9518
|
+
isRolePermission: false,
|
|
9519
|
+
group: PermissionGroup.Telemetry,
|
|
9520
|
+
},
|
|
9521
|
+
{
|
|
9522
|
+
permission: Permission.DeleteProxmoxClusterLabelRule,
|
|
9523
|
+
title: "Delete Proxmox Cluster Label Rule",
|
|
9524
|
+
description: "This permission can delete Proxmox Cluster Label Rules of this project.",
|
|
9525
|
+
isAssignableToTenant: true,
|
|
9526
|
+
isAccessControlPermission: false,
|
|
9527
|
+
isRolePermission: false,
|
|
9528
|
+
group: PermissionGroup.Telemetry,
|
|
9529
|
+
},
|
|
9530
|
+
{
|
|
9531
|
+
permission: Permission.DeleteDockerSwarmClusterLabelRule,
|
|
9532
|
+
title: "Delete Docker Swarm Cluster Label Rule",
|
|
9533
|
+
description: "This permission can delete Docker Swarm Cluster Label Rules of this project.",
|
|
9534
|
+
isAssignableToTenant: true,
|
|
9535
|
+
isAccessControlPermission: false,
|
|
9536
|
+
isRolePermission: false,
|
|
9537
|
+
group: PermissionGroup.Telemetry,
|
|
9538
|
+
},
|
|
9539
|
+
{
|
|
9540
|
+
permission: Permission.EditProxmoxClusterLabelRule,
|
|
9541
|
+
title: "Edit Proxmox Cluster Label Rule",
|
|
9542
|
+
description: "This permission can edit Proxmox Cluster Label Rules of this project.",
|
|
9543
|
+
isAssignableToTenant: true,
|
|
9544
|
+
isAccessControlPermission: false,
|
|
9545
|
+
isRolePermission: false,
|
|
9546
|
+
group: PermissionGroup.Telemetry,
|
|
9547
|
+
},
|
|
9548
|
+
{
|
|
9549
|
+
permission: Permission.EditDockerSwarmClusterLabelRule,
|
|
9550
|
+
title: "Edit Docker Swarm Cluster Label Rule",
|
|
9551
|
+
description: "This permission can edit Docker Swarm Cluster Label Rules of this project.",
|
|
9552
|
+
isAssignableToTenant: true,
|
|
9553
|
+
isAccessControlPermission: false,
|
|
9554
|
+
isRolePermission: false,
|
|
9555
|
+
group: PermissionGroup.Telemetry,
|
|
9556
|
+
},
|
|
9557
|
+
{
|
|
9558
|
+
permission: Permission.ReadProxmoxClusterLabelRule,
|
|
9559
|
+
title: "Read Proxmox Cluster Label Rule",
|
|
9560
|
+
description: "This permission can read Proxmox Cluster Label Rules of this project.",
|
|
9561
|
+
isAssignableToTenant: true,
|
|
9562
|
+
isAccessControlPermission: false,
|
|
9563
|
+
isRolePermission: false,
|
|
9564
|
+
group: PermissionGroup.Telemetry,
|
|
9565
|
+
},
|
|
9566
|
+
{
|
|
9567
|
+
permission: Permission.ReadDockerSwarmClusterLabelRule,
|
|
9568
|
+
title: "Read Docker Swarm Cluster Label Rule",
|
|
9569
|
+
description: "This permission can read Docker Swarm Cluster Label Rules of this project.",
|
|
9570
|
+
isAssignableToTenant: true,
|
|
9571
|
+
isAccessControlPermission: false,
|
|
9572
|
+
isRolePermission: false,
|
|
9573
|
+
group: PermissionGroup.Telemetry,
|
|
9574
|
+
},
|
|
9575
|
+
// Ceph Cluster Owner Rule Permissions
|
|
9576
|
+
{
|
|
9577
|
+
permission: Permission.CreateCephClusterOwnerRule,
|
|
9578
|
+
title: "Create Ceph Cluster Owner Rule",
|
|
9579
|
+
description: "This permission can create Ceph Cluster Owner Rules in this project.",
|
|
9580
|
+
isAssignableToTenant: true,
|
|
9581
|
+
isAccessControlPermission: false,
|
|
9582
|
+
isRolePermission: false,
|
|
9583
|
+
group: PermissionGroup.Telemetry,
|
|
9584
|
+
},
|
|
9585
|
+
{
|
|
9586
|
+
permission: Permission.DeleteCephClusterOwnerRule,
|
|
9587
|
+
title: "Delete Ceph Cluster Owner Rule",
|
|
9588
|
+
description: "This permission can delete Ceph Cluster Owner Rules of this project.",
|
|
9589
|
+
isAssignableToTenant: true,
|
|
9590
|
+
isAccessControlPermission: false,
|
|
9591
|
+
isRolePermission: false,
|
|
9592
|
+
group: PermissionGroup.Telemetry,
|
|
9593
|
+
},
|
|
9594
|
+
{
|
|
9595
|
+
permission: Permission.EditCephClusterOwnerRule,
|
|
9596
|
+
title: "Edit Ceph Cluster Owner Rule",
|
|
9597
|
+
description: "This permission can edit Ceph Cluster Owner Rules of this project.",
|
|
9598
|
+
isAssignableToTenant: true,
|
|
9599
|
+
isAccessControlPermission: false,
|
|
9600
|
+
isRolePermission: false,
|
|
9601
|
+
group: PermissionGroup.Telemetry,
|
|
9602
|
+
},
|
|
9603
|
+
{
|
|
9604
|
+
permission: Permission.ReadCephClusterOwnerRule,
|
|
9605
|
+
title: "Read Ceph Cluster Owner Rule",
|
|
9606
|
+
description: "This permission can read Ceph Cluster Owner Rules of this project.",
|
|
9607
|
+
isAssignableToTenant: true,
|
|
9608
|
+
isAccessControlPermission: false,
|
|
9609
|
+
isRolePermission: false,
|
|
9610
|
+
group: PermissionGroup.Telemetry,
|
|
9611
|
+
},
|
|
9612
|
+
// Ceph Cluster Label Rule Permissions
|
|
9613
|
+
{
|
|
9614
|
+
permission: Permission.CreateCephClusterLabelRule,
|
|
9615
|
+
title: "Create Ceph Cluster Label Rule",
|
|
9616
|
+
description: "This permission can create Ceph Cluster Label Rules in this project.",
|
|
9617
|
+
isAssignableToTenant: true,
|
|
9618
|
+
isAccessControlPermission: false,
|
|
9619
|
+
isRolePermission: false,
|
|
9620
|
+
group: PermissionGroup.Telemetry,
|
|
9621
|
+
},
|
|
9622
|
+
{
|
|
9623
|
+
permission: Permission.DeleteCephClusterLabelRule,
|
|
9624
|
+
title: "Delete Ceph Cluster Label Rule",
|
|
9625
|
+
description: "This permission can delete Ceph Cluster Label Rules of this project.",
|
|
9626
|
+
isAssignableToTenant: true,
|
|
9627
|
+
isAccessControlPermission: false,
|
|
9628
|
+
isRolePermission: false,
|
|
9629
|
+
group: PermissionGroup.Telemetry,
|
|
9630
|
+
},
|
|
9631
|
+
{
|
|
9632
|
+
permission: Permission.EditCephClusterLabelRule,
|
|
9633
|
+
title: "Edit Ceph Cluster Label Rule",
|
|
9634
|
+
description: "This permission can edit Ceph Cluster Label Rules of this project.",
|
|
9635
|
+
isAssignableToTenant: true,
|
|
9636
|
+
isAccessControlPermission: false,
|
|
9637
|
+
isRolePermission: false,
|
|
9638
|
+
group: PermissionGroup.Telemetry,
|
|
9639
|
+
},
|
|
9640
|
+
{
|
|
9641
|
+
permission: Permission.ReadCephClusterLabelRule,
|
|
9642
|
+
title: "Read Ceph Cluster Label Rule",
|
|
9643
|
+
description: "This permission can read Ceph Cluster Label Rules of this project.",
|
|
9644
|
+
isAssignableToTenant: true,
|
|
9645
|
+
isAccessControlPermission: false,
|
|
9646
|
+
isRolePermission: false,
|
|
9647
|
+
group: PermissionGroup.Telemetry,
|
|
9648
|
+
},
|
|
8825
9649
|
// Runbook Owner Rule Permissions
|
|
8826
9650
|
{
|
|
8827
9651
|
permission: Permission.CreateRunbookOwnerRule,
|