@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
package/Types/Permission.ts
CHANGED
|
@@ -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.
|
|
8057
|
-
title: "Create
|
|
8317
|
+
permission: Permission.CreateProxmoxClusterOwnerTeam,
|
|
8318
|
+
title: "Create Proxmox Cluster Team Owner",
|
|
8058
8319
|
description:
|
|
8059
|
-
"This permission can create
|
|
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.
|
|
8067
|
-
title: "
|
|
8327
|
+
permission: Permission.CreateDockerSwarmClusterOwnerTeam,
|
|
8328
|
+
title: "Create Docker Swarm Cluster Team Owner",
|
|
8068
8329
|
description:
|
|
8069
|
-
"This permission can
|
|
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.
|
|
8077
|
-
title: "
|
|
8337
|
+
permission: Permission.DeleteProxmoxClusterOwnerTeam,
|
|
8338
|
+
title: "Delete Proxmox Cluster Team Owner",
|
|
8078
8339
|
description:
|
|
8079
|
-
"This permission can
|
|
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.
|
|
8087
|
-
title: "
|
|
8347
|
+
permission: Permission.DeleteDockerSwarmClusterOwnerTeam,
|
|
8348
|
+
title: "Delete Docker Swarm Cluster Team Owner",
|
|
8088
8349
|
description:
|
|
8089
|
-
"This permission can
|
|
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.
|
|
8098
|
-
title: "
|
|
8357
|
+
permission: Permission.EditProxmoxClusterOwnerTeam,
|
|
8358
|
+
title: "Edit Proxmox Cluster Team Owner",
|
|
8099
8359
|
description:
|
|
8100
|
-
"This permission can
|
|
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.
|
|
8108
|
-
title: "
|
|
8367
|
+
permission: Permission.EditDockerSwarmClusterOwnerTeam,
|
|
8368
|
+
title: "Edit Docker Swarm Cluster Team Owner",
|
|
8109
8369
|
description:
|
|
8110
|
-
"This permission can
|
|
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.
|
|
8118
|
-
title: "
|
|
8377
|
+
permission: Permission.ReadProxmoxClusterOwnerTeam,
|
|
8378
|
+
title: "Read Proxmox Cluster Team Owner",
|
|
8119
8379
|
description:
|
|
8120
|
-
"This permission can
|
|
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.
|
|
8128
|
-
title: "Read Docker
|
|
8387
|
+
permission: Permission.ReadDockerSwarmClusterOwnerTeam,
|
|
8388
|
+
title: "Read Docker Swarm Cluster Team Owner",
|
|
8129
8389
|
description:
|
|
8130
|
-
"This permission can read Docker
|
|
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.
|
|
8139
|
-
title: "Create
|
|
8140
|
-
description:
|
|
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.
|
|
8148
|
-
title: "
|
|
8149
|
-
description:
|
|
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:
|
|
8413
|
+
isAccessControlPermission: false,
|
|
8152
8414
|
isRolePermission: false,
|
|
8153
8415
|
group: PermissionGroup.Telemetry,
|
|
8154
8416
|
},
|
|
8155
8417
|
{
|
|
8156
|
-
permission: Permission.
|
|
8157
|
-
title: "
|
|
8158
|
-
description:
|
|
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:
|
|
8423
|
+
isAccessControlPermission: false,
|
|
8161
8424
|
isRolePermission: false,
|
|
8162
8425
|
group: PermissionGroup.Telemetry,
|
|
8163
8426
|
},
|
|
8164
8427
|
{
|
|
8165
|
-
permission: Permission.
|
|
8166
|
-
title: "
|
|
8167
|
-
description:
|
|
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:
|
|
8433
|
+
isAccessControlPermission: false,
|
|
8170
8434
|
isRolePermission: false,
|
|
8171
8435
|
group: PermissionGroup.Telemetry,
|
|
8172
8436
|
},
|
|
8173
|
-
|
|
8174
8437
|
{
|
|
8175
|
-
permission: Permission.
|
|
8176
|
-
title: "
|
|
8438
|
+
permission: Permission.EditProxmoxClusterOwnerUser,
|
|
8439
|
+
title: "Edit Proxmox Cluster User Owner",
|
|
8177
8440
|
description:
|
|
8178
|
-
"This permission can
|
|
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.
|
|
8186
|
-
title: "
|
|
8448
|
+
permission: Permission.EditDockerSwarmClusterOwnerUser,
|
|
8449
|
+
title: "Edit Docker Swarm Cluster User Owner",
|
|
8187
8450
|
description:
|
|
8188
|
-
"This permission can
|
|
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.
|
|
8196
|
-
title: "
|
|
8458
|
+
permission: Permission.ReadProxmoxClusterOwnerUser,
|
|
8459
|
+
title: "Read Proxmox Cluster User Owner",
|
|
8197
8460
|
description:
|
|
8198
|
-
"This permission can
|
|
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.
|
|
8206
|
-
title: "Read
|
|
8468
|
+
permission: Permission.ReadDockerSwarmClusterOwnerUser,
|
|
8469
|
+
title: "Read Docker Swarm Cluster User Owner",
|
|
8207
8470
|
description:
|
|
8208
|
-
"This permission can read
|
|
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.
|
|
8217
|
-
title: "Create
|
|
8479
|
+
permission: Permission.CreateCephClusterOwnerTeam,
|
|
8480
|
+
title: "Create Ceph Cluster Team Owner",
|
|
8218
8481
|
description:
|
|
8219
|
-
"This permission can create
|
|
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.
|
|
8227
|
-
title: "Delete
|
|
8489
|
+
permission: Permission.DeleteCephClusterOwnerTeam,
|
|
8490
|
+
title: "Delete Ceph Cluster Team Owner",
|
|
8228
8491
|
description:
|
|
8229
|
-
"This permission can delete
|
|
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.
|
|
8237
|
-
title: "Edit
|
|
8499
|
+
permission: Permission.EditCephClusterOwnerTeam,
|
|
8500
|
+
title: "Edit Ceph Cluster Team Owner",
|
|
8238
8501
|
description:
|
|
8239
|
-
"This permission can edit
|
|
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.
|
|
8247
|
-
title: "Read
|
|
8509
|
+
permission: Permission.ReadCephClusterOwnerTeam,
|
|
8510
|
+
title: "Read Ceph Cluster Team Owner",
|
|
8248
8511
|
description:
|
|
8249
|
-
"This permission can read
|
|
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.
|
|
8258
|
-
title: "Create
|
|
8259
|
-
description:
|
|
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:
|
|
8525
|
+
isAccessControlPermission: false,
|
|
8262
8526
|
isRolePermission: false,
|
|
8263
|
-
group: PermissionGroup.
|
|
8527
|
+
group: PermissionGroup.Telemetry,
|
|
8264
8528
|
},
|
|
8265
8529
|
{
|
|
8266
|
-
permission: Permission.
|
|
8267
|
-
title: "Delete
|
|
8268
|
-
description:
|
|
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:
|
|
8535
|
+
isAccessControlPermission: false,
|
|
8271
8536
|
isRolePermission: false,
|
|
8272
|
-
group: PermissionGroup.
|
|
8537
|
+
group: PermissionGroup.Telemetry,
|
|
8273
8538
|
},
|
|
8274
8539
|
{
|
|
8275
|
-
permission: Permission.
|
|
8276
|
-
title: "Edit
|
|
8277
|
-
description:
|
|
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:
|
|
8545
|
+
isAccessControlPermission: false,
|
|
8280
8546
|
isRolePermission: false,
|
|
8281
|
-
group: PermissionGroup.
|
|
8547
|
+
group: PermissionGroup.Telemetry,
|
|
8282
8548
|
},
|
|
8283
8549
|
{
|
|
8284
|
-
permission: Permission.
|
|
8285
|
-
title: "Read
|
|
8286
|
-
description:
|
|
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:
|
|
8555
|
+
isAccessControlPermission: false,
|
|
8289
8556
|
isRolePermission: false,
|
|
8290
|
-
group: PermissionGroup.
|
|
8557
|
+
group: PermissionGroup.Telemetry,
|
|
8291
8558
|
},
|
|
8292
8559
|
|
|
8293
8560
|
{
|
|
8294
|
-
permission: Permission.
|
|
8295
|
-
title: "Create
|
|
8561
|
+
permission: Permission.CreateDockerHostOwnerTeam,
|
|
8562
|
+
title: "Create Docker Host Team Owner",
|
|
8296
8563
|
description:
|
|
8297
|
-
"This permission can create
|
|
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.
|
|
8568
|
+
group: PermissionGroup.Telemetry,
|
|
8302
8569
|
},
|
|
8303
8570
|
{
|
|
8304
|
-
permission: Permission.
|
|
8305
|
-
title: "Delete
|
|
8571
|
+
permission: Permission.DeleteDockerHostOwnerTeam,
|
|
8572
|
+
title: "Delete Docker Host Team Owner",
|
|
8306
8573
|
description:
|
|
8307
|
-
"This permission can delete
|
|
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.
|
|
8578
|
+
group: PermissionGroup.Telemetry,
|
|
8312
8579
|
},
|
|
8313
8580
|
{
|
|
8314
|
-
permission: Permission.
|
|
8315
|
-
title: "Edit
|
|
8581
|
+
permission: Permission.EditDockerHostOwnerTeam,
|
|
8582
|
+
title: "Edit Docker Host Team Owner",
|
|
8316
8583
|
description:
|
|
8317
|
-
"This permission can edit
|
|
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.
|
|
8588
|
+
group: PermissionGroup.Telemetry,
|
|
8322
8589
|
},
|
|
8323
8590
|
{
|
|
8324
|
-
permission: Permission.
|
|
8325
|
-
title: "Read
|
|
8591
|
+
permission: Permission.ReadDockerHostOwnerTeam,
|
|
8592
|
+
title: "Read Docker Host Team Owner",
|
|
8326
8593
|
description:
|
|
8327
|
-
"This permission can read
|
|
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.
|
|
8598
|
+
group: PermissionGroup.Telemetry,
|
|
8332
8599
|
},
|
|
8333
8600
|
|
|
8334
8601
|
{
|
|
8335
|
-
permission: Permission.
|
|
8336
|
-
title: "Create
|
|
8602
|
+
permission: Permission.CreatePodmanHostOwnerTeam,
|
|
8603
|
+
title: "Create Podman Host Team Owner",
|
|
8337
8604
|
description:
|
|
8338
|
-
"This permission can create
|
|
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,
|