@oneuptime/common 11.4.0 → 11.5.0
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/AIRun.ts +50 -0
- package/Models/DatabaseModels/AlertSeverity.ts +6 -0
- package/Models/DatabaseModels/IncidentSeverity.ts +6 -0
- package/Models/DatabaseModels/Index.ts +16 -0
- package/Models/DatabaseModels/IoTDeviceCredential.ts +471 -0
- package/Models/DatabaseModels/LlmLog.ts +56 -0
- package/Models/DatabaseModels/LlmProvider.ts +33 -0
- package/Models/DatabaseModels/NetworkDevice.ts +1385 -0
- package/Models/DatabaseModels/NetworkDeviceDiscoveryScan.ts +717 -0
- package/Models/DatabaseModels/NetworkDeviceLabelRule.ts +514 -0
- package/Models/DatabaseModels/NetworkDeviceOwnerRule.ts +596 -0
- package/Models/DatabaseModels/NetworkDeviceOwnerTeam.ts +487 -0
- package/Models/DatabaseModels/NetworkDeviceOwnerUser.ts +486 -0
- package/Models/DatabaseModels/NetworkInterface.ts +563 -0
- package/Models/DatabaseModels/Project.ts +145 -0
- package/Models/DatabaseModels/TelemetryEntityRelationship.ts +54 -0
- package/Server/API/AIAgentTaskAPI.ts +10 -24
- package/Server/API/AIInvestigationAPI.ts +131 -63
- package/Server/API/AlertAPI.ts +5 -0
- package/Server/API/IncidentAPI.ts +10 -0
- package/Server/API/IncidentEpisodeAPI.ts +5 -0
- package/Server/API/LlmProviderAPI.ts +4 -0
- package/Server/API/ScheduledMaintenanceAPI.ts +5 -0
- package/Server/API/TelemetryAPI.ts +4 -3
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783650000000-AddAdditionalParamsToLlmProvider.ts +19 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783695782697-AddCacheTokenColumnsToLlmLog.ts +25 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783701585317-AddAlertInvestigationGating.ts +31 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783702431535-AddAiDailyAutonomousTokenLimitToProject.ts +19 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783720000000-AddNetworkDeviceTables.ts +105 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783721121260-AddAttemptCountToAIRun.ts +15 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783730000000-AddNetworkDeviceOwnersAndRules.ts +192 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783740000000-AddNetworkDeviceDiscoveryScan.ts +37 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783750000000-AddLldpNeighborsToNetworkDevice.ts +19 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783760576655-AddInvestigationTuningToProject.ts +25 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783762505482-AddTelemetryEntityRelationshipMetrics.ts +31 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783780000000-AddIoTDeviceCredentialTable.ts +79 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783790000000-AddSnmpV3AuthColumnsToNetworkDevice.ts +49 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +24 -0
- package/Server/Services/AIAgentTaskService.ts +62 -0
- package/Server/Services/AIRunService.ts +58 -0
- package/Server/Services/AIService.ts +101 -0
- package/Server/Services/AnalyticsDatabaseService.ts +27 -0
- package/Server/Services/IncidentService.ts +14 -41
- package/Server/Services/Index.ts +14 -0
- package/Server/Services/IoTDeviceCredentialService.ts +351 -0
- package/Server/Services/IoTDeviceService.ts +64 -21
- package/Server/Services/LlmLogService.ts +26 -0
- package/Server/Services/LlmProviderService.ts +3 -0
- package/Server/Services/LogAggregationService.ts +29 -11
- package/Server/Services/MetricService.ts +603 -13
- package/Server/Services/MonitorService.ts +4 -1
- package/Server/Services/NetworkDeviceDiscoveryScanService.ts +10 -0
- package/Server/Services/NetworkDeviceLabelRuleEngineService.ts +204 -0
- package/Server/Services/NetworkDeviceLabelRuleService.ts +14 -0
- package/Server/Services/NetworkDeviceOwnerRuleEngineService.ts +222 -0
- package/Server/Services/NetworkDeviceOwnerRuleService.ts +14 -0
- package/Server/Services/NetworkDeviceOwnerTeamService.ts +10 -0
- package/Server/Services/NetworkDeviceOwnerUserService.ts +10 -0
- package/Server/Services/NetworkDeviceService.ts +50 -0
- package/Server/Services/NetworkInterfaceService.ts +10 -0
- package/Server/Services/TelemetryEntityRelationshipService.ts +23 -0
- package/Server/Services/TelemetryEntityService.ts +72 -2
- package/Server/Utils/AI/Sentinel/AlertInvestigationRunner.ts +244 -12
- package/Server/Utils/AI/Sentinel/IncidentInvestigationRunner.ts +92 -19
- package/Server/Utils/AI/Sentinel/InvestigationQueue.ts +493 -0
- package/Server/Utils/AI/Sentinel/README.md +10 -0
- package/Server/Utils/AI/Sentinel/SentinelInvestigationEngine.ts +88 -68
- package/Server/Utils/AI/Toolbox/Index.ts +2 -1
- package/Server/Utils/AI/Toolbox/MetricTools.ts +391 -0
- package/Server/Utils/LLM/LLMService.ts +21 -0
- package/Server/Utils/Monitor/Criteria/APIRequestCriteria.ts +44 -0
- package/Server/Utils/Monitor/Criteria/SnmpMonitorCriteria.ts +170 -2
- package/Server/Utils/Monitor/IoTDeviceAbsenceSeries.ts +101 -0
- package/Server/Utils/Monitor/MonitorAlert.ts +15 -3
- package/Server/Utils/Monitor/MonitorCriteriaEvaluator.ts +1 -1
- package/Server/Utils/Monitor/MonitorIncident.ts +19 -3
- package/Server/Utils/Monitor/MonitorMetricUtil.ts +195 -2
- package/Server/Utils/Monitor/MonitorResource.ts +77 -21
- package/Server/Utils/Monitor/MonitorTemplateUtil.ts +1 -1
- package/Server/Utils/Monitor/NetworkDeviceHydrationUtil.ts +201 -0
- package/Server/Utils/Monitor/NetworkInventoryUtil.ts +215 -0
- package/Server/Utils/Monitor/SnmpInterfaceRateUtil.ts +169 -0
- package/Tests/Server/Services/AIAgentTaskServiceClaim.test.ts +146 -0
- package/Tests/Server/Services/AIServiceDailyBudget.test.ts +173 -0
- package/Tests/Server/Services/IncidentInternalNoteAnnouncement.test.ts +97 -0
- package/Tests/Server/Services/IoTDeviceService.test.ts +54 -0
- package/Tests/Server/Services/LogAggregationService.test.ts +22 -0
- package/Tests/Server/Services/MetricServiceAggregate.test.ts +194 -0
- package/Tests/Server/Utils/AI/BaselineAnomalyTool.test.ts +253 -0
- package/Tests/Server/Utils/AI/LLMServiceToolCalling.test.ts +44 -0
- package/Tests/Server/Utils/AI/SentinelAlertGating.test.ts +360 -0
- package/Tests/Server/Utils/AI/SentinelInvestigationQueue.test.ts +295 -0
- package/Tests/Server/Utils/Monitor/Criteria/SnmpMonitorCriteria.test.ts +59 -0
- package/Tests/Server/Utils/Monitor/IoTDeviceAbsenceSeries.test.ts +113 -0
- package/Tests/Server/Utils/Monitor/PerSeriesRecoveryResolution.test.ts +198 -0
- package/Tests/Types/AI/AIAgentTaskStatus.test.ts +86 -0
- package/Tests/Types/BaseDatabase/AggregationIntervalUtil.test.ts +127 -0
- package/Tests/Types/BaseDatabase/DatabaseCommonInteractionPropsUtil.test.ts +152 -0
- package/Tests/Types/Monitor/MonitorType.test.ts +1 -1
- package/Tests/Types/Trace/TraceRecordingRuleDefinition.test.ts +308 -0
- package/Tests/UI/Components/Dropdown.test.tsx +17 -0
- package/Tests/UI/Components/EntityDropdown.test.tsx +130 -0
- package/Tests/UI/Components/Modal.test.tsx +144 -2
- package/Tests/UI/Components/TelemetrySearchBar.test.tsx +90 -0
- package/Tests/UI/Utils/Theme.test.ts +161 -0
- package/Tests/Utils/Monitor/LatencyMatrixUtil.test.ts +111 -0
- package/Types/AI/AIRunStatus.ts +9 -0
- package/Types/BaseDatabase/AggregateBy.ts +12 -0
- package/Types/Dashboard/DashboardComponentType.ts +1 -0
- package/Types/Dashboard/DashboardComponents/DashboardLogChartComponent.ts +24 -0
- package/Types/Dashboard/DashboardTemplates.ts +9 -1
- package/Types/LlmLogStatus.ts +1 -0
- package/Types/Monitor/CriteriaFilter.ts +9 -0
- package/Types/Monitor/HttpPhaseTimings.ts +16 -0
- package/Types/Monitor/IotAlertTemplates.ts +22 -3
- package/Types/Monitor/LatencyMatrix.ts +27 -0
- package/Types/Monitor/MonitorCriteriaInstance.ts +2 -2
- package/Types/Monitor/MonitorMetricType.ts +27 -0
- package/Types/Monitor/MonitorStep.ts +36 -11
- package/Types/Monitor/MonitorStepNetworkDeviceMonitor.ts +55 -0
- package/Types/Monitor/MonitorStepSnmpMonitor.ts +8 -0
- package/Types/Monitor/MonitorType.ts +14 -9
- package/Types/Monitor/PingMonitor/PingMonitorResponse.ts +20 -0
- package/Types/Monitor/SnmpMonitor/LldpNeighbor.ts +12 -0
- package/Types/Monitor/SnmpMonitor/NetworkDeviceAlertPack.ts +116 -0
- package/Types/Monitor/SnmpMonitor/NetworkTopology.ts +29 -0
- package/Types/Monitor/SnmpMonitor/SnmpInterface.ts +31 -0
- package/Types/Monitor/SnmpMonitor/SnmpMonitorResponse.ts +24 -0
- package/Types/Monitor/SnmpMonitor/SnmpTrap.ts +20 -0
- package/Types/Monitor/SnmpMonitor/SnmpVendorTemplate.ts +173 -0
- package/Types/Permission.ts +314 -0
- package/Types/Probe/ProbeMonitorResponse.ts +22 -0
- package/UI/Components/Charts/ChartLibrary/AreaChart/AreaChart.tsx +8 -5
- package/UI/Components/Charts/ChartLibrary/BarChart/BarChart.tsx +4 -1
- package/UI/Components/Charts/ChartLibrary/LineChart/LineChart.tsx +6 -3
- package/UI/Components/CodeBlock/CodeBlock.tsx +2 -1
- package/UI/Components/CodeEditor/CodeEditor.tsx +3 -0
- package/UI/Components/Divider/Divider.tsx +1 -1
- package/UI/Components/Dropdown/Dropdown.tsx +13 -4
- package/UI/Components/EntityDropdown/EntityDropdown.tsx +110 -2
- package/UI/Components/ErrorBoundary.tsx +2 -1
- package/UI/Components/EventItem/EventItem.tsx +2 -2
- package/UI/Components/GanttChart/Bar/Index.tsx +1 -1
- package/UI/Components/Graphs/UptimeBarTooltip.tsx +30 -23
- package/UI/Components/Header/Header.tsx +7 -0
- package/UI/Components/Header/HeaderIconDropdownButton.tsx +2 -0
- package/UI/Components/Icon/Icon.tsx +8 -6
- package/UI/Components/Label/Label.tsx +2 -2
- package/UI/Components/LogsViewer/components/LogsAnalyticsView.tsx +22 -10
- package/UI/Components/LogsViewer/components/LogsHistogram.tsx +9 -3
- package/UI/Components/Markdown.tsx/MarkdownEditor.tsx +8 -8
- package/UI/Components/Markdown.tsx/MarkdownViewer.tsx +44 -20
- package/UI/Components/Modal/ConfirmModal.tsx +1 -1
- package/UI/Components/Modal/Modal.tsx +213 -121
- package/UI/Components/Modal/ModalFooter.tsx +33 -22
- package/UI/Components/ModelTable/TableView.tsx +1 -1
- package/UI/Components/MonitorGraphs/UptimeBarDayModal.tsx +20 -12
- package/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.ts +2 -2
- package/UI/Components/Pill/Pill.tsx +21 -13
- package/UI/Components/StatusBubble/StatusBubble.tsx +3 -3
- package/UI/Components/Tabs/Tabs.tsx +10 -1
- package/UI/Components/TelemetryViewer/TelemetryViewer.tsx +7 -1
- package/UI/Components/TelemetryViewer/components/TelemetryHistogram.tsx +9 -3
- package/UI/Components/TelemetryViewer/components/TelemetrySearchBar.tsx +62 -4
- package/UI/Components/Workflow/Component.tsx +53 -33
- package/UI/Components/Workflow/ComponentPortViewer.tsx +6 -6
- package/UI/Components/Workflow/ComponentReturnValueViewer.tsx +8 -8
- package/UI/Components/Workflow/ComponentsModal.tsx +16 -9
- package/UI/Components/Workflow/Workflow.tsx +13 -11
- package/UI/Utils/Navigation.ts +10 -1
- package/UI/Utils/Theme.ts +140 -0
- package/Utils/Dashboard/Components/DashboardLogChartComponent.ts +99 -0
- package/Utils/Dashboard/Components/Index.ts +7 -0
- package/Utils/Monitor/LatencyMatrixUtil.ts +162 -0
- package/Utils/Monitor/MonitorMetricType.ts +141 -3
- package/Utils/Monitor/NetworkTopologyUtil.ts +159 -0
- package/Utils/Telemetry/EntityRelationship.ts +11 -0
- package/build/dist/Models/DatabaseModels/AIRun.js +52 -0
- package/build/dist/Models/DatabaseModels/AIRun.js.map +1 -1
- package/build/dist/Models/DatabaseModels/AlertSeverity.js +6 -0
- package/build/dist/Models/DatabaseModels/AlertSeverity.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentSeverity.js +6 -0
- package/build/dist/Models/DatabaseModels/IncidentSeverity.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Index.js +16 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IoTDeviceCredential.js +493 -0
- package/build/dist/Models/DatabaseModels/IoTDeviceCredential.js.map +1 -0
- package/build/dist/Models/DatabaseModels/LlmLog.js +58 -0
- package/build/dist/Models/DatabaseModels/LlmLog.js.map +1 -1
- package/build/dist/Models/DatabaseModels/LlmProvider.js +33 -0
- package/build/dist/Models/DatabaseModels/LlmProvider.js.map +1 -1
- package/build/dist/Models/DatabaseModels/NetworkDevice.js +1426 -0
- package/build/dist/Models/DatabaseModels/NetworkDevice.js.map +1 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceDiscoveryScan.js +738 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceDiscoveryScan.js.map +1 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceLabelRule.js +522 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceLabelRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceOwnerRule.js +603 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceOwnerRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceOwnerTeam.js +503 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceOwnerUser.js +502 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/NetworkInterface.js +589 -0
- package/build/dist/Models/DatabaseModels/NetworkInterface.js.map +1 -0
- package/build/dist/Models/DatabaseModels/Project.js +147 -0
- package/build/dist/Models/DatabaseModels/Project.js.map +1 -1
- package/build/dist/Models/DatabaseModels/TelemetryEntityRelationship.js +57 -0
- package/build/dist/Models/DatabaseModels/TelemetryEntityRelationship.js.map +1 -1
- package/build/dist/Server/API/AIAgentTaskAPI.js +8 -23
- package/build/dist/Server/API/AIAgentTaskAPI.js.map +1 -1
- package/build/dist/Server/API/AIInvestigationAPI.js +95 -55
- package/build/dist/Server/API/AIInvestigationAPI.js.map +1 -1
- package/build/dist/Server/API/AlertAPI.js +5 -0
- package/build/dist/Server/API/AlertAPI.js.map +1 -1
- package/build/dist/Server/API/IncidentAPI.js +10 -0
- package/build/dist/Server/API/IncidentAPI.js.map +1 -1
- package/build/dist/Server/API/IncidentEpisodeAPI.js +5 -0
- package/build/dist/Server/API/IncidentEpisodeAPI.js.map +1 -1
- package/build/dist/Server/API/LlmProviderAPI.js +5 -7
- package/build/dist/Server/API/LlmProviderAPI.js.map +1 -1
- package/build/dist/Server/API/ScheduledMaintenanceAPI.js +5 -0
- package/build/dist/Server/API/ScheduledMaintenanceAPI.js.map +1 -1
- package/build/dist/Server/API/TelemetryAPI.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783650000000-AddAdditionalParamsToLlmProvider.js +12 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783650000000-AddAdditionalParamsToLlmProvider.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783695782697-AddCacheTokenColumnsToLlmLog.js +14 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783695782697-AddCacheTokenColumnsToLlmLog.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783701585317-AddAlertInvestigationGating.js +18 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783701585317-AddAlertInvestigationGating.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783702431535-AddAiDailyAutonomousTokenLimitToProject.js +12 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783702431535-AddAiDailyAutonomousTokenLimitToProject.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783720000000-AddNetworkDeviceTables.js +51 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783720000000-AddNetworkDeviceTables.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783721121260-AddAttemptCountToAIRun.js +12 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783721121260-AddAttemptCountToAIRun.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783730000000-AddNetworkDeviceOwnersAndRules.js +101 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783730000000-AddNetworkDeviceOwnersAndRules.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783740000000-AddNetworkDeviceDiscoveryScan.js +18 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783740000000-AddNetworkDeviceDiscoveryScan.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783750000000-AddLldpNeighborsToNetworkDevice.js +12 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783750000000-AddLldpNeighborsToNetworkDevice.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783760576655-AddInvestigationTuningToProject.js +14 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783760576655-AddInvestigationTuningToProject.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783762505482-AddTelemetryEntityRelationshipMetrics.js +16 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783762505482-AddTelemetryEntityRelationshipMetrics.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783780000000-AddIoTDeviceCredentialTable.js +38 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783780000000-AddIoTDeviceCredentialTable.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783790000000-AddSnmpV3AuthColumnsToNetworkDevice.js +22 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783790000000-AddSnmpV3AuthColumnsToNetworkDevice.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +24 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Services/AIAgentTaskService.js +59 -0
- package/build/dist/Server/Services/AIAgentTaskService.js.map +1 -1
- package/build/dist/Server/Services/AIRunService.js +33 -0
- package/build/dist/Server/Services/AIRunService.js.map +1 -1
- package/build/dist/Server/Services/AIService.js +82 -9
- package/build/dist/Server/Services/AIService.js.map +1 -1
- package/build/dist/Server/Services/AnalyticsDatabaseService.js +19 -0
- package/build/dist/Server/Services/AnalyticsDatabaseService.js.map +1 -1
- package/build/dist/Server/Services/IncidentService.js +14 -25
- package/build/dist/Server/Services/IncidentService.js.map +1 -1
- package/build/dist/Server/Services/Index.js +14 -0
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/Server/Services/IoTDeviceCredentialService.js +321 -0
- package/build/dist/Server/Services/IoTDeviceCredentialService.js.map +1 -0
- package/build/dist/Server/Services/IoTDeviceService.js +49 -15
- package/build/dist/Server/Services/IoTDeviceService.js.map +1 -1
- package/build/dist/Server/Services/LlmLogService.js +29 -0
- package/build/dist/Server/Services/LlmLogService.js.map +1 -1
- package/build/dist/Server/Services/LlmProviderService.js +3 -0
- package/build/dist/Server/Services/LlmProviderService.js.map +1 -1
- package/build/dist/Server/Services/LogAggregationService.js +21 -7
- package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
- package/build/dist/Server/Services/MetricService.js +449 -7
- package/build/dist/Server/Services/MetricService.js.map +1 -1
- package/build/dist/Server/Services/MonitorService.js +2 -1
- package/build/dist/Server/Services/MonitorService.js.map +1 -1
- package/build/dist/Server/Services/NetworkDeviceDiscoveryScanService.js +9 -0
- package/build/dist/Server/Services/NetworkDeviceDiscoveryScanService.js.map +1 -0
- package/build/dist/Server/Services/NetworkDeviceLabelRuleEngineService.js +166 -0
- package/build/dist/Server/Services/NetworkDeviceLabelRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/NetworkDeviceLabelRuleService.js +13 -0
- package/build/dist/Server/Services/NetworkDeviceLabelRuleService.js.map +1 -0
- package/build/dist/Server/Services/NetworkDeviceOwnerRuleEngineService.js +186 -0
- package/build/dist/Server/Services/NetworkDeviceOwnerRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/NetworkDeviceOwnerRuleService.js +13 -0
- package/build/dist/Server/Services/NetworkDeviceOwnerRuleService.js.map +1 -0
- package/build/dist/Server/Services/NetworkDeviceOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/NetworkDeviceOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/NetworkDeviceOwnerUserService.js +9 -0
- package/build/dist/Server/Services/NetworkDeviceOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/NetworkDeviceService.js +52 -0
- package/build/dist/Server/Services/NetworkDeviceService.js.map +1 -0
- package/build/dist/Server/Services/NetworkInterfaceService.js +9 -0
- package/build/dist/Server/Services/NetworkInterfaceService.js.map +1 -0
- package/build/dist/Server/Services/TelemetryEntityRelationshipService.js +22 -0
- package/build/dist/Server/Services/TelemetryEntityRelationshipService.js.map +1 -1
- package/build/dist/Server/Services/TelemetryEntityService.js +64 -2
- package/build/dist/Server/Services/TelemetryEntityService.js.map +1 -1
- package/build/dist/Server/Utils/AI/Sentinel/AlertInvestigationRunner.js +189 -9
- package/build/dist/Server/Utils/AI/Sentinel/AlertInvestigationRunner.js.map +1 -1
- package/build/dist/Server/Utils/AI/Sentinel/IncidentInvestigationRunner.js +84 -17
- package/build/dist/Server/Utils/AI/Sentinel/IncidentInvestigationRunner.js.map +1 -1
- package/build/dist/Server/Utils/AI/Sentinel/InvestigationQueue.js +428 -0
- package/build/dist/Server/Utils/AI/Sentinel/InvestigationQueue.js.map +1 -0
- package/build/dist/Server/Utils/AI/Sentinel/SentinelInvestigationEngine.js +63 -47
- package/build/dist/Server/Utils/AI/Sentinel/SentinelInvestigationEngine.js.map +1 -1
- package/build/dist/Server/Utils/AI/Toolbox/Index.js +2 -1
- package/build/dist/Server/Utils/AI/Toolbox/Index.js.map +1 -1
- package/build/dist/Server/Utils/AI/Toolbox/MetricTools.js +300 -0
- package/build/dist/Server/Utils/AI/Toolbox/MetricTools.js.map +1 -1
- package/build/dist/Server/Utils/LLM/LLMService.js +16 -0
- package/build/dist/Server/Utils/LLM/LLMService.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/Criteria/APIRequestCriteria.js +29 -0
- package/build/dist/Server/Utils/Monitor/Criteria/APIRequestCriteria.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/Criteria/SnmpMonitorCriteria.js +130 -2
- package/build/dist/Server/Utils/Monitor/Criteria/SnmpMonitorCriteria.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/IoTDeviceAbsenceSeries.js +81 -0
- package/build/dist/Server/Utils/Monitor/IoTDeviceAbsenceSeries.js.map +1 -0
- package/build/dist/Server/Utils/Monitor/MonitorAlert.js +18 -7
- package/build/dist/Server/Utils/Monitor/MonitorAlert.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js +25 -10
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorMetricUtil.js +155 -5
- package/build/dist/Server/Utils/Monitor/MonitorMetricUtil.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorResource.js +76 -30
- package/build/dist/Server/Utils/Monitor/MonitorResource.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/NetworkDeviceHydrationUtil.js +147 -0
- package/build/dist/Server/Utils/Monitor/NetworkDeviceHydrationUtil.js.map +1 -0
- package/build/dist/Server/Utils/Monitor/NetworkInventoryUtil.js +167 -0
- package/build/dist/Server/Utils/Monitor/NetworkInventoryUtil.js.map +1 -0
- package/build/dist/Server/Utils/Monitor/SnmpInterfaceRateUtil.js +93 -0
- package/build/dist/Server/Utils/Monitor/SnmpInterfaceRateUtil.js.map +1 -0
- package/build/dist/Types/AI/AIRunStatus.js +9 -0
- package/build/dist/Types/AI/AIRunStatus.js.map +1 -1
- package/build/dist/Types/Dashboard/DashboardComponentType.js +1 -0
- package/build/dist/Types/Dashboard/DashboardComponentType.js.map +1 -1
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardLogChartComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardLogChartComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardTemplates.js +9 -1
- package/build/dist/Types/Dashboard/DashboardTemplates.js.map +1 -1
- package/build/dist/Types/LlmLogStatus.js +1 -0
- package/build/dist/Types/LlmLogStatus.js.map +1 -1
- package/build/dist/Types/Monitor/CriteriaFilter.js +9 -0
- package/build/dist/Types/Monitor/CriteriaFilter.js.map +1 -1
- package/build/dist/Types/Monitor/HttpPhaseTimings.js +2 -0
- package/build/dist/Types/Monitor/HttpPhaseTimings.js.map +1 -0
- package/build/dist/Types/Monitor/IotAlertTemplates.js +7 -7
- package/build/dist/Types/Monitor/IotAlertTemplates.js.map +1 -1
- package/build/dist/Types/Monitor/LatencyMatrix.js +2 -0
- package/build/dist/Types/Monitor/LatencyMatrix.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorCriteriaInstance.js +2 -2
- package/build/dist/Types/Monitor/MonitorCriteriaInstance.js.map +1 -1
- package/build/dist/Types/Monitor/MonitorMetricType.js +24 -0
- package/build/dist/Types/Monitor/MonitorMetricType.js.map +1 -1
- package/build/dist/Types/Monitor/MonitorStep.js +22 -9
- package/build/dist/Types/Monitor/MonitorStep.js.map +1 -1
- package/build/dist/Types/Monitor/MonitorStepNetworkDeviceMonitor.js +36 -0
- package/build/dist/Types/Monitor/MonitorStepNetworkDeviceMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStepSnmpMonitor.js +3 -0
- package/build/dist/Types/Monitor/MonitorStepSnmpMonitor.js.map +1 -1
- package/build/dist/Types/Monitor/MonitorType.js +14 -9
- package/build/dist/Types/Monitor/MonitorType.js.map +1 -1
- package/build/dist/Types/Monitor/PingMonitor/PingMonitorResponse.js +2 -0
- package/build/dist/Types/Monitor/PingMonitor/PingMonitorResponse.js.map +1 -0
- package/build/dist/Types/Monitor/SnmpMonitor/LldpNeighbor.js +2 -0
- package/build/dist/Types/Monitor/SnmpMonitor/LldpNeighbor.js.map +1 -0
- package/build/dist/Types/Monitor/SnmpMonitor/NetworkDeviceAlertPack.js +89 -0
- package/build/dist/Types/Monitor/SnmpMonitor/NetworkDeviceAlertPack.js.map +1 -0
- package/build/dist/Types/Monitor/SnmpMonitor/NetworkTopology.js +2 -0
- package/build/dist/Types/Monitor/SnmpMonitor/NetworkTopology.js.map +1 -0
- package/build/dist/Types/Monitor/SnmpMonitor/SnmpInterface.js +2 -0
- package/build/dist/Types/Monitor/SnmpMonitor/SnmpInterface.js.map +1 -0
- package/build/dist/Types/Monitor/SnmpMonitor/SnmpTrap.js +2 -0
- package/build/dist/Types/Monitor/SnmpMonitor/SnmpTrap.js.map +1 -0
- package/build/dist/Types/Monitor/SnmpMonitor/SnmpVendorTemplate.js +137 -0
- package/build/dist/Types/Monitor/SnmpMonitor/SnmpVendorTemplate.js.map +1 -0
- package/build/dist/Types/Permission.js +280 -0
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/UI/Components/Charts/ChartLibrary/AreaChart/AreaChart.js +7 -4
- package/build/dist/UI/Components/Charts/ChartLibrary/AreaChart/AreaChart.js.map +1 -1
- package/build/dist/UI/Components/Charts/ChartLibrary/BarChart/BarChart.js +4 -1
- package/build/dist/UI/Components/Charts/ChartLibrary/BarChart/BarChart.js.map +1 -1
- package/build/dist/UI/Components/Charts/ChartLibrary/LineChart/LineChart.js +6 -3
- package/build/dist/UI/Components/Charts/ChartLibrary/LineChart/LineChart.js.map +1 -1
- package/build/dist/UI/Components/CodeBlock/CodeBlock.js +1 -1
- package/build/dist/UI/Components/CodeBlock/CodeBlock.js.map +1 -1
- package/build/dist/UI/Components/CodeEditor/CodeEditor.js +3 -1
- package/build/dist/UI/Components/CodeEditor/CodeEditor.js.map +1 -1
- package/build/dist/UI/Components/Divider/Divider.js +1 -1
- package/build/dist/UI/Components/Divider/Divider.js.map +1 -1
- package/build/dist/UI/Components/Dropdown/Dropdown.js +10 -4
- package/build/dist/UI/Components/Dropdown/Dropdown.js.map +1 -1
- package/build/dist/UI/Components/EntityDropdown/EntityDropdown.js +76 -3
- package/build/dist/UI/Components/EntityDropdown/EntityDropdown.js.map +1 -1
- package/build/dist/UI/Components/ErrorBoundary.js +2 -1
- package/build/dist/UI/Components/ErrorBoundary.js.map +1 -1
- package/build/dist/UI/Components/EventItem/EventItem.js +2 -2
- package/build/dist/UI/Components/EventItem/EventItem.js.map +1 -1
- package/build/dist/UI/Components/GanttChart/Bar/Index.js +1 -1
- package/build/dist/UI/Components/GanttChart/Bar/Index.js.map +1 -1
- package/build/dist/UI/Components/Graphs/UptimeBarTooltip.js +29 -23
- package/build/dist/UI/Components/Graphs/UptimeBarTooltip.js.map +1 -1
- package/build/dist/UI/Components/Header/Header.js +1 -0
- package/build/dist/UI/Components/Header/Header.js.map +1 -1
- package/build/dist/UI/Components/Header/HeaderIconDropdownButton.js +1 -1
- package/build/dist/UI/Components/Header/HeaderIconDropdownButton.js.map +1 -1
- package/build/dist/UI/Components/Icon/Icon.js +8 -6
- package/build/dist/UI/Components/Icon/Icon.js.map +1 -1
- package/build/dist/UI/Components/Label/Label.js +2 -2
- package/build/dist/UI/Components/Label/Label.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsAnalyticsView.js +20 -8
- package/build/dist/UI/Components/LogsViewer/components/LogsAnalyticsView.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsHistogram.js +8 -2
- package/build/dist/UI/Components/LogsViewer/components/LogsHistogram.js.map +1 -1
- package/build/dist/UI/Components/Markdown.tsx/MarkdownEditor.js +8 -8
- package/build/dist/UI/Components/Markdown.tsx/MarkdownViewer.js +40 -20
- package/build/dist/UI/Components/Markdown.tsx/MarkdownViewer.js.map +1 -1
- package/build/dist/UI/Components/Modal/ConfirmModal.js +1 -1
- package/build/dist/UI/Components/Modal/ConfirmModal.js.map +1 -1
- package/build/dist/UI/Components/Modal/Modal.js +109 -51
- package/build/dist/UI/Components/Modal/Modal.js.map +1 -1
- package/build/dist/UI/Components/Modal/ModalFooter.js +13 -10
- package/build/dist/UI/Components/Modal/ModalFooter.js.map +1 -1
- package/build/dist/UI/Components/ModelTable/TableView.js +1 -1
- package/build/dist/UI/Components/ModelTable/TableView.js.map +1 -1
- package/build/dist/UI/Components/MonitorGraphs/UptimeBarDayModal.js +17 -12
- package/build/dist/UI/Components/MonitorGraphs/UptimeBarDayModal.js.map +1 -1
- package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js +2 -2
- package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js.map +1 -1
- package/build/dist/UI/Components/Pill/Pill.js +12 -13
- package/build/dist/UI/Components/Pill/Pill.js.map +1 -1
- package/build/dist/UI/Components/StatusBubble/StatusBubble.js +3 -3
- package/build/dist/UI/Components/StatusBubble/StatusBubble.js.map +1 -1
- package/build/dist/UI/Components/Tabs/Tabs.js +3 -1
- package/build/dist/UI/Components/Tabs/Tabs.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/TelemetryViewer.js +1 -1
- package/build/dist/UI/Components/TelemetryViewer/TelemetryViewer.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryHistogram.js +8 -2
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryHistogram.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetrySearchBar.js +36 -6
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetrySearchBar.js.map +1 -1
- package/build/dist/UI/Components/Workflow/Component.js +43 -33
- package/build/dist/UI/Components/Workflow/Component.js.map +1 -1
- package/build/dist/UI/Components/Workflow/ComponentPortViewer.js +6 -6
- package/build/dist/UI/Components/Workflow/ComponentPortViewer.js.map +1 -1
- package/build/dist/UI/Components/Workflow/ComponentReturnValueViewer.js +8 -8
- package/build/dist/UI/Components/Workflow/ComponentReturnValueViewer.js.map +1 -1
- package/build/dist/UI/Components/Workflow/ComponentsModal.js +15 -9
- package/build/dist/UI/Components/Workflow/ComponentsModal.js.map +1 -1
- package/build/dist/UI/Components/Workflow/Workflow.js +13 -11
- package/build/dist/UI/Components/Workflow/Workflow.js.map +1 -1
- package/build/dist/UI/Utils/Navigation.js +11 -1
- package/build/dist/UI/Utils/Navigation.js.map +1 -1
- package/build/dist/UI/Utils/Theme.js +106 -0
- package/build/dist/UI/Utils/Theme.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardLogChartComponent.js +89 -0
- package/build/dist/Utils/Dashboard/Components/DashboardLogChartComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/Index.js +4 -0
- package/build/dist/Utils/Dashboard/Components/Index.js.map +1 -1
- package/build/dist/Utils/Monitor/LatencyMatrixUtil.js +89 -0
- package/build/dist/Utils/Monitor/LatencyMatrixUtil.js.map +1 -0
- package/build/dist/Utils/Monitor/MonitorMetricType.js +138 -4
- package/build/dist/Utils/Monitor/MonitorMetricType.js.map +1 -1
- package/build/dist/Utils/Monitor/NetworkTopologyUtil.js +112 -0
- package/build/dist/Utils/Monitor/NetworkTopologyUtil.js.map +1 -0
- package/build/dist/Utils/Telemetry/EntityRelationship.js.map +1 -1
- package/package.json +1 -1
|
@@ -401,6 +401,10 @@ var Permission;
|
|
|
401
401
|
Permission["DeleteDockerHostOwnerRule"] = "DeleteDockerHostOwnerRule";
|
|
402
402
|
Permission["EditDockerHostOwnerRule"] = "EditDockerHostOwnerRule";
|
|
403
403
|
Permission["ReadDockerHostOwnerRule"] = "ReadDockerHostOwnerRule";
|
|
404
|
+
Permission["CreateNetworkDeviceOwnerRule"] = "CreateNetworkDeviceOwnerRule";
|
|
405
|
+
Permission["DeleteNetworkDeviceOwnerRule"] = "DeleteNetworkDeviceOwnerRule";
|
|
406
|
+
Permission["EditNetworkDeviceOwnerRule"] = "EditNetworkDeviceOwnerRule";
|
|
407
|
+
Permission["ReadNetworkDeviceOwnerRule"] = "ReadNetworkDeviceOwnerRule";
|
|
404
408
|
// Podman Host Owner Rule Permissions
|
|
405
409
|
Permission["CreatePodmanHostOwnerRule"] = "CreatePodmanHostOwnerRule";
|
|
406
410
|
Permission["DeletePodmanHostOwnerRule"] = "DeletePodmanHostOwnerRule";
|
|
@@ -411,6 +415,10 @@ var Permission;
|
|
|
411
415
|
Permission["DeleteDockerHostLabelRule"] = "DeleteDockerHostLabelRule";
|
|
412
416
|
Permission["EditDockerHostLabelRule"] = "EditDockerHostLabelRule";
|
|
413
417
|
Permission["ReadDockerHostLabelRule"] = "ReadDockerHostLabelRule";
|
|
418
|
+
Permission["CreateNetworkDeviceLabelRule"] = "CreateNetworkDeviceLabelRule";
|
|
419
|
+
Permission["DeleteNetworkDeviceLabelRule"] = "DeleteNetworkDeviceLabelRule";
|
|
420
|
+
Permission["EditNetworkDeviceLabelRule"] = "EditNetworkDeviceLabelRule";
|
|
421
|
+
Permission["ReadNetworkDeviceLabelRule"] = "ReadNetworkDeviceLabelRule";
|
|
414
422
|
// Podman Host Label Rule Permissions
|
|
415
423
|
Permission["CreatePodmanHostLabelRule"] = "CreatePodmanHostLabelRule";
|
|
416
424
|
Permission["DeletePodmanHostLabelRule"] = "DeletePodmanHostLabelRule";
|
|
@@ -935,6 +943,14 @@ var Permission;
|
|
|
935
943
|
Permission["DeleteDockerHost"] = "DeleteDockerHost";
|
|
936
944
|
Permission["EditDockerHost"] = "EditDockerHost";
|
|
937
945
|
Permission["ReadDockerHost"] = "ReadDockerHost";
|
|
946
|
+
Permission["CreateNetworkDevice"] = "CreateNetworkDevice";
|
|
947
|
+
Permission["DeleteNetworkDevice"] = "DeleteNetworkDevice";
|
|
948
|
+
Permission["EditNetworkDevice"] = "EditNetworkDevice";
|
|
949
|
+
Permission["ReadNetworkDevice"] = "ReadNetworkDevice";
|
|
950
|
+
Permission["CreateNetworkDeviceDiscoveryScan"] = "CreateNetworkDeviceDiscoveryScan";
|
|
951
|
+
Permission["DeleteNetworkDeviceDiscoveryScan"] = "DeleteNetworkDeviceDiscoveryScan";
|
|
952
|
+
Permission["EditNetworkDeviceDiscoveryScan"] = "EditNetworkDeviceDiscoveryScan";
|
|
953
|
+
Permission["ReadNetworkDeviceDiscoveryScan"] = "ReadNetworkDeviceDiscoveryScan";
|
|
938
954
|
Permission["CreatePodmanHost"] = "CreatePodmanHost";
|
|
939
955
|
Permission["DeletePodmanHost"] = "DeletePodmanHost";
|
|
940
956
|
Permission["EditPodmanHost"] = "EditPodmanHost";
|
|
@@ -943,6 +959,10 @@ var Permission;
|
|
|
943
959
|
Permission["DeleteDockerHostOwnerTeam"] = "DeleteDockerHostOwnerTeam";
|
|
944
960
|
Permission["EditDockerHostOwnerTeam"] = "EditDockerHostOwnerTeam";
|
|
945
961
|
Permission["ReadDockerHostOwnerTeam"] = "ReadDockerHostOwnerTeam";
|
|
962
|
+
Permission["CreateNetworkDeviceOwnerTeam"] = "CreateNetworkDeviceOwnerTeam";
|
|
963
|
+
Permission["DeleteNetworkDeviceOwnerTeam"] = "DeleteNetworkDeviceOwnerTeam";
|
|
964
|
+
Permission["EditNetworkDeviceOwnerTeam"] = "EditNetworkDeviceOwnerTeam";
|
|
965
|
+
Permission["ReadNetworkDeviceOwnerTeam"] = "ReadNetworkDeviceOwnerTeam";
|
|
946
966
|
Permission["CreatePodmanHostOwnerTeam"] = "CreatePodmanHostOwnerTeam";
|
|
947
967
|
Permission["DeletePodmanHostOwnerTeam"] = "DeletePodmanHostOwnerTeam";
|
|
948
968
|
Permission["EditPodmanHostOwnerTeam"] = "EditPodmanHostOwnerTeam";
|
|
@@ -951,6 +971,10 @@ var Permission;
|
|
|
951
971
|
Permission["DeleteDockerHostOwnerUser"] = "DeleteDockerHostOwnerUser";
|
|
952
972
|
Permission["EditDockerHostOwnerUser"] = "EditDockerHostOwnerUser";
|
|
953
973
|
Permission["ReadDockerHostOwnerUser"] = "ReadDockerHostOwnerUser";
|
|
974
|
+
Permission["CreateNetworkDeviceOwnerUser"] = "CreateNetworkDeviceOwnerUser";
|
|
975
|
+
Permission["DeleteNetworkDeviceOwnerUser"] = "DeleteNetworkDeviceOwnerUser";
|
|
976
|
+
Permission["EditNetworkDeviceOwnerUser"] = "EditNetworkDeviceOwnerUser";
|
|
977
|
+
Permission["ReadNetworkDeviceOwnerUser"] = "ReadNetworkDeviceOwnerUser";
|
|
954
978
|
Permission["CreatePodmanHostOwnerUser"] = "CreatePodmanHostOwnerUser";
|
|
955
979
|
Permission["DeletePodmanHostOwnerUser"] = "DeletePodmanHostOwnerUser";
|
|
956
980
|
Permission["EditPodmanHostOwnerUser"] = "EditPodmanHostOwnerUser";
|
|
@@ -967,6 +991,10 @@ var Permission;
|
|
|
967
991
|
Permission["DeleteIoTFleet"] = "DeleteIoTFleet";
|
|
968
992
|
Permission["EditIoTFleet"] = "EditIoTFleet";
|
|
969
993
|
Permission["ReadIoTFleet"] = "ReadIoTFleet";
|
|
994
|
+
Permission["CreateIoTDeviceCredential"] = "CreateIoTDeviceCredential";
|
|
995
|
+
Permission["DeleteIoTDeviceCredential"] = "DeleteIoTDeviceCredential";
|
|
996
|
+
Permission["EditIoTDeviceCredential"] = "EditIoTDeviceCredential";
|
|
997
|
+
Permission["ReadIoTDeviceCredential"] = "ReadIoTDeviceCredential";
|
|
970
998
|
Permission["CreateCephCluster"] = "CreateCephCluster";
|
|
971
999
|
Permission["DeleteCephCluster"] = "DeleteCephCluster";
|
|
972
1000
|
Permission["EditCephCluster"] = "EditCephCluster";
|
|
@@ -6590,6 +6618,78 @@ export class PermissionHelper {
|
|
|
6590
6618
|
isRolePermission: false,
|
|
6591
6619
|
group: PermissionGroup.Telemetry,
|
|
6592
6620
|
},
|
|
6621
|
+
{
|
|
6622
|
+
permission: Permission.CreateNetworkDevice,
|
|
6623
|
+
title: "Create Network Device",
|
|
6624
|
+
description: "This permission can create Network Device in this project.",
|
|
6625
|
+
isAssignableToTenant: true,
|
|
6626
|
+
isAccessControlPermission: false,
|
|
6627
|
+
isRolePermission: false,
|
|
6628
|
+
group: PermissionGroup.Monitor,
|
|
6629
|
+
},
|
|
6630
|
+
{
|
|
6631
|
+
permission: Permission.DeleteNetworkDevice,
|
|
6632
|
+
title: "Delete Network Device",
|
|
6633
|
+
description: "This permission can delete Network Device of this project.",
|
|
6634
|
+
isAssignableToTenant: true,
|
|
6635
|
+
isAccessControlPermission: true,
|
|
6636
|
+
isRolePermission: false,
|
|
6637
|
+
group: PermissionGroup.Monitor,
|
|
6638
|
+
},
|
|
6639
|
+
{
|
|
6640
|
+
permission: Permission.EditNetworkDevice,
|
|
6641
|
+
title: "Edit Network Device",
|
|
6642
|
+
description: "This permission can edit Network Device of this project.",
|
|
6643
|
+
isAssignableToTenant: true,
|
|
6644
|
+
isAccessControlPermission: true,
|
|
6645
|
+
isRolePermission: false,
|
|
6646
|
+
group: PermissionGroup.Monitor,
|
|
6647
|
+
},
|
|
6648
|
+
{
|
|
6649
|
+
permission: Permission.ReadNetworkDevice,
|
|
6650
|
+
title: "Read Network Device",
|
|
6651
|
+
description: "This permission can read Network Device of this project.",
|
|
6652
|
+
isAssignableToTenant: true,
|
|
6653
|
+
isAccessControlPermission: true,
|
|
6654
|
+
isRolePermission: false,
|
|
6655
|
+
group: PermissionGroup.Monitor,
|
|
6656
|
+
},
|
|
6657
|
+
{
|
|
6658
|
+
permission: Permission.CreateNetworkDeviceDiscoveryScan,
|
|
6659
|
+
title: "Create Network Device Discovery Scan",
|
|
6660
|
+
description: "This permission can create Network Device Discovery Scan in this project.",
|
|
6661
|
+
isAssignableToTenant: true,
|
|
6662
|
+
isAccessControlPermission: false,
|
|
6663
|
+
isRolePermission: false,
|
|
6664
|
+
group: PermissionGroup.Monitor,
|
|
6665
|
+
},
|
|
6666
|
+
{
|
|
6667
|
+
permission: Permission.DeleteNetworkDeviceDiscoveryScan,
|
|
6668
|
+
title: "Delete Network Device Discovery Scan",
|
|
6669
|
+
description: "This permission can delete Network Device Discovery Scan of this project.",
|
|
6670
|
+
isAssignableToTenant: true,
|
|
6671
|
+
isAccessControlPermission: true,
|
|
6672
|
+
isRolePermission: false,
|
|
6673
|
+
group: PermissionGroup.Monitor,
|
|
6674
|
+
},
|
|
6675
|
+
{
|
|
6676
|
+
permission: Permission.EditNetworkDeviceDiscoveryScan,
|
|
6677
|
+
title: "Edit Network Device Discovery Scan",
|
|
6678
|
+
description: "This permission can edit Network Device Discovery Scan of this project.",
|
|
6679
|
+
isAssignableToTenant: true,
|
|
6680
|
+
isAccessControlPermission: true,
|
|
6681
|
+
isRolePermission: false,
|
|
6682
|
+
group: PermissionGroup.Monitor,
|
|
6683
|
+
},
|
|
6684
|
+
{
|
|
6685
|
+
permission: Permission.ReadNetworkDeviceDiscoveryScan,
|
|
6686
|
+
title: "Read Network Device Discovery Scan",
|
|
6687
|
+
description: "This permission can read Network Device Discovery Scan of this project.",
|
|
6688
|
+
isAssignableToTenant: true,
|
|
6689
|
+
isAccessControlPermission: true,
|
|
6690
|
+
isRolePermission: false,
|
|
6691
|
+
group: PermissionGroup.Monitor,
|
|
6692
|
+
},
|
|
6593
6693
|
{
|
|
6594
6694
|
permission: Permission.CreatePodmanHost,
|
|
6595
6695
|
title: "Create Podman Host",
|
|
@@ -6734,6 +6834,42 @@ export class PermissionHelper {
|
|
|
6734
6834
|
isRolePermission: false,
|
|
6735
6835
|
group: PermissionGroup.Telemetry,
|
|
6736
6836
|
},
|
|
6837
|
+
{
|
|
6838
|
+
permission: Permission.CreateIoTDeviceCredential,
|
|
6839
|
+
title: "Create IoT Device Credential",
|
|
6840
|
+
description: "This permission can create IoT Device Credentials in this project.",
|
|
6841
|
+
isAssignableToTenant: true,
|
|
6842
|
+
isAccessControlPermission: false,
|
|
6843
|
+
isRolePermission: false,
|
|
6844
|
+
group: PermissionGroup.Telemetry,
|
|
6845
|
+
},
|
|
6846
|
+
{
|
|
6847
|
+
permission: Permission.DeleteIoTDeviceCredential,
|
|
6848
|
+
title: "Delete IoT Device Credential",
|
|
6849
|
+
description: "This permission can delete IoT Device Credentials of this project.",
|
|
6850
|
+
isAssignableToTenant: true,
|
|
6851
|
+
isAccessControlPermission: false,
|
|
6852
|
+
isRolePermission: false,
|
|
6853
|
+
group: PermissionGroup.Telemetry,
|
|
6854
|
+
},
|
|
6855
|
+
{
|
|
6856
|
+
permission: Permission.EditIoTDeviceCredential,
|
|
6857
|
+
title: "Edit IoT Device Credential",
|
|
6858
|
+
description: "This permission can edit IoT Device Credentials of this project.",
|
|
6859
|
+
isAssignableToTenant: true,
|
|
6860
|
+
isAccessControlPermission: false,
|
|
6861
|
+
isRolePermission: false,
|
|
6862
|
+
group: PermissionGroup.Telemetry,
|
|
6863
|
+
},
|
|
6864
|
+
{
|
|
6865
|
+
permission: Permission.ReadIoTDeviceCredential,
|
|
6866
|
+
title: "Read IoT Device Credential",
|
|
6867
|
+
description: "This permission can read IoT Device Credentials of this project.",
|
|
6868
|
+
isAssignableToTenant: true,
|
|
6869
|
+
isAccessControlPermission: false,
|
|
6870
|
+
isRolePermission: false,
|
|
6871
|
+
group: PermissionGroup.Telemetry,
|
|
6872
|
+
},
|
|
6737
6873
|
{
|
|
6738
6874
|
permission: Permission.CreateCephCluster,
|
|
6739
6875
|
title: "Create Ceph Cluster",
|
|
@@ -7687,6 +7823,15 @@ export class PermissionHelper {
|
|
|
7687
7823
|
isRolePermission: false,
|
|
7688
7824
|
group: PermissionGroup.Telemetry,
|
|
7689
7825
|
},
|
|
7826
|
+
{
|
|
7827
|
+
permission: Permission.CreateNetworkDeviceOwnerTeam,
|
|
7828
|
+
title: "Create Network Device Team Owner",
|
|
7829
|
+
description: "This permission can create Network Device Team Owner of this project.",
|
|
7830
|
+
isAssignableToTenant: true,
|
|
7831
|
+
isAccessControlPermission: false,
|
|
7832
|
+
isRolePermission: false,
|
|
7833
|
+
group: PermissionGroup.Telemetry,
|
|
7834
|
+
},
|
|
7690
7835
|
{
|
|
7691
7836
|
permission: Permission.DeleteDockerHostOwnerTeam,
|
|
7692
7837
|
title: "Delete Docker Host Team Owner",
|
|
@@ -7696,6 +7841,15 @@ export class PermissionHelper {
|
|
|
7696
7841
|
isRolePermission: false,
|
|
7697
7842
|
group: PermissionGroup.Telemetry,
|
|
7698
7843
|
},
|
|
7844
|
+
{
|
|
7845
|
+
permission: Permission.DeleteNetworkDeviceOwnerTeam,
|
|
7846
|
+
title: "Delete Network Device Team Owner",
|
|
7847
|
+
description: "This permission can delete Network Device Team Owner of this project.",
|
|
7848
|
+
isAssignableToTenant: true,
|
|
7849
|
+
isAccessControlPermission: false,
|
|
7850
|
+
isRolePermission: false,
|
|
7851
|
+
group: PermissionGroup.Telemetry,
|
|
7852
|
+
},
|
|
7699
7853
|
{
|
|
7700
7854
|
permission: Permission.EditDockerHostOwnerTeam,
|
|
7701
7855
|
title: "Edit Docker Host Team Owner",
|
|
@@ -7705,6 +7859,15 @@ export class PermissionHelper {
|
|
|
7705
7859
|
isRolePermission: false,
|
|
7706
7860
|
group: PermissionGroup.Telemetry,
|
|
7707
7861
|
},
|
|
7862
|
+
{
|
|
7863
|
+
permission: Permission.EditNetworkDeviceOwnerTeam,
|
|
7864
|
+
title: "Edit Network Device Team Owner",
|
|
7865
|
+
description: "This permission can edit Network Device Team Owner of this project.",
|
|
7866
|
+
isAssignableToTenant: true,
|
|
7867
|
+
isAccessControlPermission: false,
|
|
7868
|
+
isRolePermission: false,
|
|
7869
|
+
group: PermissionGroup.Telemetry,
|
|
7870
|
+
},
|
|
7708
7871
|
{
|
|
7709
7872
|
permission: Permission.ReadDockerHostOwnerTeam,
|
|
7710
7873
|
title: "Read Docker Host Team Owner",
|
|
@@ -7714,6 +7877,15 @@ export class PermissionHelper {
|
|
|
7714
7877
|
isRolePermission: false,
|
|
7715
7878
|
group: PermissionGroup.Telemetry,
|
|
7716
7879
|
},
|
|
7880
|
+
{
|
|
7881
|
+
permission: Permission.ReadNetworkDeviceOwnerTeam,
|
|
7882
|
+
title: "Read Network Device Team Owner",
|
|
7883
|
+
description: "This permission can read Network Device Team Owner of this project.",
|
|
7884
|
+
isAssignableToTenant: true,
|
|
7885
|
+
isAccessControlPermission: false,
|
|
7886
|
+
isRolePermission: false,
|
|
7887
|
+
group: PermissionGroup.Telemetry,
|
|
7888
|
+
},
|
|
7717
7889
|
{
|
|
7718
7890
|
permission: Permission.CreatePodmanHostOwnerTeam,
|
|
7719
7891
|
title: "Create Podman Host Team Owner",
|
|
@@ -7759,6 +7931,15 @@ export class PermissionHelper {
|
|
|
7759
7931
|
isRolePermission: false,
|
|
7760
7932
|
group: PermissionGroup.Telemetry,
|
|
7761
7933
|
},
|
|
7934
|
+
{
|
|
7935
|
+
permission: Permission.CreateNetworkDeviceOwnerUser,
|
|
7936
|
+
title: "Create Network Device User Owner",
|
|
7937
|
+
description: "This permission can create Network Device User Owner of this project.",
|
|
7938
|
+
isAssignableToTenant: true,
|
|
7939
|
+
isAccessControlPermission: false,
|
|
7940
|
+
isRolePermission: false,
|
|
7941
|
+
group: PermissionGroup.Telemetry,
|
|
7942
|
+
},
|
|
7762
7943
|
{
|
|
7763
7944
|
permission: Permission.DeleteDockerHostOwnerUser,
|
|
7764
7945
|
title: "Delete Docker Host User Owner",
|
|
@@ -7768,6 +7949,15 @@ export class PermissionHelper {
|
|
|
7768
7949
|
isRolePermission: false,
|
|
7769
7950
|
group: PermissionGroup.Telemetry,
|
|
7770
7951
|
},
|
|
7952
|
+
{
|
|
7953
|
+
permission: Permission.DeleteNetworkDeviceOwnerUser,
|
|
7954
|
+
title: "Delete Network Device User Owner",
|
|
7955
|
+
description: "This permission can delete Network Device User Owner of this project.",
|
|
7956
|
+
isAssignableToTenant: true,
|
|
7957
|
+
isAccessControlPermission: false,
|
|
7958
|
+
isRolePermission: false,
|
|
7959
|
+
group: PermissionGroup.Telemetry,
|
|
7960
|
+
},
|
|
7771
7961
|
{
|
|
7772
7962
|
permission: Permission.EditDockerHostOwnerUser,
|
|
7773
7963
|
title: "Edit Docker Host User Owner",
|
|
@@ -7777,6 +7967,15 @@ export class PermissionHelper {
|
|
|
7777
7967
|
isRolePermission: false,
|
|
7778
7968
|
group: PermissionGroup.Telemetry,
|
|
7779
7969
|
},
|
|
7970
|
+
{
|
|
7971
|
+
permission: Permission.EditNetworkDeviceOwnerUser,
|
|
7972
|
+
title: "Edit Network Device User Owner",
|
|
7973
|
+
description: "This permission can edit Network Device User Owner of this project.",
|
|
7974
|
+
isAssignableToTenant: true,
|
|
7975
|
+
isAccessControlPermission: false,
|
|
7976
|
+
isRolePermission: false,
|
|
7977
|
+
group: PermissionGroup.Telemetry,
|
|
7978
|
+
},
|
|
7780
7979
|
{
|
|
7781
7980
|
permission: Permission.ReadDockerHostOwnerUser,
|
|
7782
7981
|
title: "Read Docker Host User Owner",
|
|
@@ -7786,6 +7985,15 @@ export class PermissionHelper {
|
|
|
7786
7985
|
isRolePermission: false,
|
|
7787
7986
|
group: PermissionGroup.Telemetry,
|
|
7788
7987
|
},
|
|
7988
|
+
{
|
|
7989
|
+
permission: Permission.ReadNetworkDeviceOwnerUser,
|
|
7990
|
+
title: "Read Network Device User Owner",
|
|
7991
|
+
description: "This permission can read Network Device User Owner of this project.",
|
|
7992
|
+
isAssignableToTenant: true,
|
|
7993
|
+
isAccessControlPermission: false,
|
|
7994
|
+
isRolePermission: false,
|
|
7995
|
+
group: PermissionGroup.Telemetry,
|
|
7996
|
+
},
|
|
7789
7997
|
{
|
|
7790
7998
|
permission: Permission.CreatePodmanHostOwnerUser,
|
|
7791
7999
|
title: "Create Podman Host User Owner",
|
|
@@ -9353,6 +9561,15 @@ export class PermissionHelper {
|
|
|
9353
9561
|
isRolePermission: false,
|
|
9354
9562
|
group: PermissionGroup.Telemetry,
|
|
9355
9563
|
},
|
|
9564
|
+
{
|
|
9565
|
+
permission: Permission.CreateNetworkDeviceOwnerRule,
|
|
9566
|
+
title: "Create Network Device Owner Rule",
|
|
9567
|
+
description: "This permission can create Network Device Owner Rules in this project.",
|
|
9568
|
+
isAssignableToTenant: true,
|
|
9569
|
+
isAccessControlPermission: false,
|
|
9570
|
+
isRolePermission: false,
|
|
9571
|
+
group: PermissionGroup.Telemetry,
|
|
9572
|
+
},
|
|
9356
9573
|
{
|
|
9357
9574
|
permission: Permission.DeleteDockerHostOwnerRule,
|
|
9358
9575
|
title: "Delete Docker Host Owner Rule",
|
|
@@ -9362,6 +9579,15 @@ export class PermissionHelper {
|
|
|
9362
9579
|
isRolePermission: false,
|
|
9363
9580
|
group: PermissionGroup.Telemetry,
|
|
9364
9581
|
},
|
|
9582
|
+
{
|
|
9583
|
+
permission: Permission.DeleteNetworkDeviceOwnerRule,
|
|
9584
|
+
title: "Delete Network Device Owner Rule",
|
|
9585
|
+
description: "This permission can delete Network Device Owner Rules of this project.",
|
|
9586
|
+
isAssignableToTenant: true,
|
|
9587
|
+
isAccessControlPermission: false,
|
|
9588
|
+
isRolePermission: false,
|
|
9589
|
+
group: PermissionGroup.Telemetry,
|
|
9590
|
+
},
|
|
9365
9591
|
{
|
|
9366
9592
|
permission: Permission.EditDockerHostOwnerRule,
|
|
9367
9593
|
title: "Edit Docker Host Owner Rule",
|
|
@@ -9371,6 +9597,15 @@ export class PermissionHelper {
|
|
|
9371
9597
|
isRolePermission: false,
|
|
9372
9598
|
group: PermissionGroup.Telemetry,
|
|
9373
9599
|
},
|
|
9600
|
+
{
|
|
9601
|
+
permission: Permission.EditNetworkDeviceOwnerRule,
|
|
9602
|
+
title: "Edit Network Device Owner Rule",
|
|
9603
|
+
description: "This permission can edit Network Device Owner Rules of this project.",
|
|
9604
|
+
isAssignableToTenant: true,
|
|
9605
|
+
isAccessControlPermission: false,
|
|
9606
|
+
isRolePermission: false,
|
|
9607
|
+
group: PermissionGroup.Telemetry,
|
|
9608
|
+
},
|
|
9374
9609
|
{
|
|
9375
9610
|
permission: Permission.ReadDockerHostOwnerRule,
|
|
9376
9611
|
title: "Read Docker Host Owner Rule",
|
|
@@ -9380,6 +9615,15 @@ export class PermissionHelper {
|
|
|
9380
9615
|
isRolePermission: false,
|
|
9381
9616
|
group: PermissionGroup.Telemetry,
|
|
9382
9617
|
},
|
|
9618
|
+
{
|
|
9619
|
+
permission: Permission.ReadNetworkDeviceOwnerRule,
|
|
9620
|
+
title: "Read Network Device Owner Rule",
|
|
9621
|
+
description: "This permission can read Network Device Owner Rules of this project.",
|
|
9622
|
+
isAssignableToTenant: true,
|
|
9623
|
+
isAccessControlPermission: false,
|
|
9624
|
+
isRolePermission: false,
|
|
9625
|
+
group: PermissionGroup.Telemetry,
|
|
9626
|
+
},
|
|
9383
9627
|
// Podman Host Owner Rule Permissions
|
|
9384
9628
|
{
|
|
9385
9629
|
permission: Permission.CreatePodmanHostOwnerRule,
|
|
@@ -9427,6 +9671,15 @@ export class PermissionHelper {
|
|
|
9427
9671
|
isRolePermission: false,
|
|
9428
9672
|
group: PermissionGroup.Telemetry,
|
|
9429
9673
|
},
|
|
9674
|
+
{
|
|
9675
|
+
permission: Permission.CreateNetworkDeviceLabelRule,
|
|
9676
|
+
title: "Create Network Device Label Rule",
|
|
9677
|
+
description: "This permission can create Network Device Label Rules in this project.",
|
|
9678
|
+
isAssignableToTenant: true,
|
|
9679
|
+
isAccessControlPermission: false,
|
|
9680
|
+
isRolePermission: false,
|
|
9681
|
+
group: PermissionGroup.Telemetry,
|
|
9682
|
+
},
|
|
9430
9683
|
{
|
|
9431
9684
|
permission: Permission.DeleteDockerHostLabelRule,
|
|
9432
9685
|
title: "Delete Docker Host Label Rule",
|
|
@@ -9436,6 +9689,15 @@ export class PermissionHelper {
|
|
|
9436
9689
|
isRolePermission: false,
|
|
9437
9690
|
group: PermissionGroup.Telemetry,
|
|
9438
9691
|
},
|
|
9692
|
+
{
|
|
9693
|
+
permission: Permission.DeleteNetworkDeviceLabelRule,
|
|
9694
|
+
title: "Delete Network Device Label Rule",
|
|
9695
|
+
description: "This permission can delete Network Device Label Rules of this project.",
|
|
9696
|
+
isAssignableToTenant: true,
|
|
9697
|
+
isAccessControlPermission: false,
|
|
9698
|
+
isRolePermission: false,
|
|
9699
|
+
group: PermissionGroup.Telemetry,
|
|
9700
|
+
},
|
|
9439
9701
|
{
|
|
9440
9702
|
permission: Permission.EditDockerHostLabelRule,
|
|
9441
9703
|
title: "Edit Docker Host Label Rule",
|
|
@@ -9445,6 +9707,15 @@ export class PermissionHelper {
|
|
|
9445
9707
|
isRolePermission: false,
|
|
9446
9708
|
group: PermissionGroup.Telemetry,
|
|
9447
9709
|
},
|
|
9710
|
+
{
|
|
9711
|
+
permission: Permission.EditNetworkDeviceLabelRule,
|
|
9712
|
+
title: "Edit Network Device Label Rule",
|
|
9713
|
+
description: "This permission can edit Network Device Label Rules of this project.",
|
|
9714
|
+
isAssignableToTenant: true,
|
|
9715
|
+
isAccessControlPermission: false,
|
|
9716
|
+
isRolePermission: false,
|
|
9717
|
+
group: PermissionGroup.Telemetry,
|
|
9718
|
+
},
|
|
9448
9719
|
{
|
|
9449
9720
|
permission: Permission.ReadDockerHostLabelRule,
|
|
9450
9721
|
title: "Read Docker Host Label Rule",
|
|
@@ -9454,6 +9725,15 @@ export class PermissionHelper {
|
|
|
9454
9725
|
isRolePermission: false,
|
|
9455
9726
|
group: PermissionGroup.Telemetry,
|
|
9456
9727
|
},
|
|
9728
|
+
{
|
|
9729
|
+
permission: Permission.ReadNetworkDeviceLabelRule,
|
|
9730
|
+
title: "Read Network Device Label Rule",
|
|
9731
|
+
description: "This permission can read Network Device Label Rules of this project.",
|
|
9732
|
+
isAssignableToTenant: true,
|
|
9733
|
+
isAccessControlPermission: false,
|
|
9734
|
+
isRolePermission: false,
|
|
9735
|
+
group: PermissionGroup.Telemetry,
|
|
9736
|
+
},
|
|
9457
9737
|
// Podman Host Label Rule Permissions
|
|
9458
9738
|
{
|
|
9459
9739
|
permission: Permission.CreatePodmanHostLabelRule,
|