@oneuptime/common 11.0.0 → 11.0.2
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 +110 -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/Host.ts +64 -0
- package/Models/DatabaseModels/Incident.ts +110 -0
- package/Models/DatabaseModels/Index.ts +24 -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 +110 -0
- package/Server/API/BillingInvoiceAPI.ts +47 -7
- package/Server/API/CephResourceAPI.ts +134 -0
- package/Server/API/DashboardAPI.ts +46 -0
- package/Server/API/ProjectAPI.ts +15 -0
- package/Server/API/ProxmoxResourceAPI.ts +132 -0
- package/Server/API/ResellerPlanAPI.ts +17 -0
- package/Server/Infrastructure/GlobalCache.ts +8 -2
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.ts +163 -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 +8 -0
- package/Server/Infrastructure/Redis.ts +40 -12
- 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/ExceptionAggregationService.ts +2 -0
- package/Server/Services/HostService.ts +11 -3
- package/Server/Services/Index.ts +24 -0
- package/Server/Services/KubernetesClusterService.ts +11 -3
- package/Server/Services/LogAggregationService.ts +2 -0
- package/Server/Services/MetricAggregationService.ts +2 -0
- package/Server/Services/OpenTelemetryIngestService.ts +36 -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/ServerlessFunctionService.ts +11 -3
- package/Server/Services/TelemetryUsageBillingService.ts +41 -3
- package/Server/Services/TraceAggregationService.ts +2 -0
- package/Server/Types/AnalyticsDatabase/AggregateBy.ts +8 -23
- package/Server/Utils/Monitor/MonitorAlert.ts +45 -0
- package/Server/Utils/Monitor/MonitorClusterContext.ts +129 -0
- package/Server/Utils/Monitor/MonitorCriteriaEvaluator.ts +344 -4
- package/Server/Utils/Monitor/MonitorIncident.ts +130 -7
- package/Server/Utils/Monitor/MonitorMaintenanceSuppression.ts +39 -6
- package/Server/Utils/Monitor/MonitorTemplateUtil.ts +3 -1
- package/Server/Utils/Monitor/SeriesResourceLabels.ts +33 -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/TelemetryEntity.ts +85 -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 +13 -0
- package/Tests/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.test.ts +879 -0
- package/Tests/Server/Utils/Telemetry/TelemetryEntity.test.ts +196 -0
- package/Tests/Types/Monitor/CephAlertTemplates.test.ts +1231 -0
- package/Tests/Types/Monitor/ProxmoxAlertTemplates.test.ts +732 -0
- package/Tests/Utils/ModelImportExport.test.ts +366 -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 +4 -0
- package/Types/Dashboard/DashboardComponents/ComponentArgument.ts +2 -0
- package/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.ts +14 -0
- package/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.ts +17 -0
- package/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.ts +16 -0
- package/Types/Dashboard/DashboardTemplates.ts +446 -0
- package/Types/Icon/IconProp.ts +2 -0
- package/Types/Monitor/CephAlertTemplates.ts +1647 -0
- package/Types/Monitor/CephMetricCatalog.ts +409 -0
- package/Types/Monitor/MetricMonitor/MetricMonitorResponse.ts +44 -0
- package/Types/Monitor/MonitorStep.ts +64 -0
- package/Types/Monitor/MonitorStepCephMonitor.ts +57 -0
- package/Types/Monitor/MonitorStepProxmoxMonitor.ts +81 -0
- package/Types/Monitor/MonitorType.ts +29 -1
- package/Types/Monitor/ProxmoxAlertTemplates.ts +899 -0
- package/Types/Monitor/ProxmoxMetricCatalog.ts +382 -0
- package/Types/Permission.ts +464 -0
- package/Types/Telemetry/EntityType.ts +11 -0
- package/Types/Telemetry/ServiceType.ts +2 -0
- package/UI/Components/Icon/Icon.tsx +84 -0
- package/UI/Components/ImportExport/ExportModelCard.tsx +90 -0
- package/UI/Components/ImportExport/ImportModelsModal.tsx +239 -0
- package/UI/Components/ModelTable/ModelTable.tsx +294 -143
- package/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.ts +9 -5
- package/UI/Utils/ModelImportExport.ts +207 -0
- package/UI/Utils/Telemetry/Telemetry.ts +16 -21
- package/UI/Utils/TelemetryService.ts +7 -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/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 +28 -0
- package/Utils/ModelImportExport.ts +369 -0
- package/Utils/Telemetry/EntityKey.ts +35 -0
- package/Utils/Telemetry/EntityRelationship.ts +6 -0
- package/Utils/Telemetry/HeartbeatAvailability.ts +262 -0
- package/build/dist/Models/DatabaseModels/Alert.js +108 -0
- package/build/dist/Models/DatabaseModels/Alert.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/Host.js +63 -0
- package/build/dist/Models/DatabaseModels/Host.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Incident.js +108 -0
- package/build/dist/Models/DatabaseModels/Incident.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Index.js +24 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- 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 +108 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenance.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 +46 -0
- package/build/dist/Server/API/DashboardAPI.js.map +1 -1
- 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/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/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 +8 -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/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/ExceptionAggregationService.js +2 -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/Index.js +24 -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 +2 -0
- package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
- package/build/dist/Server/Services/MetricAggregationService.js +2 -0
- package/build/dist/Server/Services/MetricAggregationService.js.map +1 -1
- package/build/dist/Server/Services/OpenTelemetryIngestService.js +37 -7
- package/build/dist/Server/Services/OpenTelemetryIngestService.js.map +1 -1
- 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/ServerlessFunctionService.js +10 -2
- package/build/dist/Server/Services/ServerlessFunctionService.js.map +1 -1
- package/build/dist/Server/Services/TelemetryUsageBillingService.js +30 -3
- package/build/dist/Server/Services/TelemetryUsageBillingService.js.map +1 -1
- package/build/dist/Server/Services/TraceAggregationService.js +2 -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/Utils/Monitor/MonitorAlert.js +36 -0
- package/build/dist/Server/Utils/Monitor/MonitorAlert.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js +90 -0
- package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js.map +1 -0
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js +228 -4
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js +103 -8
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js +23 -6
- package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js +3 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/SeriesResourceLabels.js +23 -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/TelemetryEntity.js +62 -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 +4 -0
- package/build/dist/Types/Dashboard/DashboardComponentType.js.map +1 -1
- package/build/dist/Types/Dashboard/DashboardComponents/ComponentArgument.js +2 -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/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 +394 -0
- package/build/dist/Types/Dashboard/DashboardTemplates.js.map +1 -1
- package/build/dist/Types/Icon/IconProp.js +2 -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/MonitorStep.js +46 -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/MonitorStepProxmoxMonitor.js +36 -0
- package/build/dist/Types/Monitor/MonitorStepProxmoxMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorType.js +27 -1
- package/build/dist/Types/Monitor/MonitorType.js.map +1 -1
- 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 +408 -0
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/Types/Telemetry/EntityType.js +11 -0
- package/build/dist/Types/Telemetry/EntityType.js.map +1 -1
- package/build/dist/Types/Telemetry/ServiceType.js +2 -0
- package/build/dist/Types/Telemetry/ServiceType.js.map +1 -1
- package/build/dist/UI/Components/Icon/Icon.js +33 -0
- package/build/dist/UI/Components/Icon/Icon.js.map +1 -1
- package/build/dist/UI/Components/ImportExport/ExportModelCard.js +50 -0
- package/build/dist/UI/Components/ImportExport/ExportModelCard.js.map +1 -0
- package/build/dist/UI/Components/ImportExport/ImportModelsModal.js +115 -0
- package/build/dist/UI/Components/ImportExport/ImportModelsModal.js.map +1 -0
- package/build/dist/UI/Components/ModelTable/ModelTable.js +166 -74
- package/build/dist/UI/Components/ModelTable/ModelTable.js.map +1 -1
- package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js +5 -1
- package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js.map +1 -1
- package/build/dist/UI/Utils/ModelImportExport.js +142 -0
- package/build/dist/UI/Utils/ModelImportExport.js.map +1 -0
- 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 +5 -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/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 +16 -0
- package/build/dist/Utils/Dashboard/Components/Index.js.map +1 -1
- package/build/dist/Utils/ModelImportExport.js +257 -0
- package/build/dist/Utils/ModelImportExport.js.map +1 -0
- package/build/dist/Utils/Telemetry/EntityKey.js +27 -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
|
@@ -411,6 +411,26 @@ var Permission;
|
|
|
411
411
|
Permission["DeleteKubernetesClusterLabelRule"] = "DeleteKubernetesClusterLabelRule";
|
|
412
412
|
Permission["EditKubernetesClusterLabelRule"] = "EditKubernetesClusterLabelRule";
|
|
413
413
|
Permission["ReadKubernetesClusterLabelRule"] = "ReadKubernetesClusterLabelRule";
|
|
414
|
+
// Proxmox Cluster Owner Rule Permissions
|
|
415
|
+
Permission["CreateProxmoxClusterOwnerRule"] = "CreateProxmoxClusterOwnerRule";
|
|
416
|
+
Permission["DeleteProxmoxClusterOwnerRule"] = "DeleteProxmoxClusterOwnerRule";
|
|
417
|
+
Permission["EditProxmoxClusterOwnerRule"] = "EditProxmoxClusterOwnerRule";
|
|
418
|
+
Permission["ReadProxmoxClusterOwnerRule"] = "ReadProxmoxClusterOwnerRule";
|
|
419
|
+
// Proxmox Cluster Label Rule Permissions
|
|
420
|
+
Permission["CreateProxmoxClusterLabelRule"] = "CreateProxmoxClusterLabelRule";
|
|
421
|
+
Permission["DeleteProxmoxClusterLabelRule"] = "DeleteProxmoxClusterLabelRule";
|
|
422
|
+
Permission["EditProxmoxClusterLabelRule"] = "EditProxmoxClusterLabelRule";
|
|
423
|
+
Permission["ReadProxmoxClusterLabelRule"] = "ReadProxmoxClusterLabelRule";
|
|
424
|
+
// Ceph Cluster Owner Rule Permissions
|
|
425
|
+
Permission["CreateCephClusterOwnerRule"] = "CreateCephClusterOwnerRule";
|
|
426
|
+
Permission["DeleteCephClusterOwnerRule"] = "DeleteCephClusterOwnerRule";
|
|
427
|
+
Permission["EditCephClusterOwnerRule"] = "EditCephClusterOwnerRule";
|
|
428
|
+
Permission["ReadCephClusterOwnerRule"] = "ReadCephClusterOwnerRule";
|
|
429
|
+
// Ceph Cluster Label Rule Permissions
|
|
430
|
+
Permission["CreateCephClusterLabelRule"] = "CreateCephClusterLabelRule";
|
|
431
|
+
Permission["DeleteCephClusterLabelRule"] = "DeleteCephClusterLabelRule";
|
|
432
|
+
Permission["EditCephClusterLabelRule"] = "EditCephClusterLabelRule";
|
|
433
|
+
Permission["ReadCephClusterLabelRule"] = "ReadCephClusterLabelRule";
|
|
414
434
|
// Runbook Owner Rule Permissions
|
|
415
435
|
Permission["CreateRunbookOwnerRule"] = "CreateRunbookOwnerRule";
|
|
416
436
|
Permission["DeleteRunbookOwnerRule"] = "DeleteRunbookOwnerRule";
|
|
@@ -884,6 +904,30 @@ var Permission;
|
|
|
884
904
|
Permission["DeleteDockerHostOwnerUser"] = "DeleteDockerHostOwnerUser";
|
|
885
905
|
Permission["EditDockerHostOwnerUser"] = "EditDockerHostOwnerUser";
|
|
886
906
|
Permission["ReadDockerHostOwnerUser"] = "ReadDockerHostOwnerUser";
|
|
907
|
+
Permission["CreateProxmoxCluster"] = "CreateProxmoxCluster";
|
|
908
|
+
Permission["DeleteProxmoxCluster"] = "DeleteProxmoxCluster";
|
|
909
|
+
Permission["EditProxmoxCluster"] = "EditProxmoxCluster";
|
|
910
|
+
Permission["ReadProxmoxCluster"] = "ReadProxmoxCluster";
|
|
911
|
+
Permission["CreateCephCluster"] = "CreateCephCluster";
|
|
912
|
+
Permission["DeleteCephCluster"] = "DeleteCephCluster";
|
|
913
|
+
Permission["EditCephCluster"] = "EditCephCluster";
|
|
914
|
+
Permission["ReadCephCluster"] = "ReadCephCluster";
|
|
915
|
+
Permission["CreateProxmoxClusterOwnerTeam"] = "CreateProxmoxClusterOwnerTeam";
|
|
916
|
+
Permission["DeleteProxmoxClusterOwnerTeam"] = "DeleteProxmoxClusterOwnerTeam";
|
|
917
|
+
Permission["EditProxmoxClusterOwnerTeam"] = "EditProxmoxClusterOwnerTeam";
|
|
918
|
+
Permission["ReadProxmoxClusterOwnerTeam"] = "ReadProxmoxClusterOwnerTeam";
|
|
919
|
+
Permission["CreateProxmoxClusterOwnerUser"] = "CreateProxmoxClusterOwnerUser";
|
|
920
|
+
Permission["DeleteProxmoxClusterOwnerUser"] = "DeleteProxmoxClusterOwnerUser";
|
|
921
|
+
Permission["EditProxmoxClusterOwnerUser"] = "EditProxmoxClusterOwnerUser";
|
|
922
|
+
Permission["ReadProxmoxClusterOwnerUser"] = "ReadProxmoxClusterOwnerUser";
|
|
923
|
+
Permission["CreateCephClusterOwnerTeam"] = "CreateCephClusterOwnerTeam";
|
|
924
|
+
Permission["DeleteCephClusterOwnerTeam"] = "DeleteCephClusterOwnerTeam";
|
|
925
|
+
Permission["EditCephClusterOwnerTeam"] = "EditCephClusterOwnerTeam";
|
|
926
|
+
Permission["ReadCephClusterOwnerTeam"] = "ReadCephClusterOwnerTeam";
|
|
927
|
+
Permission["CreateCephClusterOwnerUser"] = "CreateCephClusterOwnerUser";
|
|
928
|
+
Permission["DeleteCephClusterOwnerUser"] = "DeleteCephClusterOwnerUser";
|
|
929
|
+
Permission["EditCephClusterOwnerUser"] = "EditCephClusterOwnerUser";
|
|
930
|
+
Permission["ReadCephClusterOwnerUser"] = "ReadCephClusterOwnerUser";
|
|
887
931
|
Permission["CreateHost"] = "CreateHost";
|
|
888
932
|
Permission["DeleteHost"] = "DeleteHost";
|
|
889
933
|
Permission["EditHost"] = "EditHost";
|
|
@@ -6461,6 +6505,78 @@ export class PermissionHelper {
|
|
|
6461
6505
|
isRolePermission: false,
|
|
6462
6506
|
group: PermissionGroup.Telemetry,
|
|
6463
6507
|
},
|
|
6508
|
+
{
|
|
6509
|
+
permission: Permission.CreateProxmoxCluster,
|
|
6510
|
+
title: "Create Proxmox Cluster",
|
|
6511
|
+
description: "This permission can create Proxmox Cluster in this project.",
|
|
6512
|
+
isAssignableToTenant: true,
|
|
6513
|
+
isAccessControlPermission: false,
|
|
6514
|
+
isRolePermission: false,
|
|
6515
|
+
group: PermissionGroup.Telemetry,
|
|
6516
|
+
},
|
|
6517
|
+
{
|
|
6518
|
+
permission: Permission.DeleteProxmoxCluster,
|
|
6519
|
+
title: "Delete Proxmox Cluster",
|
|
6520
|
+
description: "This permission can delete Proxmox Cluster of this project.",
|
|
6521
|
+
isAssignableToTenant: true,
|
|
6522
|
+
isAccessControlPermission: true,
|
|
6523
|
+
isRolePermission: false,
|
|
6524
|
+
group: PermissionGroup.Telemetry,
|
|
6525
|
+
},
|
|
6526
|
+
{
|
|
6527
|
+
permission: Permission.EditProxmoxCluster,
|
|
6528
|
+
title: "Edit Proxmox Cluster",
|
|
6529
|
+
description: "This permission can edit Proxmox Cluster of this project.",
|
|
6530
|
+
isAssignableToTenant: true,
|
|
6531
|
+
isAccessControlPermission: true,
|
|
6532
|
+
isRolePermission: false,
|
|
6533
|
+
group: PermissionGroup.Telemetry,
|
|
6534
|
+
},
|
|
6535
|
+
{
|
|
6536
|
+
permission: Permission.ReadProxmoxCluster,
|
|
6537
|
+
title: "Read Proxmox Cluster",
|
|
6538
|
+
description: "This permission can read Proxmox Cluster of this project.",
|
|
6539
|
+
isAssignableToTenant: true,
|
|
6540
|
+
isAccessControlPermission: true,
|
|
6541
|
+
isRolePermission: false,
|
|
6542
|
+
group: PermissionGroup.Telemetry,
|
|
6543
|
+
},
|
|
6544
|
+
{
|
|
6545
|
+
permission: Permission.CreateCephCluster,
|
|
6546
|
+
title: "Create Ceph Cluster",
|
|
6547
|
+
description: "This permission can create Ceph Cluster in this project.",
|
|
6548
|
+
isAssignableToTenant: true,
|
|
6549
|
+
isAccessControlPermission: false,
|
|
6550
|
+
isRolePermission: false,
|
|
6551
|
+
group: PermissionGroup.Telemetry,
|
|
6552
|
+
},
|
|
6553
|
+
{
|
|
6554
|
+
permission: Permission.DeleteCephCluster,
|
|
6555
|
+
title: "Delete Ceph Cluster",
|
|
6556
|
+
description: "This permission can delete Ceph Cluster of this project.",
|
|
6557
|
+
isAssignableToTenant: true,
|
|
6558
|
+
isAccessControlPermission: true,
|
|
6559
|
+
isRolePermission: false,
|
|
6560
|
+
group: PermissionGroup.Telemetry,
|
|
6561
|
+
},
|
|
6562
|
+
{
|
|
6563
|
+
permission: Permission.EditCephCluster,
|
|
6564
|
+
title: "Edit Ceph Cluster",
|
|
6565
|
+
description: "This permission can edit Ceph Cluster of this project.",
|
|
6566
|
+
isAssignableToTenant: true,
|
|
6567
|
+
isAccessControlPermission: true,
|
|
6568
|
+
isRolePermission: false,
|
|
6569
|
+
group: PermissionGroup.Telemetry,
|
|
6570
|
+
},
|
|
6571
|
+
{
|
|
6572
|
+
permission: Permission.ReadCephCluster,
|
|
6573
|
+
title: "Read Ceph Cluster",
|
|
6574
|
+
description: "This permission can read Ceph Cluster of this project.",
|
|
6575
|
+
isAssignableToTenant: true,
|
|
6576
|
+
isAccessControlPermission: true,
|
|
6577
|
+
isRolePermission: false,
|
|
6578
|
+
group: PermissionGroup.Telemetry,
|
|
6579
|
+
},
|
|
6464
6580
|
];
|
|
6465
6581
|
/*
|
|
6466
6582
|
* Split into a second array (concatenated below) so the single array
|
|
@@ -7081,6 +7197,150 @@ export class PermissionHelper {
|
|
|
7081
7197
|
isRolePermission: false,
|
|
7082
7198
|
group: PermissionGroup.Telemetry,
|
|
7083
7199
|
},
|
|
7200
|
+
{
|
|
7201
|
+
permission: Permission.CreateProxmoxClusterOwnerTeam,
|
|
7202
|
+
title: "Create Proxmox Cluster Team Owner",
|
|
7203
|
+
description: "This permission can create Proxmox Cluster Team Owner of this project.",
|
|
7204
|
+
isAssignableToTenant: true,
|
|
7205
|
+
isAccessControlPermission: false,
|
|
7206
|
+
isRolePermission: false,
|
|
7207
|
+
group: PermissionGroup.Telemetry,
|
|
7208
|
+
},
|
|
7209
|
+
{
|
|
7210
|
+
permission: Permission.DeleteProxmoxClusterOwnerTeam,
|
|
7211
|
+
title: "Delete Proxmox Cluster Team Owner",
|
|
7212
|
+
description: "This permission can delete Proxmox Cluster Team Owner of this project.",
|
|
7213
|
+
isAssignableToTenant: true,
|
|
7214
|
+
isAccessControlPermission: false,
|
|
7215
|
+
isRolePermission: false,
|
|
7216
|
+
group: PermissionGroup.Telemetry,
|
|
7217
|
+
},
|
|
7218
|
+
{
|
|
7219
|
+
permission: Permission.EditProxmoxClusterOwnerTeam,
|
|
7220
|
+
title: "Edit Proxmox Cluster Team Owner",
|
|
7221
|
+
description: "This permission can edit Proxmox Cluster Team Owner of this project.",
|
|
7222
|
+
isAssignableToTenant: true,
|
|
7223
|
+
isAccessControlPermission: false,
|
|
7224
|
+
isRolePermission: false,
|
|
7225
|
+
group: PermissionGroup.Telemetry,
|
|
7226
|
+
},
|
|
7227
|
+
{
|
|
7228
|
+
permission: Permission.ReadProxmoxClusterOwnerTeam,
|
|
7229
|
+
title: "Read Proxmox Cluster Team Owner",
|
|
7230
|
+
description: "This permission can read Proxmox Cluster Team Owner of this project.",
|
|
7231
|
+
isAssignableToTenant: true,
|
|
7232
|
+
isAccessControlPermission: false,
|
|
7233
|
+
isRolePermission: false,
|
|
7234
|
+
group: PermissionGroup.Telemetry,
|
|
7235
|
+
},
|
|
7236
|
+
{
|
|
7237
|
+
permission: Permission.CreateProxmoxClusterOwnerUser,
|
|
7238
|
+
title: "Create Proxmox Cluster User Owner",
|
|
7239
|
+
description: "This permission can create Proxmox Cluster User Owner of this project.",
|
|
7240
|
+
isAssignableToTenant: true,
|
|
7241
|
+
isAccessControlPermission: false,
|
|
7242
|
+
isRolePermission: false,
|
|
7243
|
+
group: PermissionGroup.Telemetry,
|
|
7244
|
+
},
|
|
7245
|
+
{
|
|
7246
|
+
permission: Permission.DeleteProxmoxClusterOwnerUser,
|
|
7247
|
+
title: "Delete Proxmox Cluster User Owner",
|
|
7248
|
+
description: "This permission can delete Proxmox Cluster User Owner of this project.",
|
|
7249
|
+
isAssignableToTenant: true,
|
|
7250
|
+
isAccessControlPermission: false,
|
|
7251
|
+
isRolePermission: false,
|
|
7252
|
+
group: PermissionGroup.Telemetry,
|
|
7253
|
+
},
|
|
7254
|
+
{
|
|
7255
|
+
permission: Permission.EditProxmoxClusterOwnerUser,
|
|
7256
|
+
title: "Edit Proxmox Cluster User Owner",
|
|
7257
|
+
description: "This permission can edit Proxmox Cluster User Owner of this project.",
|
|
7258
|
+
isAssignableToTenant: true,
|
|
7259
|
+
isAccessControlPermission: false,
|
|
7260
|
+
isRolePermission: false,
|
|
7261
|
+
group: PermissionGroup.Telemetry,
|
|
7262
|
+
},
|
|
7263
|
+
{
|
|
7264
|
+
permission: Permission.ReadProxmoxClusterOwnerUser,
|
|
7265
|
+
title: "Read Proxmox Cluster User Owner",
|
|
7266
|
+
description: "This permission can read Proxmox Cluster User Owner of this project.",
|
|
7267
|
+
isAssignableToTenant: true,
|
|
7268
|
+
isAccessControlPermission: false,
|
|
7269
|
+
isRolePermission: false,
|
|
7270
|
+
group: PermissionGroup.Telemetry,
|
|
7271
|
+
},
|
|
7272
|
+
{
|
|
7273
|
+
permission: Permission.CreateCephClusterOwnerTeam,
|
|
7274
|
+
title: "Create Ceph Cluster Team Owner",
|
|
7275
|
+
description: "This permission can create Ceph Cluster Team Owner of this project.",
|
|
7276
|
+
isAssignableToTenant: true,
|
|
7277
|
+
isAccessControlPermission: false,
|
|
7278
|
+
isRolePermission: false,
|
|
7279
|
+
group: PermissionGroup.Telemetry,
|
|
7280
|
+
},
|
|
7281
|
+
{
|
|
7282
|
+
permission: Permission.DeleteCephClusterOwnerTeam,
|
|
7283
|
+
title: "Delete Ceph Cluster Team Owner",
|
|
7284
|
+
description: "This permission can delete Ceph Cluster Team Owner of this project.",
|
|
7285
|
+
isAssignableToTenant: true,
|
|
7286
|
+
isAccessControlPermission: false,
|
|
7287
|
+
isRolePermission: false,
|
|
7288
|
+
group: PermissionGroup.Telemetry,
|
|
7289
|
+
},
|
|
7290
|
+
{
|
|
7291
|
+
permission: Permission.EditCephClusterOwnerTeam,
|
|
7292
|
+
title: "Edit Ceph Cluster Team Owner",
|
|
7293
|
+
description: "This permission can edit Ceph Cluster Team Owner of this project.",
|
|
7294
|
+
isAssignableToTenant: true,
|
|
7295
|
+
isAccessControlPermission: false,
|
|
7296
|
+
isRolePermission: false,
|
|
7297
|
+
group: PermissionGroup.Telemetry,
|
|
7298
|
+
},
|
|
7299
|
+
{
|
|
7300
|
+
permission: Permission.ReadCephClusterOwnerTeam,
|
|
7301
|
+
title: "Read Ceph Cluster Team Owner",
|
|
7302
|
+
description: "This permission can read Ceph Cluster Team Owner of this project.",
|
|
7303
|
+
isAssignableToTenant: true,
|
|
7304
|
+
isAccessControlPermission: false,
|
|
7305
|
+
isRolePermission: false,
|
|
7306
|
+
group: PermissionGroup.Telemetry,
|
|
7307
|
+
},
|
|
7308
|
+
{
|
|
7309
|
+
permission: Permission.CreateCephClusterOwnerUser,
|
|
7310
|
+
title: "Create Ceph Cluster User Owner",
|
|
7311
|
+
description: "This permission can create Ceph Cluster User Owner of this project.",
|
|
7312
|
+
isAssignableToTenant: true,
|
|
7313
|
+
isAccessControlPermission: false,
|
|
7314
|
+
isRolePermission: false,
|
|
7315
|
+
group: PermissionGroup.Telemetry,
|
|
7316
|
+
},
|
|
7317
|
+
{
|
|
7318
|
+
permission: Permission.DeleteCephClusterOwnerUser,
|
|
7319
|
+
title: "Delete Ceph Cluster User Owner",
|
|
7320
|
+
description: "This permission can delete Ceph Cluster User Owner of this project.",
|
|
7321
|
+
isAssignableToTenant: true,
|
|
7322
|
+
isAccessControlPermission: false,
|
|
7323
|
+
isRolePermission: false,
|
|
7324
|
+
group: PermissionGroup.Telemetry,
|
|
7325
|
+
},
|
|
7326
|
+
{
|
|
7327
|
+
permission: Permission.EditCephClusterOwnerUser,
|
|
7328
|
+
title: "Edit Ceph Cluster User Owner",
|
|
7329
|
+
description: "This permission can edit Ceph Cluster User Owner of this project.",
|
|
7330
|
+
isAssignableToTenant: true,
|
|
7331
|
+
isAccessControlPermission: false,
|
|
7332
|
+
isRolePermission: false,
|
|
7333
|
+
group: PermissionGroup.Telemetry,
|
|
7334
|
+
},
|
|
7335
|
+
{
|
|
7336
|
+
permission: Permission.ReadCephClusterOwnerUser,
|
|
7337
|
+
title: "Read Ceph Cluster User Owner",
|
|
7338
|
+
description: "This permission can read Ceph Cluster User Owner of this project.",
|
|
7339
|
+
isAssignableToTenant: true,
|
|
7340
|
+
isAccessControlPermission: false,
|
|
7341
|
+
isRolePermission: false,
|
|
7342
|
+
group: PermissionGroup.Telemetry,
|
|
7343
|
+
},
|
|
7084
7344
|
{
|
|
7085
7345
|
permission: Permission.CreateDockerHostOwnerTeam,
|
|
7086
7346
|
title: "Create Docker Host Team Owner",
|
|
@@ -8822,6 +9082,154 @@ export class PermissionHelper {
|
|
|
8822
9082
|
isRolePermission: false,
|
|
8823
9083
|
group: PermissionGroup.Telemetry,
|
|
8824
9084
|
},
|
|
9085
|
+
// Proxmox Cluster Owner Rule Permissions
|
|
9086
|
+
{
|
|
9087
|
+
permission: Permission.CreateProxmoxClusterOwnerRule,
|
|
9088
|
+
title: "Create Proxmox Cluster Owner Rule",
|
|
9089
|
+
description: "This permission can create Proxmox Cluster Owner Rules in this project.",
|
|
9090
|
+
isAssignableToTenant: true,
|
|
9091
|
+
isAccessControlPermission: false,
|
|
9092
|
+
isRolePermission: false,
|
|
9093
|
+
group: PermissionGroup.Telemetry,
|
|
9094
|
+
},
|
|
9095
|
+
{
|
|
9096
|
+
permission: Permission.DeleteProxmoxClusterOwnerRule,
|
|
9097
|
+
title: "Delete Proxmox Cluster Owner Rule",
|
|
9098
|
+
description: "This permission can delete Proxmox Cluster Owner Rules of this project.",
|
|
9099
|
+
isAssignableToTenant: true,
|
|
9100
|
+
isAccessControlPermission: false,
|
|
9101
|
+
isRolePermission: false,
|
|
9102
|
+
group: PermissionGroup.Telemetry,
|
|
9103
|
+
},
|
|
9104
|
+
{
|
|
9105
|
+
permission: Permission.EditProxmoxClusterOwnerRule,
|
|
9106
|
+
title: "Edit Proxmox Cluster Owner Rule",
|
|
9107
|
+
description: "This permission can edit Proxmox Cluster Owner Rules of this project.",
|
|
9108
|
+
isAssignableToTenant: true,
|
|
9109
|
+
isAccessControlPermission: false,
|
|
9110
|
+
isRolePermission: false,
|
|
9111
|
+
group: PermissionGroup.Telemetry,
|
|
9112
|
+
},
|
|
9113
|
+
{
|
|
9114
|
+
permission: Permission.ReadProxmoxClusterOwnerRule,
|
|
9115
|
+
title: "Read Proxmox Cluster Owner Rule",
|
|
9116
|
+
description: "This permission can read Proxmox Cluster Owner Rules of this project.",
|
|
9117
|
+
isAssignableToTenant: true,
|
|
9118
|
+
isAccessControlPermission: false,
|
|
9119
|
+
isRolePermission: false,
|
|
9120
|
+
group: PermissionGroup.Telemetry,
|
|
9121
|
+
},
|
|
9122
|
+
// Proxmox Cluster Label Rule Permissions
|
|
9123
|
+
{
|
|
9124
|
+
permission: Permission.CreateProxmoxClusterLabelRule,
|
|
9125
|
+
title: "Create Proxmox Cluster Label Rule",
|
|
9126
|
+
description: "This permission can create Proxmox Cluster Label Rules in this project.",
|
|
9127
|
+
isAssignableToTenant: true,
|
|
9128
|
+
isAccessControlPermission: false,
|
|
9129
|
+
isRolePermission: false,
|
|
9130
|
+
group: PermissionGroup.Telemetry,
|
|
9131
|
+
},
|
|
9132
|
+
{
|
|
9133
|
+
permission: Permission.DeleteProxmoxClusterLabelRule,
|
|
9134
|
+
title: "Delete Proxmox Cluster Label Rule",
|
|
9135
|
+
description: "This permission can delete Proxmox Cluster Label Rules of this project.",
|
|
9136
|
+
isAssignableToTenant: true,
|
|
9137
|
+
isAccessControlPermission: false,
|
|
9138
|
+
isRolePermission: false,
|
|
9139
|
+
group: PermissionGroup.Telemetry,
|
|
9140
|
+
},
|
|
9141
|
+
{
|
|
9142
|
+
permission: Permission.EditProxmoxClusterLabelRule,
|
|
9143
|
+
title: "Edit Proxmox Cluster Label Rule",
|
|
9144
|
+
description: "This permission can edit Proxmox Cluster Label Rules of this project.",
|
|
9145
|
+
isAssignableToTenant: true,
|
|
9146
|
+
isAccessControlPermission: false,
|
|
9147
|
+
isRolePermission: false,
|
|
9148
|
+
group: PermissionGroup.Telemetry,
|
|
9149
|
+
},
|
|
9150
|
+
{
|
|
9151
|
+
permission: Permission.ReadProxmoxClusterLabelRule,
|
|
9152
|
+
title: "Read Proxmox Cluster Label Rule",
|
|
9153
|
+
description: "This permission can read Proxmox Cluster Label Rules of this project.",
|
|
9154
|
+
isAssignableToTenant: true,
|
|
9155
|
+
isAccessControlPermission: false,
|
|
9156
|
+
isRolePermission: false,
|
|
9157
|
+
group: PermissionGroup.Telemetry,
|
|
9158
|
+
},
|
|
9159
|
+
// Ceph Cluster Owner Rule Permissions
|
|
9160
|
+
{
|
|
9161
|
+
permission: Permission.CreateCephClusterOwnerRule,
|
|
9162
|
+
title: "Create Ceph Cluster Owner Rule",
|
|
9163
|
+
description: "This permission can create Ceph Cluster Owner Rules in this project.",
|
|
9164
|
+
isAssignableToTenant: true,
|
|
9165
|
+
isAccessControlPermission: false,
|
|
9166
|
+
isRolePermission: false,
|
|
9167
|
+
group: PermissionGroup.Telemetry,
|
|
9168
|
+
},
|
|
9169
|
+
{
|
|
9170
|
+
permission: Permission.DeleteCephClusterOwnerRule,
|
|
9171
|
+
title: "Delete Ceph Cluster Owner Rule",
|
|
9172
|
+
description: "This permission can delete Ceph Cluster Owner Rules of this project.",
|
|
9173
|
+
isAssignableToTenant: true,
|
|
9174
|
+
isAccessControlPermission: false,
|
|
9175
|
+
isRolePermission: false,
|
|
9176
|
+
group: PermissionGroup.Telemetry,
|
|
9177
|
+
},
|
|
9178
|
+
{
|
|
9179
|
+
permission: Permission.EditCephClusterOwnerRule,
|
|
9180
|
+
title: "Edit Ceph Cluster Owner Rule",
|
|
9181
|
+
description: "This permission can edit Ceph Cluster Owner Rules of this project.",
|
|
9182
|
+
isAssignableToTenant: true,
|
|
9183
|
+
isAccessControlPermission: false,
|
|
9184
|
+
isRolePermission: false,
|
|
9185
|
+
group: PermissionGroup.Telemetry,
|
|
9186
|
+
},
|
|
9187
|
+
{
|
|
9188
|
+
permission: Permission.ReadCephClusterOwnerRule,
|
|
9189
|
+
title: "Read Ceph Cluster Owner Rule",
|
|
9190
|
+
description: "This permission can read Ceph Cluster Owner Rules of this project.",
|
|
9191
|
+
isAssignableToTenant: true,
|
|
9192
|
+
isAccessControlPermission: false,
|
|
9193
|
+
isRolePermission: false,
|
|
9194
|
+
group: PermissionGroup.Telemetry,
|
|
9195
|
+
},
|
|
9196
|
+
// Ceph Cluster Label Rule Permissions
|
|
9197
|
+
{
|
|
9198
|
+
permission: Permission.CreateCephClusterLabelRule,
|
|
9199
|
+
title: "Create Ceph Cluster Label Rule",
|
|
9200
|
+
description: "This permission can create Ceph Cluster Label Rules in this project.",
|
|
9201
|
+
isAssignableToTenant: true,
|
|
9202
|
+
isAccessControlPermission: false,
|
|
9203
|
+
isRolePermission: false,
|
|
9204
|
+
group: PermissionGroup.Telemetry,
|
|
9205
|
+
},
|
|
9206
|
+
{
|
|
9207
|
+
permission: Permission.DeleteCephClusterLabelRule,
|
|
9208
|
+
title: "Delete Ceph Cluster Label Rule",
|
|
9209
|
+
description: "This permission can delete Ceph Cluster Label Rules of this project.",
|
|
9210
|
+
isAssignableToTenant: true,
|
|
9211
|
+
isAccessControlPermission: false,
|
|
9212
|
+
isRolePermission: false,
|
|
9213
|
+
group: PermissionGroup.Telemetry,
|
|
9214
|
+
},
|
|
9215
|
+
{
|
|
9216
|
+
permission: Permission.EditCephClusterLabelRule,
|
|
9217
|
+
title: "Edit Ceph Cluster Label Rule",
|
|
9218
|
+
description: "This permission can edit Ceph Cluster Label Rules of this project.",
|
|
9219
|
+
isAssignableToTenant: true,
|
|
9220
|
+
isAccessControlPermission: false,
|
|
9221
|
+
isRolePermission: false,
|
|
9222
|
+
group: PermissionGroup.Telemetry,
|
|
9223
|
+
},
|
|
9224
|
+
{
|
|
9225
|
+
permission: Permission.ReadCephClusterLabelRule,
|
|
9226
|
+
title: "Read Ceph Cluster Label Rule",
|
|
9227
|
+
description: "This permission can read Ceph Cluster Label Rules of this project.",
|
|
9228
|
+
isAssignableToTenant: true,
|
|
9229
|
+
isAccessControlPermission: false,
|
|
9230
|
+
isRolePermission: false,
|
|
9231
|
+
group: PermissionGroup.Telemetry,
|
|
9232
|
+
},
|
|
8825
9233
|
// Runbook Owner Rule Permissions
|
|
8826
9234
|
{
|
|
8827
9235
|
permission: Permission.CreateRunbookOwnerRule,
|