@mseep/safe-omada-mcp 0.17.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/.env.example +136 -0
- package/CHANGELOG.md +19 -0
- package/LICENSE +21 -0
- package/README.Docker.md +846 -0
- package/README.md +911 -0
- package/dist/config.d.ts +77 -0
- package/dist/config.js +357 -0
- package/dist/config.js.map +1 -0
- package/dist/env.d.ts +1 -0
- package/dist/env.js +9 -0
- package/dist/env.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +61 -0
- package/dist/index.js.map +1 -0
- package/dist/omadaClient/account.d.ts +61 -0
- package/dist/omadaClient/account.js +103 -0
- package/dist/omadaClient/account.js.map +1 -0
- package/dist/omadaClient/actions.d.ts +18 -0
- package/dist/omadaClient/actions.js +45 -0
- package/dist/omadaClient/actions.js.map +1 -0
- package/dist/omadaClient/auth.d.ts +34 -0
- package/dist/omadaClient/auth.js +103 -0
- package/dist/omadaClient/auth.js.map +1 -0
- package/dist/omadaClient/client.d.ts +113 -0
- package/dist/omadaClient/client.js +237 -0
- package/dist/omadaClient/client.js.map +1 -0
- package/dist/omadaClient/controller.d.ts +46 -0
- package/dist/omadaClient/controller.js +76 -0
- package/dist/omadaClient/controller.js.map +1 -0
- package/dist/omadaClient/device.d.ts +263 -0
- package/dist/omadaClient/device.js +889 -0
- package/dist/omadaClient/device.js.map +1 -0
- package/dist/omadaClient/index.d.ts +444 -0
- package/dist/omadaClient/index.js +1218 -0
- package/dist/omadaClient/index.js.map +1 -0
- package/dist/omadaClient/insight.d.ts +69 -0
- package/dist/omadaClient/insight.js +121 -0
- package/dist/omadaClient/insight.js.map +1 -0
- package/dist/omadaClient/log.d.ts +92 -0
- package/dist/omadaClient/log.js +230 -0
- package/dist/omadaClient/log.js.map +1 -0
- package/dist/omadaClient/maintenance.d.ts +98 -0
- package/dist/omadaClient/maintenance.js +144 -0
- package/dist/omadaClient/maintenance.js.map +1 -0
- package/dist/omadaClient/monitor.d.ts +98 -0
- package/dist/omadaClient/monitor.js +185 -0
- package/dist/omadaClient/monitor.js.map +1 -0
- package/dist/omadaClient/network.d.ts +810 -0
- package/dist/omadaClient/network.js +1624 -0
- package/dist/omadaClient/network.js.map +1 -0
- package/dist/omadaClient/request.d.ts +72 -0
- package/dist/omadaClient/request.js +274 -0
- package/dist/omadaClient/request.js.map +1 -0
- package/dist/omadaClient/schedules.d.ts +38 -0
- package/dist/omadaClient/schedules.js +64 -0
- package/dist/omadaClient/schedules.js.map +1 -0
- package/dist/omadaClient/security.d.ts +92 -0
- package/dist/omadaClient/security.js +176 -0
- package/dist/omadaClient/security.js.map +1 -0
- package/dist/omadaClient/site.d.ts +70 -0
- package/dist/omadaClient/site.js +130 -0
- package/dist/omadaClient/site.js.map +1 -0
- package/dist/server/common.d.ts +98 -0
- package/dist/server/common.js +245 -0
- package/dist/server/common.js.map +1 -0
- package/dist/server/http.d.ts +18 -0
- package/dist/server/http.js +255 -0
- package/dist/server/http.js.map +1 -0
- package/dist/server/stdio.d.ts +3 -0
- package/dist/server/stdio.js +14 -0
- package/dist/server/stdio.js.map +1 -0
- package/dist/server/stream.d.ts +30 -0
- package/dist/server/stream.js +157 -0
- package/dist/server/stream.js.map +1 -0
- package/dist/tools/backupController.d.ts +3 -0
- package/dist/tools/backupController.js +31 -0
- package/dist/tools/backupController.js.map +1 -0
- package/dist/tools/backupControllerToFileServer.d.ts +3 -0
- package/dist/tools/backupControllerToFileServer.js +40 -0
- package/dist/tools/backupControllerToFileServer.js.map +1 -0
- package/dist/tools/backupSites.d.ts +3 -0
- package/dist/tools/backupSites.js +29 -0
- package/dist/tools/backupSites.js.map +1 -0
- package/dist/tools/backupSitesToFileServer.d.ts +3 -0
- package/dist/tools/backupSitesToFileServer.js +40 -0
- package/dist/tools/backupSitesToFileServer.js.map +1 -0
- package/dist/tools/blockClient.d.ts +3 -0
- package/dist/tools/blockClient.js +33 -0
- package/dist/tools/blockClient.js.map +1 -0
- package/dist/tools/createDhcpReservation.d.ts +3 -0
- package/dist/tools/createDhcpReservation.js +63 -0
- package/dist/tools/createDhcpReservation.js.map +1 -0
- package/dist/tools/createEapAcl.d.ts +3 -0
- package/dist/tools/createEapAcl.js +52 -0
- package/dist/tools/createEapAcl.js.map +1 -0
- package/dist/tools/createGatewayAcl.d.ts +3 -0
- package/dist/tools/createGatewayAcl.js +29 -0
- package/dist/tools/createGatewayAcl.js.map +1 -0
- package/dist/tools/deleteAcl.d.ts +3 -0
- package/dist/tools/deleteAcl.js +51 -0
- package/dist/tools/deleteAcl.js.map +1 -0
- package/dist/tools/deleteAppControlRule.d.ts +3 -0
- package/dist/tools/deleteAppControlRule.js +41 -0
- package/dist/tools/deleteAppControlRule.js.map +1 -0
- package/dist/tools/deleteBandwidthControlRule.d.ts +3 -0
- package/dist/tools/deleteBandwidthControlRule.js +41 -0
- package/dist/tools/deleteBandwidthControlRule.js.map +1 -0
- package/dist/tools/deleteDhcpReservation.d.ts +3 -0
- package/dist/tools/deleteDhcpReservation.js +41 -0
- package/dist/tools/deleteDhcpReservation.js.map +1 -0
- package/dist/tools/dhcpReservationShared.d.ts +48 -0
- package/dist/tools/dhcpReservationShared.js +107 -0
- package/dist/tools/dhcpReservationShared.js.map +1 -0
- package/dist/tools/diagnoseClient.d.ts +3 -0
- package/dist/tools/diagnoseClient.js +34 -0
- package/dist/tools/diagnoseClient.js.map +1 -0
- package/dist/tools/disableClientRateLimit.d.ts +3 -0
- package/dist/tools/disableClientRateLimit.js +12 -0
- package/dist/tools/disableClientRateLimit.js.map +1 -0
- package/dist/tools/firewallTrafficShared.d.ts +540 -0
- package/dist/tools/firewallTrafficShared.js +239 -0
- package/dist/tools/firewallTrafficShared.js.map +1 -0
- package/dist/tools/gatewayAclShared.d.ts +619 -0
- package/dist/tools/gatewayAclShared.js +162 -0
- package/dist/tools/gatewayAclShared.js.map +1 -0
- package/dist/tools/getAccessControl.d.ts +3 -0
- package/dist/tools/getAccessControl.js +11 -0
- package/dist/tools/getAccessControl.js.map +1 -0
- package/dist/tools/getAclConfigTypeSetting.d.ts +3 -0
- package/dist/tools/getAclConfigTypeSetting.js +8 -0
- package/dist/tools/getAclConfigTypeSetting.js.map +1 -0
- package/dist/tools/getAdvancedVpnSetting.d.ts +3 -0
- package/dist/tools/getAdvancedVpnSetting.js +8 -0
- package/dist/tools/getAdvancedVpnSetting.js.map +1 -0
- package/dist/tools/getAlg.d.ts +3 -0
- package/dist/tools/getAlg.js +11 -0
- package/dist/tools/getAlg.js.map +1 -0
- package/dist/tools/getAllCloudUsers.d.ts +3 -0
- package/dist/tools/getAllCloudUsers.js +10 -0
- package/dist/tools/getAllCloudUsers.js.map +1 -0
- package/dist/tools/getAllDeviceBySite.d.ts +3 -0
- package/dist/tools/getAllDeviceBySite.js +8 -0
- package/dist/tools/getAllDeviceBySite.js.map +1 -0
- package/dist/tools/getAllLocalUsers.d.ts +3 -0
- package/dist/tools/getAllLocalUsers.js +10 -0
- package/dist/tools/getAllLocalUsers.js.map +1 -0
- package/dist/tools/getAllRoles.d.ts +3 -0
- package/dist/tools/getAllRoles.js +10 -0
- package/dist/tools/getAllRoles.js.map +1 -0
- package/dist/tools/getAllUsersApp.d.ts +3 -0
- package/dist/tools/getAllUsersApp.js +10 -0
- package/dist/tools/getAllUsersApp.js.map +1 -0
- package/dist/tools/getApDetail.d.ts +3 -0
- package/dist/tools/getApDetail.js +13 -0
- package/dist/tools/getApDetail.js.map +1 -0
- package/dist/tools/getApGeneralConfig.d.ts +3 -0
- package/dist/tools/getApGeneralConfig.js +13 -0
- package/dist/tools/getApGeneralConfig.js.map +1 -0
- package/dist/tools/getApIpv6Config.d.ts +3 -0
- package/dist/tools/getApIpv6Config.js +13 -0
- package/dist/tools/getApIpv6Config.js.map +1 -0
- package/dist/tools/getApLldpConfig.d.ts +3 -0
- package/dist/tools/getApLldpConfig.js +13 -0
- package/dist/tools/getApLldpConfig.js.map +1 -0
- package/dist/tools/getApLoadBalance.d.ts +3 -0
- package/dist/tools/getApLoadBalance.js +13 -0
- package/dist/tools/getApLoadBalance.js.map +1 -0
- package/dist/tools/getApOfdmaConfig.d.ts +3 -0
- package/dist/tools/getApOfdmaConfig.js +13 -0
- package/dist/tools/getApOfdmaConfig.js.map +1 -0
- package/dist/tools/getApQosConfig.d.ts +3 -0
- package/dist/tools/getApQosConfig.js +13 -0
- package/dist/tools/getApQosConfig.js.map +1 -0
- package/dist/tools/getApRadios.d.ts +3 -0
- package/dist/tools/getApRadios.js +13 -0
- package/dist/tools/getApRadios.js.map +1 -0
- package/dist/tools/getApSnmpConfig.d.ts +3 -0
- package/dist/tools/getApSnmpConfig.js +13 -0
- package/dist/tools/getApSnmpConfig.js.map +1 -0
- package/dist/tools/getApUplinkConfig.d.ts +3 -0
- package/dist/tools/getApUplinkConfig.js +13 -0
- package/dist/tools/getApUplinkConfig.js.map +1 -0
- package/dist/tools/getApVlanConfig.d.ts +3 -0
- package/dist/tools/getApVlanConfig.js +13 -0
- package/dist/tools/getApVlanConfig.js.map +1 -0
- package/dist/tools/getAppControlCategories.d.ts +3 -0
- package/dist/tools/getAppControlCategories.js +8 -0
- package/dist/tools/getAppControlCategories.js.map +1 -0
- package/dist/tools/getAppControlRules.d.ts +3 -0
- package/dist/tools/getAppControlRules.js +14 -0
- package/dist/tools/getAppControlRules.js.map +1 -0
- package/dist/tools/getAppGroupProfile.d.ts +3 -0
- package/dist/tools/getAppGroupProfile.js +8 -0
- package/dist/tools/getAppGroupProfile.js.map +1 -0
- package/dist/tools/getApplicationAcl.d.ts +3 -0
- package/dist/tools/getApplicationAcl.js +14 -0
- package/dist/tools/getApplicationAcl.js.map +1 -0
- package/dist/tools/getApplicationControlStatus.d.ts +3 -0
- package/dist/tools/getApplicationControlStatus.js +8 -0
- package/dist/tools/getApplicationControlStatus.js.map +1 -0
- package/dist/tools/getAttackDefenseSetting.d.ts +3 -0
- package/dist/tools/getAttackDefenseSetting.js +8 -0
- package/dist/tools/getAttackDefenseSetting.js.map +1 -0
- package/dist/tools/getAuditLogSettingForGlobal.d.ts +3 -0
- package/dist/tools/getAuditLogSettingForGlobal.js +9 -0
- package/dist/tools/getAuditLogSettingForGlobal.js.map +1 -0
- package/dist/tools/getAuditLogSettingForSite.d.ts +3 -0
- package/dist/tools/getAuditLogSettingForSite.js +8 -0
- package/dist/tools/getAuditLogSettingForSite.js.map +1 -0
- package/dist/tools/getAuditLogsForGlobal.d.ts +3 -0
- package/dist/tools/getAuditLogsForGlobal.js +20 -0
- package/dist/tools/getAuditLogsForGlobal.js.map +1 -0
- package/dist/tools/getAvailableRoles.d.ts +3 -0
- package/dist/tools/getAvailableRoles.js +10 -0
- package/dist/tools/getAvailableRoles.js.map +1 -0
- package/dist/tools/getBackupFileList.d.ts +3 -0
- package/dist/tools/getBackupFileList.js +10 -0
- package/dist/tools/getBackupFileList.js.map +1 -0
- package/dist/tools/getBackupResult.d.ts +3 -0
- package/dist/tools/getBackupResult.js +10 -0
- package/dist/tools/getBackupResult.js.map +1 -0
- package/dist/tools/getBandSteeringSetting.d.ts +3 -0
- package/dist/tools/getBandSteeringSetting.js +8 -0
- package/dist/tools/getBandSteeringSetting.js.map +1 -0
- package/dist/tools/getBandwidthControl.d.ts +3 -0
- package/dist/tools/getBandwidthControl.js +11 -0
- package/dist/tools/getBandwidthControl.js.map +1 -0
- package/dist/tools/getBandwidthCtrl.d.ts +3 -0
- package/dist/tools/getBandwidthCtrl.js +11 -0
- package/dist/tools/getBandwidthCtrl.js.map +1 -0
- package/dist/tools/getBandwidthCtrlDetail.d.ts +3 -0
- package/dist/tools/getBandwidthCtrlDetail.js +8 -0
- package/dist/tools/getBandwidthCtrlDetail.js.map +1 -0
- package/dist/tools/getBeaconControlSetting.d.ts +3 -0
- package/dist/tools/getBeaconControlSetting.js +8 -0
- package/dist/tools/getBeaconControlSetting.js.map +1 -0
- package/dist/tools/getBuiltinRadiusUsers.d.ts +3 -0
- package/dist/tools/getBuiltinRadiusUsers.js +15 -0
- package/dist/tools/getBuiltinRadiusUsers.js.map +1 -0
- package/dist/tools/getCableTestFullResults.d.ts +3 -0
- package/dist/tools/getCableTestFullResults.js +13 -0
- package/dist/tools/getCableTestFullResults.js.map +1 -0
- package/dist/tools/getCableTestLogs.d.ts +3 -0
- package/dist/tools/getCableTestLogs.js +13 -0
- package/dist/tools/getCableTestLogs.js.map +1 -0
- package/dist/tools/getCertificate.d.ts +3 -0
- package/dist/tools/getCertificate.js +10 -0
- package/dist/tools/getCertificate.js.map +1 -0
- package/dist/tools/getChannelLimitSetting.d.ts +3 -0
- package/dist/tools/getChannelLimitSetting.js +8 -0
- package/dist/tools/getChannelLimitSetting.js.map +1 -0
- package/dist/tools/getChannels.d.ts +3 -0
- package/dist/tools/getChannels.js +8 -0
- package/dist/tools/getChannels.js.map +1 -0
- package/dist/tools/getClient.d.ts +3 -0
- package/dist/tools/getClient.js +8 -0
- package/dist/tools/getClient.js.map +1 -0
- package/dist/tools/getClientActiveTimeout.d.ts +3 -0
- package/dist/tools/getClientActiveTimeout.js +9 -0
- package/dist/tools/getClientActiveTimeout.js.map +1 -0
- package/dist/tools/getClientDetail.d.ts +3 -0
- package/dist/tools/getClientDetail.js +13 -0
- package/dist/tools/getClientDetail.js.map +1 -0
- package/dist/tools/getClientHistoryDataEnable.d.ts +3 -0
- package/dist/tools/getClientHistoryDataEnable.js +10 -0
- package/dist/tools/getClientHistoryDataEnable.js.map +1 -0
- package/dist/tools/getClientToSiteVpnServerInfo.d.ts +3 -0
- package/dist/tools/getClientToSiteVpnServerInfo.js +13 -0
- package/dist/tools/getClientToSiteVpnServerInfo.js.map +1 -0
- package/dist/tools/getClientsDistribution.d.ts +3 -0
- package/dist/tools/getClientsDistribution.js +8 -0
- package/dist/tools/getClientsDistribution.js.map +1 -0
- package/dist/tools/getCloudAccessStatus.d.ts +3 -0
- package/dist/tools/getCloudAccessStatus.js +10 -0
- package/dist/tools/getCloudAccessStatus.js.map +1 -0
- package/dist/tools/getCloudUserInfo.d.ts +3 -0
- package/dist/tools/getCloudUserInfo.js +10 -0
- package/dist/tools/getCloudUserInfo.js.map +1 -0
- package/dist/tools/getControllerPort.d.ts +3 -0
- package/dist/tools/getControllerPort.js +10 -0
- package/dist/tools/getControllerPort.js.map +1 -0
- package/dist/tools/getControllerStatus.d.ts +3 -0
- package/dist/tools/getControllerStatus.js +9 -0
- package/dist/tools/getControllerStatus.js.map +1 -0
- package/dist/tools/getDashboardMostActiveEaps.d.ts +3 -0
- package/dist/tools/getDashboardMostActiveEaps.js +8 -0
- package/dist/tools/getDashboardMostActiveEaps.js.map +1 -0
- package/dist/tools/getDashboardMostActiveSwitches.d.ts +3 -0
- package/dist/tools/getDashboardMostActiveSwitches.js +8 -0
- package/dist/tools/getDashboardMostActiveSwitches.js.map +1 -0
- package/dist/tools/getDashboardOverview.d.ts +3 -0
- package/dist/tools/getDashboardOverview.js +8 -0
- package/dist/tools/getDashboardOverview.js.map +1 -0
- package/dist/tools/getDashboardPoEUsage.d.ts +3 -0
- package/dist/tools/getDashboardPoEUsage.js +8 -0
- package/dist/tools/getDashboardPoEUsage.js.map +1 -0
- package/dist/tools/getDashboardSwitchSummary.d.ts +3 -0
- package/dist/tools/getDashboardSwitchSummary.js +8 -0
- package/dist/tools/getDashboardSwitchSummary.js.map +1 -0
- package/dist/tools/getDashboardTopCpuUsage.d.ts +3 -0
- package/dist/tools/getDashboardTopCpuUsage.js +8 -0
- package/dist/tools/getDashboardTopCpuUsage.js.map +1 -0
- package/dist/tools/getDashboardTopMemoryUsage.d.ts +3 -0
- package/dist/tools/getDashboardTopMemoryUsage.js +8 -0
- package/dist/tools/getDashboardTopMemoryUsage.js.map +1 -0
- package/dist/tools/getDashboardTrafficActivities.d.ts +3 -0
- package/dist/tools/getDashboardTrafficActivities.js +8 -0
- package/dist/tools/getDashboardTrafficActivities.js.map +1 -0
- package/dist/tools/getDashboardWifiSummary.d.ts +3 -0
- package/dist/tools/getDashboardWifiSummary.js +8 -0
- package/dist/tools/getDashboardWifiSummary.js.map +1 -0
- package/dist/tools/getDataRetention.d.ts +3 -0
- package/dist/tools/getDataRetention.js +10 -0
- package/dist/tools/getDataRetention.js.map +1 -0
- package/dist/tools/getDdnsGrid.d.ts +3 -0
- package/dist/tools/getDdnsGrid.js +13 -0
- package/dist/tools/getDdnsGrid.js.map +1 -0
- package/dist/tools/getDevice.d.ts +3 -0
- package/dist/tools/getDevice.js +8 -0
- package/dist/tools/getDevice.js.map +1 -0
- package/dist/tools/getDeviceAccessManagement.d.ts +3 -0
- package/dist/tools/getDeviceAccessManagement.js +9 -0
- package/dist/tools/getDeviceAccessManagement.js.map +1 -0
- package/dist/tools/getDeviceTagList.d.ts +3 -0
- package/dist/tools/getDeviceTagList.js +8 -0
- package/dist/tools/getDeviceTagList.js.map +1 -0
- package/dist/tools/getDevicesStats.d.ts +3 -0
- package/dist/tools/getDevicesStats.js +29 -0
- package/dist/tools/getDevicesStats.js.map +1 -0
- package/dist/tools/getDhcpReservationGrid.d.ts +3 -0
- package/dist/tools/getDhcpReservationGrid.js +13 -0
- package/dist/tools/getDhcpReservationGrid.js.map +1 -0
- package/dist/tools/getDisableNatList.d.ts +3 -0
- package/dist/tools/getDisableNatList.js +13 -0
- package/dist/tools/getDisableNatList.js.map +1 -0
- package/dist/tools/getDnsCacheDataList.d.ts +3 -0
- package/dist/tools/getDnsCacheDataList.js +13 -0
- package/dist/tools/getDnsCacheDataList.js.map +1 -0
- package/dist/tools/getDnsCacheSetting.d.ts +3 -0
- package/dist/tools/getDnsCacheSetting.js +11 -0
- package/dist/tools/getDnsCacheSetting.js.map +1 -0
- package/dist/tools/getDnsProxy.d.ts +3 -0
- package/dist/tools/getDnsProxy.js +11 -0
- package/dist/tools/getDnsProxy.js.map +1 -0
- package/dist/tools/getDot1xConfig.d.ts +3 -0
- package/dist/tools/getDot1xConfig.js +8 -0
- package/dist/tools/getDot1xConfig.js.map +1 -0
- package/dist/tools/getDownlinkWiredDevices.d.ts +3 -0
- package/dist/tools/getDownlinkWiredDevices.js +13 -0
- package/dist/tools/getDownlinkWiredDevices.js.map +1 -0
- package/dist/tools/getDscpConfig.d.ts +3 -0
- package/dist/tools/getDscpConfig.js +8 -0
- package/dist/tools/getDscpConfig.js.map +1 -0
- package/dist/tools/getEapDot1xSetting.d.ts +3 -0
- package/dist/tools/getEapDot1xSetting.js +8 -0
- package/dist/tools/getEapDot1xSetting.js.map +1 -0
- package/dist/tools/getExperienceImprovement.d.ts +3 -0
- package/dist/tools/getExperienceImprovement.js +10 -0
- package/dist/tools/getExperienceImprovement.js.map +1 -0
- package/dist/tools/getFirewallSetting.d.ts +3 -0
- package/dist/tools/getFirewallSetting.js +8 -0
- package/dist/tools/getFirewallSetting.js.map +1 -0
- package/dist/tools/getFirmwareInfo.d.ts +3 -0
- package/dist/tools/getFirmwareInfo.js +13 -0
- package/dist/tools/getFirmwareInfo.js.map +1 -0
- package/dist/tools/getFirmwareUpgradePlan.d.ts +3 -0
- package/dist/tools/getFirmwareUpgradePlan.js +10 -0
- package/dist/tools/getFirmwareUpgradePlan.js.map +1 -0
- package/dist/tools/getGatewayDetail.d.ts +3 -0
- package/dist/tools/getGatewayDetail.js +13 -0
- package/dist/tools/getGatewayDetail.js.map +1 -0
- package/dist/tools/getGatewayHealth.d.ts +3 -0
- package/dist/tools/getGatewayHealth.js +48 -0
- package/dist/tools/getGatewayHealth.js.map +1 -0
- package/dist/tools/getGatewayLanStatus.d.ts +3 -0
- package/dist/tools/getGatewayLanStatus.js +13 -0
- package/dist/tools/getGatewayLanStatus.js.map +1 -0
- package/dist/tools/getGatewayPorts.d.ts +3 -0
- package/dist/tools/getGatewayPorts.js +13 -0
- package/dist/tools/getGatewayPorts.js.map +1 -0
- package/dist/tools/getGatewayQosClassRules.d.ts +3 -0
- package/dist/tools/getGatewayQosClassRules.js +14 -0
- package/dist/tools/getGatewayQosClassRules.js.map +1 -0
- package/dist/tools/getGatewayWanStatus.d.ts +3 -0
- package/dist/tools/getGatewayWanStatus.js +13 -0
- package/dist/tools/getGatewayWanStatus.js.map +1 -0
- package/dist/tools/getGeneralSettings.d.ts +3 -0
- package/dist/tools/getGeneralSettings.js +9 -0
- package/dist/tools/getGeneralSettings.js.map +1 -0
- package/dist/tools/getGlobalDashboardOverview.d.ts +3 -0
- package/dist/tools/getGlobalDashboardOverview.js +10 -0
- package/dist/tools/getGlobalDashboardOverview.js.map +1 -0
- package/dist/tools/getGlobalSecuritySetting.d.ts +3 -0
- package/dist/tools/getGlobalSecuritySetting.js +17 -0
- package/dist/tools/getGlobalSecuritySetting.js.map +1 -0
- package/dist/tools/getGoogleLdapProfile.d.ts +3 -0
- package/dist/tools/getGoogleLdapProfile.js +8 -0
- package/dist/tools/getGoogleLdapProfile.js.map +1 -0
- package/dist/tools/getGridAllowList.d.ts +3 -0
- package/dist/tools/getGridAllowList.js +15 -0
- package/dist/tools/getGridAllowList.js.map +1 -0
- package/dist/tools/getGridAllowMacFiltering.d.ts +3 -0
- package/dist/tools/getGridAllowMacFiltering.js +9 -0
- package/dist/tools/getGridAllowMacFiltering.js.map +1 -0
- package/dist/tools/getGridAutoCheckUpgrade.d.ts +3 -0
- package/dist/tools/getGridAutoCheckUpgrade.js +10 -0
- package/dist/tools/getGridAutoCheckUpgrade.js.map +1 -0
- package/dist/tools/getGridBandwidthCtrlRule.d.ts +3 -0
- package/dist/tools/getGridBandwidthCtrlRule.js +13 -0
- package/dist/tools/getGridBandwidthCtrlRule.js.map +1 -0
- package/dist/tools/getGridBlockList.d.ts +3 -0
- package/dist/tools/getGridBlockList.js +15 -0
- package/dist/tools/getGridBlockList.js.map +1 -0
- package/dist/tools/getGridClientHistory.d.ts +3 -0
- package/dist/tools/getGridClientHistory.js +16 -0
- package/dist/tools/getGridClientHistory.js.map +1 -0
- package/dist/tools/getGridDashboardIpsecTunnelStats.d.ts +3 -0
- package/dist/tools/getGridDashboardIpsecTunnelStats.js +8 -0
- package/dist/tools/getGridDashboardIpsecTunnelStats.js.map +1 -0
- package/dist/tools/getGridDashboardOpenVpnTunnelStats.d.ts +3 -0
- package/dist/tools/getGridDashboardOpenVpnTunnelStats.js +12 -0
- package/dist/tools/getGridDashboardOpenVpnTunnelStats.js.map +1 -0
- package/dist/tools/getGridDashboardTunnelStats.d.ts +3 -0
- package/dist/tools/getGridDashboardTunnelStats.js +12 -0
- package/dist/tools/getGridDashboardTunnelStats.js.map +1 -0
- package/dist/tools/getGridDenyMacFiltering.d.ts +3 -0
- package/dist/tools/getGridDenyMacFiltering.js +9 -0
- package/dist/tools/getGridDenyMacFiltering.js.map +1 -0
- package/dist/tools/getGridEapRule.d.ts +3 -0
- package/dist/tools/getGridEapRule.js +9 -0
- package/dist/tools/getGridEapRule.js.map +1 -0
- package/dist/tools/getGridGatewayRule.d.ts +3 -0
- package/dist/tools/getGridGatewayRule.js +9 -0
- package/dist/tools/getGridGatewayRule.js.map +1 -0
- package/dist/tools/getGridIpMacBinding.d.ts +3 -0
- package/dist/tools/getGridIpMacBinding.js +13 -0
- package/dist/tools/getGridIpMacBinding.js.map +1 -0
- package/dist/tools/getGridIpsecFailover.d.ts +3 -0
- package/dist/tools/getGridIpsecFailover.js +9 -0
- package/dist/tools/getGridIpsecFailover.js.map +1 -0
- package/dist/tools/getGridKnownClients.d.ts +3 -0
- package/dist/tools/getGridKnownClients.js +19 -0
- package/dist/tools/getGridKnownClients.js.map +1 -0
- package/dist/tools/getGridOtoNats.d.ts +3 -0
- package/dist/tools/getGridOtoNats.js +13 -0
- package/dist/tools/getGridOtoNats.js.map +1 -0
- package/dist/tools/getGridPolicyRouting.d.ts +3 -0
- package/dist/tools/getGridPolicyRouting.js +13 -0
- package/dist/tools/getGridPolicyRouting.js.map +1 -0
- package/dist/tools/getGridSessionLimitRule.d.ts +3 -0
- package/dist/tools/getGridSessionLimitRule.js +13 -0
- package/dist/tools/getGridSessionLimitRule.js.map +1 -0
- package/dist/tools/getGridSignature.d.ts +3 -0
- package/dist/tools/getGridSignature.js +9 -0
- package/dist/tools/getGridSignature.js.map +1 -0
- package/dist/tools/getGridStaticRouting.d.ts +3 -0
- package/dist/tools/getGridStaticRouting.js +13 -0
- package/dist/tools/getGridStaticRouting.js.map +1 -0
- package/dist/tools/getGridVirtualWan.d.ts +3 -0
- package/dist/tools/getGridVirtualWan.js +13 -0
- package/dist/tools/getGridVirtualWan.js.map +1 -0
- package/dist/tools/getGroupPolicyDetail.d.ts +3 -0
- package/dist/tools/getGroupPolicyDetail.js +15 -0
- package/dist/tools/getGroupPolicyDetail.js.map +1 -0
- package/dist/tools/getGroupProfilesByType.d.ts +3 -0
- package/dist/tools/getGroupProfilesByType.js +13 -0
- package/dist/tools/getGroupProfilesByType.js.map +1 -0
- package/dist/tools/getIgmp.d.ts +3 -0
- package/dist/tools/getIgmp.js +11 -0
- package/dist/tools/getIgmp.js.map +1 -0
- package/dist/tools/getInterfaceLanNetwork.d.ts +3 -0
- package/dist/tools/getInterfaceLanNetwork.js +13 -0
- package/dist/tools/getInterfaceLanNetwork.js.map +1 -0
- package/dist/tools/getInterfaceLanNetworkV2.d.ts +3 -0
- package/dist/tools/getInterfaceLanNetworkV2.js +13 -0
- package/dist/tools/getInterfaceLanNetworkV2.js.map +1 -0
- package/dist/tools/getInterference.d.ts +3 -0
- package/dist/tools/getInterference.js +8 -0
- package/dist/tools/getInterference.js.map +1 -0
- package/dist/tools/getInternet.d.ts +3 -0
- package/dist/tools/getInternet.js +11 -0
- package/dist/tools/getInternet.js.map +1 -0
- package/dist/tools/getInternetBasicPortInfo.d.ts +3 -0
- package/dist/tools/getInternetBasicPortInfo.js +11 -0
- package/dist/tools/getInternetBasicPortInfo.js.map +1 -0
- package/dist/tools/getInternetInfo.d.ts +3 -0
- package/dist/tools/getInternetInfo.js +8 -0
- package/dist/tools/getInternetInfo.js.map +1 -0
- package/dist/tools/getInternetLoadBalance.d.ts +3 -0
- package/dist/tools/getInternetLoadBalance.js +11 -0
- package/dist/tools/getInternetLoadBalance.js.map +1 -0
- package/dist/tools/getIpGroupProfile.d.ts +3 -0
- package/dist/tools/getIpGroupProfile.js +8 -0
- package/dist/tools/getIpGroupProfile.js.map +1 -0
- package/dist/tools/getIpMacBindingGeneralSetting.d.ts +3 -0
- package/dist/tools/getIpMacBindingGeneralSetting.js +11 -0
- package/dist/tools/getIpMacBindingGeneralSetting.js.map +1 -0
- package/dist/tools/getIpsConfig.d.ts +3 -0
- package/dist/tools/getIpsConfig.js +8 -0
- package/dist/tools/getIpsConfig.js.map +1 -0
- package/dist/tools/getIpsecTunnelDetail.d.ts +3 -0
- package/dist/tools/getIpsecTunnelDetail.js +13 -0
- package/dist/tools/getIpsecTunnelDetail.js.map +1 -0
- package/dist/tools/getIpsecTunnelList.d.ts +3 -0
- package/dist/tools/getIpsecTunnelList.js +8 -0
- package/dist/tools/getIpsecTunnelList.js.map +1 -0
- package/dist/tools/getIpsecVpnStats.d.ts +3 -0
- package/dist/tools/getIpsecVpnStats.js +13 -0
- package/dist/tools/getIpsecVpnStats.js.map +1 -0
- package/dist/tools/getIptvSetting.d.ts +3 -0
- package/dist/tools/getIptvSetting.js +11 -0
- package/dist/tools/getIptvSetting.js.map +1 -0
- package/dist/tools/getIspBandScan.d.ts +3 -0
- package/dist/tools/getIspBandScan.js +15 -0
- package/dist/tools/getIspBandScan.js.map +1 -0
- package/dist/tools/getIspLoad.d.ts +3 -0
- package/dist/tools/getIspLoad.js +21 -0
- package/dist/tools/getIspLoad.js.map +1 -0
- package/dist/tools/getLanClientCount.d.ts +3 -0
- package/dist/tools/getLanClientCount.js +11 -0
- package/dist/tools/getLanClientCount.js.map +1 -0
- package/dist/tools/getLanDnsRules.d.ts +3 -0
- package/dist/tools/getLanDnsRules.js +13 -0
- package/dist/tools/getLanDnsRules.js.map +1 -0
- package/dist/tools/getLanNetworkList.d.ts +3 -0
- package/dist/tools/getLanNetworkList.js +8 -0
- package/dist/tools/getLanNetworkList.js.map +1 -0
- package/dist/tools/getLanNetworkListV2.d.ts +3 -0
- package/dist/tools/getLanNetworkListV2.js +13 -0
- package/dist/tools/getLanNetworkListV2.js.map +1 -0
- package/dist/tools/getLanProfileEsUsage.d.ts +3 -0
- package/dist/tools/getLanProfileEsUsage.js +15 -0
- package/dist/tools/getLanProfileEsUsage.js.map +1 -0
- package/dist/tools/getLanProfileList.d.ts +3 -0
- package/dist/tools/getLanProfileList.js +8 -0
- package/dist/tools/getLanProfileList.js.map +1 -0
- package/dist/tools/getLdapProfileList.d.ts +3 -0
- package/dist/tools/getLdapProfileList.js +8 -0
- package/dist/tools/getLdapProfileList.js.map +1 -0
- package/dist/tools/getLldpSetting.d.ts +3 -0
- package/dist/tools/getLldpSetting.js +11 -0
- package/dist/tools/getLldpSetting.js.map +1 -0
- package/dist/tools/getLogSettingForGlobal.d.ts +3 -0
- package/dist/tools/getLogSettingForGlobal.js +9 -0
- package/dist/tools/getLogSettingForGlobal.js.map +1 -0
- package/dist/tools/getLogSettingForGlobalV2.d.ts +3 -0
- package/dist/tools/getLogSettingForGlobalV2.js +9 -0
- package/dist/tools/getLogSettingForGlobalV2.js.map +1 -0
- package/dist/tools/getLogSettingForSite.d.ts +3 -0
- package/dist/tools/getLogSettingForSite.js +8 -0
- package/dist/tools/getLogSettingForSite.js.map +1 -0
- package/dist/tools/getLogSettingForSiteV2.d.ts +3 -0
- package/dist/tools/getLogSettingForSiteV2.js +8 -0
- package/dist/tools/getLogSettingForSiteV2.js.map +1 -0
- package/dist/tools/getLogging.d.ts +3 -0
- package/dist/tools/getLogging.js +9 -0
- package/dist/tools/getLogging.js.map +1 -0
- package/dist/tools/getLtePortConfig.d.ts +3 -0
- package/dist/tools/getLtePortConfig.js +11 -0
- package/dist/tools/getLtePortConfig.js.map +1 -0
- package/dist/tools/getMacAuthSetting.d.ts +3 -0
- package/dist/tools/getMacAuthSetting.js +8 -0
- package/dist/tools/getMacAuthSetting.js.map +1 -0
- package/dist/tools/getMacAuthSsids.d.ts +3 -0
- package/dist/tools/getMacAuthSsids.js +8 -0
- package/dist/tools/getMacAuthSsids.js.map +1 -0
- package/dist/tools/getMacFilterDetail.d.ts +3 -0
- package/dist/tools/getMacFilterDetail.js +8 -0
- package/dist/tools/getMacFilterDetail.js.map +1 -0
- package/dist/tools/getMacFilteringGeneralSetting.d.ts +3 -0
- package/dist/tools/getMacFilteringGeneralSetting.js +8 -0
- package/dist/tools/getMacFilteringGeneralSetting.js.map +1 -0
- package/dist/tools/getMailServerStatus.d.ts +3 -0
- package/dist/tools/getMailServerStatus.js +9 -0
- package/dist/tools/getMailServerStatus.js.map +1 -0
- package/dist/tools/getMeshSetting.d.ts +3 -0
- package/dist/tools/getMeshSetting.js +8 -0
- package/dist/tools/getMeshSetting.js.map +1 -0
- package/dist/tools/getMeshStatistics.d.ts +3 -0
- package/dist/tools/getMeshStatistics.js +13 -0
- package/dist/tools/getMeshStatistics.js.map +1 -0
- package/dist/tools/getMfaStatus.d.ts +3 -0
- package/dist/tools/getMfaStatus.js +10 -0
- package/dist/tools/getMfaStatus.js.map +1 -0
- package/dist/tools/getMulticastRateLimit.d.ts +3 -0
- package/dist/tools/getMulticastRateLimit.js +8 -0
- package/dist/tools/getMulticastRateLimit.js.map +1 -0
- package/dist/tools/getNetworkHealthSummary.d.ts +3 -0
- package/dist/tools/getNetworkHealthSummary.js +28 -0
- package/dist/tools/getNetworkHealthSummary.js.map +1 -0
- package/dist/tools/getNtpSetting.d.ts +3 -0
- package/dist/tools/getNtpSetting.js +11 -0
- package/dist/tools/getNtpSetting.js.map +1 -0
- package/dist/tools/getOsgCustomAclList.d.ts +3 -0
- package/dist/tools/getOsgCustomAclList.js +9 -0
- package/dist/tools/getOsgCustomAclList.js.map +1 -0
- package/dist/tools/getOspfInterface.d.ts +3 -0
- package/dist/tools/getOspfInterface.js +11 -0
- package/dist/tools/getOspfInterface.js.map +1 -0
- package/dist/tools/getOspfNeighbors.d.ts +3 -0
- package/dist/tools/getOspfNeighbors.js +11 -0
- package/dist/tools/getOspfNeighbors.js.map +1 -0
- package/dist/tools/getOspfProcess.d.ts +3 -0
- package/dist/tools/getOspfProcess.js +11 -0
- package/dist/tools/getOspfProcess.js.map +1 -0
- package/dist/tools/getOswAclList.d.ts +3 -0
- package/dist/tools/getOswAclList.js +9 -0
- package/dist/tools/getOswAclList.js.map +1 -0
- package/dist/tools/getOswStackLagList.d.ts +3 -0
- package/dist/tools/getOswStackLagList.js +13 -0
- package/dist/tools/getOswStackLagList.js.map +1 -0
- package/dist/tools/getOuiProfileList.d.ts +3 -0
- package/dist/tools/getOuiProfileList.js +9 -0
- package/dist/tools/getOuiProfileList.js.map +1 -0
- package/dist/tools/getPPSKProfiles.d.ts +3 -0
- package/dist/tools/getPPSKProfiles.js +15 -0
- package/dist/tools/getPPSKProfiles.js.map +1 -0
- package/dist/tools/getPastClientNum.d.ts +3 -0
- package/dist/tools/getPastClientNum.js +14 -0
- package/dist/tools/getPastClientNum.js.map +1 -0
- package/dist/tools/getPoeScheduleList.d.ts +3 -0
- package/dist/tools/getPoeScheduleList.js +8 -0
- package/dist/tools/getPoeScheduleList.js.map +1 -0
- package/dist/tools/getPortForwardingList.d.ts +3 -0
- package/dist/tools/getPortForwardingList.js +13 -0
- package/dist/tools/getPortForwardingList.js.map +1 -0
- package/dist/tools/getPortForwardingStatus.d.ts +3 -0
- package/dist/tools/getPortForwardingStatus.js +50 -0
- package/dist/tools/getPortForwardingStatus.js.map +1 -0
- package/dist/tools/getPortScheduleList.d.ts +3 -0
- package/dist/tools/getPortScheduleList.js +8 -0
- package/dist/tools/getPortScheduleList.js.map +1 -0
- package/dist/tools/getPortSchedulePorts.d.ts +3 -0
- package/dist/tools/getPortSchedulePorts.js +8 -0
- package/dist/tools/getPortSchedulePorts.js.map +1 -0
- package/dist/tools/getPortalPort.d.ts +3 -0
- package/dist/tools/getPortalPort.js +10 -0
- package/dist/tools/getPortalPort.js.map +1 -0
- package/dist/tools/getPortalProfile.d.ts +3 -0
- package/dist/tools/getPortalProfile.js +8 -0
- package/dist/tools/getPortalProfile.js.map +1 -0
- package/dist/tools/getPpskNetworkProfile.d.ts +3 -0
- package/dist/tools/getPpskNetworkProfile.js +13 -0
- package/dist/tools/getPpskNetworkProfile.js.map +1 -0
- package/dist/tools/getPpskUserGroup.d.ts +3 -0
- package/dist/tools/getPpskUserGroup.js +13 -0
- package/dist/tools/getPpskUserGroup.js.map +1 -0
- package/dist/tools/getPpskUserList.d.ts +3 -0
- package/dist/tools/getPpskUserList.js +13 -0
- package/dist/tools/getPpskUserList.js.map +1 -0
- package/dist/tools/getQosMarkingRule.d.ts +3 -0
- package/dist/tools/getQosMarkingRule.js +8 -0
- package/dist/tools/getQosMarkingRule.js.map +1 -0
- package/dist/tools/getQosPolicy.d.ts +3 -0
- package/dist/tools/getQosPolicy.js +8 -0
- package/dist/tools/getQosPolicy.js.map +1 -0
- package/dist/tools/getQosPolicyRule.d.ts +3 -0
- package/dist/tools/getQosPolicyRule.js +8 -0
- package/dist/tools/getQosPolicyRule.js.map +1 -0
- package/dist/tools/getQosProfile.d.ts +3 -0
- package/dist/tools/getQosProfile.js +8 -0
- package/dist/tools/getQosProfile.js.map +1 -0
- package/dist/tools/getRFScanResult.d.ts +3 -0
- package/dist/tools/getRFScanResult.js +13 -0
- package/dist/tools/getRFScanResult.js.map +1 -0
- package/dist/tools/getRadioFrequencyPlanningConfig.d.ts +3 -0
- package/dist/tools/getRadioFrequencyPlanningConfig.js +8 -0
- package/dist/tools/getRadioFrequencyPlanningConfig.js.map +1 -0
- package/dist/tools/getRadioFrequencyPlanningResult.d.ts +3 -0
- package/dist/tools/getRadioFrequencyPlanningResult.js +8 -0
- package/dist/tools/getRadioFrequencyPlanningResult.js.map +1 -0
- package/dist/tools/getRadiosConfig.d.ts +3 -0
- package/dist/tools/getRadiosConfig.js +13 -0
- package/dist/tools/getRadiosConfig.js.map +1 -0
- package/dist/tools/getRadiusProxyConfig.d.ts +3 -0
- package/dist/tools/getRadiusProxyConfig.js +12 -0
- package/dist/tools/getRadiusProxyConfig.js.map +1 -0
- package/dist/tools/getRadiusServer.d.ts +3 -0
- package/dist/tools/getRadiusServer.js +9 -0
- package/dist/tools/getRadiusServer.js.map +1 -0
- package/dist/tools/getRadiusUserDetail.d.ts +3 -0
- package/dist/tools/getRadiusUserDetail.js +15 -0
- package/dist/tools/getRadiusUserDetail.js.map +1 -0
- package/dist/tools/getRadiusUserList.d.ts +3 -0
- package/dist/tools/getRadiusUserList.js +18 -0
- package/dist/tools/getRadiusUserList.js.map +1 -0
- package/dist/tools/getRateLimitProfiles.d.ts +3 -0
- package/dist/tools/getRateLimitProfiles.js +8 -0
- package/dist/tools/getRateLimitProfiles.js.map +1 -0
- package/dist/tools/getRebootScheduleList.d.ts +3 -0
- package/dist/tools/getRebootScheduleList.js +13 -0
- package/dist/tools/getRebootScheduleList.js.map +1 -0
- package/dist/tools/getRemoteBindingStatus.d.ts +3 -0
- package/dist/tools/getRemoteBindingStatus.js +10 -0
- package/dist/tools/getRemoteBindingStatus.js.map +1 -0
- package/dist/tools/getRemoteLogging.d.ts +3 -0
- package/dist/tools/getRemoteLogging.js +9 -0
- package/dist/tools/getRemoteLogging.js.map +1 -0
- package/dist/tools/getRemoteLoggingSetting.d.ts +3 -0
- package/dist/tools/getRemoteLoggingSetting.js +11 -0
- package/dist/tools/getRemoteLoggingSetting.js.map +1 -0
- package/dist/tools/getRestoreResult.d.ts +3 -0
- package/dist/tools/getRestoreResult.js +10 -0
- package/dist/tools/getRestoreResult.js.map +1 -0
- package/dist/tools/getRetention.d.ts +3 -0
- package/dist/tools/getRetention.js +9 -0
- package/dist/tools/getRetention.js.map +1 -0
- package/dist/tools/getRetryAndDroppedRate.d.ts +3 -0
- package/dist/tools/getRetryAndDroppedRate.js +21 -0
- package/dist/tools/getRetryAndDroppedRate.js.map +1 -0
- package/dist/tools/getRoamingSetting.d.ts +3 -0
- package/dist/tools/getRoamingSetting.js +8 -0
- package/dist/tools/getRoamingSetting.js.map +1 -0
- package/dist/tools/getRogueApExport.d.ts +3 -0
- package/dist/tools/getRogueApExport.js +17 -0
- package/dist/tools/getRogueApExport.js.map +1 -0
- package/dist/tools/getRogueAps.d.ts +3 -0
- package/dist/tools/getRogueAps.js +8 -0
- package/dist/tools/getRogueAps.js.map +1 -0
- package/dist/tools/getRoleDetail.d.ts +3 -0
- package/dist/tools/getRoleDetail.js +13 -0
- package/dist/tools/getRoleDetail.js.map +1 -0
- package/dist/tools/getRoutingTable.d.ts +3 -0
- package/dist/tools/getRoutingTable.js +15 -0
- package/dist/tools/getRoutingTable.js.map +1 -0
- package/dist/tools/getScheduleProfile.d.ts +3 -0
- package/dist/tools/getScheduleProfile.js +8 -0
- package/dist/tools/getScheduleProfile.js.map +1 -0
- package/dist/tools/getSecurityOverview.d.ts +3 -0
- package/dist/tools/getSecurityOverview.js +25 -0
- package/dist/tools/getSecurityOverview.js.map +1 -0
- package/dist/tools/getServiceProfile.d.ts +3 -0
- package/dist/tools/getServiceProfile.js +14 -0
- package/dist/tools/getServiceProfile.js.map +1 -0
- package/dist/tools/getServiceTypeSummary.d.ts +3 -0
- package/dist/tools/getServiceTypeSummary.js +8 -0
- package/dist/tools/getServiceTypeSummary.js.map +1 -0
- package/dist/tools/getSessionLimit.d.ts +3 -0
- package/dist/tools/getSessionLimit.js +11 -0
- package/dist/tools/getSessionLimit.js.map +1 -0
- package/dist/tools/getSiteBackupFileList.d.ts +3 -0
- package/dist/tools/getSiteBackupFileList.js +8 -0
- package/dist/tools/getSiteBackupFileList.js.map +1 -0
- package/dist/tools/getSiteBackupResult.d.ts +3 -0
- package/dist/tools/getSiteBackupResult.js +8 -0
- package/dist/tools/getSiteBackupResult.js.map +1 -0
- package/dist/tools/getSiteCapacity.d.ts +3 -0
- package/dist/tools/getSiteCapacity.js +8 -0
- package/dist/tools/getSiteCapacity.js.map +1 -0
- package/dist/tools/getSiteDetail.d.ts +3 -0
- package/dist/tools/getSiteDetail.js +8 -0
- package/dist/tools/getSiteDetail.js.map +1 -0
- package/dist/tools/getSiteDeviceAccount.d.ts +3 -0
- package/dist/tools/getSiteDeviceAccount.js +8 -0
- package/dist/tools/getSiteDeviceAccount.js.map +1 -0
- package/dist/tools/getSiteNtpStatus.d.ts +3 -0
- package/dist/tools/getSiteNtpStatus.js +8 -0
- package/dist/tools/getSiteNtpStatus.js.map +1 -0
- package/dist/tools/getSiteRememberSetting.d.ts +3 -0
- package/dist/tools/getSiteRememberSetting.js +8 -0
- package/dist/tools/getSiteRememberSetting.js.map +1 -0
- package/dist/tools/getSiteSpecification.d.ts +3 -0
- package/dist/tools/getSiteSpecification.js +8 -0
- package/dist/tools/getSiteSpecification.js.map +1 -0
- package/dist/tools/getSiteTemplateConfig.d.ts +3 -0
- package/dist/tools/getSiteTemplateConfig.js +13 -0
- package/dist/tools/getSiteTemplateConfig.js.map +1 -0
- package/dist/tools/getSiteTemplateDetail.d.ts +3 -0
- package/dist/tools/getSiteTemplateDetail.js +13 -0
- package/dist/tools/getSiteTemplateDetail.js.map +1 -0
- package/dist/tools/getSiteTemplateList.d.ts +3 -0
- package/dist/tools/getSiteTemplateList.js +10 -0
- package/dist/tools/getSiteTemplateList.js.map +1 -0
- package/dist/tools/getSiteToSiteVpnInfo.d.ts +3 -0
- package/dist/tools/getSiteToSiteVpnInfo.js +13 -0
- package/dist/tools/getSiteToSiteVpnInfo.js.map +1 -0
- package/dist/tools/getSiteUrl.d.ts +3 -0
- package/dist/tools/getSiteUrl.js +8 -0
- package/dist/tools/getSiteUrl.js.map +1 -0
- package/dist/tools/getSitesApsAvailableChannel.d.ts +3 -0
- package/dist/tools/getSitesApsAvailableChannel.js +13 -0
- package/dist/tools/getSitesApsAvailableChannel.js.map +1 -0
- package/dist/tools/getSitesApsBridge.d.ts +3 -0
- package/dist/tools/getSitesApsBridge.js +13 -0
- package/dist/tools/getSitesApsBridge.js.map +1 -0
- package/dist/tools/getSitesApsChannelLimit.d.ts +3 -0
- package/dist/tools/getSitesApsChannelLimit.js +13 -0
- package/dist/tools/getSitesApsChannelLimit.js.map +1 -0
- package/dist/tools/getSitesApsIpSetting.d.ts +3 -0
- package/dist/tools/getSitesApsIpSetting.js +13 -0
- package/dist/tools/getSitesApsIpSetting.js.map +1 -0
- package/dist/tools/getSitesApsLoadBalance.d.ts +3 -0
- package/dist/tools/getSitesApsLoadBalance.js +13 -0
- package/dist/tools/getSitesApsLoadBalance.js.map +1 -0
- package/dist/tools/getSitesApsOfdma.d.ts +3 -0
- package/dist/tools/getSitesApsOfdma.js +13 -0
- package/dist/tools/getSitesApsOfdma.js.map +1 -0
- package/dist/tools/getSitesApsPowerSaving.d.ts +3 -0
- package/dist/tools/getSitesApsPowerSaving.js +13 -0
- package/dist/tools/getSitesApsPowerSaving.js.map +1 -0
- package/dist/tools/getSitesApsTrunkSetting.d.ts +3 -0
- package/dist/tools/getSitesApsTrunkSetting.js +13 -0
- package/dist/tools/getSitesApsTrunkSetting.js.map +1 -0
- package/dist/tools/getSitesDeviceWhiteList.d.ts +3 -0
- package/dist/tools/getSitesDeviceWhiteList.js +10 -0
- package/dist/tools/getSitesDeviceWhiteList.js.map +1 -0
- package/dist/tools/getSitesGatewaysGeneralConfig.d.ts +3 -0
- package/dist/tools/getSitesGatewaysGeneralConfig.js +13 -0
- package/dist/tools/getSitesGatewaysGeneralConfig.js.map +1 -0
- package/dist/tools/getSitesGatewaysPin.d.ts +3 -0
- package/dist/tools/getSitesGatewaysPin.js +13 -0
- package/dist/tools/getSitesGatewaysPin.js.map +1 -0
- package/dist/tools/getSitesGatewaysSimCardUsed.d.ts +3 -0
- package/dist/tools/getSitesGatewaysSimCardUsed.js +13 -0
- package/dist/tools/getSitesGatewaysSimCardUsed.js.map +1 -0
- package/dist/tools/getSitesHealthGatewaysWansDetails.d.ts +3 -0
- package/dist/tools/getSitesHealthGatewaysWansDetails.js +13 -0
- package/dist/tools/getSitesHealthGatewaysWansDetails.js.map +1 -0
- package/dist/tools/getSitesSwitchesEs.d.ts +3 -0
- package/dist/tools/getSitesSwitchesEs.js +13 -0
- package/dist/tools/getSitesSwitchesEs.js.map +1 -0
- package/dist/tools/getSitesSwitchesEsGeneralConfig.d.ts +3 -0
- package/dist/tools/getSitesSwitchesEsGeneralConfig.js +13 -0
- package/dist/tools/getSitesSwitchesEsGeneralConfig.js.map +1 -0
- package/dist/tools/getSnmpSetting.d.ts +3 -0
- package/dist/tools/getSnmpSetting.js +11 -0
- package/dist/tools/getSnmpSetting.js.map +1 -0
- package/dist/tools/getSpeedTestResults.d.ts +3 -0
- package/dist/tools/getSpeedTestResults.js +13 -0
- package/dist/tools/getSpeedTestResults.js.map +1 -0
- package/dist/tools/getSshSetting.d.ts +3 -0
- package/dist/tools/getSshSetting.js +8 -0
- package/dist/tools/getSshSetting.js.map +1 -0
- package/dist/tools/getSsidDetail.d.ts +3 -0
- package/dist/tools/getSsidDetail.js +15 -0
- package/dist/tools/getSsidDetail.js.map +1 -0
- package/dist/tools/getSsidList.d.ts +3 -0
- package/dist/tools/getSsidList.js +14 -0
- package/dist/tools/getSsidList.js.map +1 -0
- package/dist/tools/getSsidsBySite.d.ts +3 -0
- package/dist/tools/getSsidsBySite.js +13 -0
- package/dist/tools/getSsidsBySite.js.map +1 -0
- package/dist/tools/getSslVpnServerSetting.d.ts +3 -0
- package/dist/tools/getSslVpnServerSetting.js +8 -0
- package/dist/tools/getSslVpnServerSetting.js.map +1 -0
- package/dist/tools/getStackNetworkList.d.ts +3 -0
- package/dist/tools/getStackNetworkList.js +15 -0
- package/dist/tools/getStackNetworkList.js.map +1 -0
- package/dist/tools/getStackPorts.d.ts +3 -0
- package/dist/tools/getStackPorts.js +8 -0
- package/dist/tools/getStackPorts.js.map +1 -0
- package/dist/tools/getStaticRoutingInterfaceList.d.ts +3 -0
- package/dist/tools/getStaticRoutingInterfaceList.js +11 -0
- package/dist/tools/getStaticRoutingInterfaceList.js.map +1 -0
- package/dist/tools/getSwitchDetail.d.ts +3 -0
- package/dist/tools/getSwitchDetail.js +13 -0
- package/dist/tools/getSwitchDetail.js.map +1 -0
- package/dist/tools/getSwitchDot1xSetting.d.ts +3 -0
- package/dist/tools/getSwitchDot1xSetting.js +8 -0
- package/dist/tools/getSwitchDot1xSetting.js.map +1 -0
- package/dist/tools/getSwitchGeneralConfig.d.ts +3 -0
- package/dist/tools/getSwitchGeneralConfig.js +13 -0
- package/dist/tools/getSwitchGeneralConfig.js.map +1 -0
- package/dist/tools/getSwitchStackDetail.d.ts +3 -0
- package/dist/tools/getSwitchStackDetail.js +8 -0
- package/dist/tools/getSwitchStackDetail.js.map +1 -0
- package/dist/tools/getSwitchVlanInterface.d.ts +3 -0
- package/dist/tools/getSwitchVlanInterface.js +14 -0
- package/dist/tools/getSwitchVlanInterface.js.map +1 -0
- package/dist/tools/getSyslogConfig.d.ts +3 -0
- package/dist/tools/getSyslogConfig.js +9 -0
- package/dist/tools/getSyslogConfig.js.map +1 -0
- package/dist/tools/getThreatCount.d.ts +3 -0
- package/dist/tools/getThreatCount.js +14 -0
- package/dist/tools/getThreatCount.js.map +1 -0
- package/dist/tools/getThreatDetail.d.ts +3 -0
- package/dist/tools/getThreatDetail.js +14 -0
- package/dist/tools/getThreatDetail.js.map +1 -0
- package/dist/tools/getThreatList.d.ts +3 -0
- package/dist/tools/getThreatList.js +34 -0
- package/dist/tools/getThreatList.js.map +1 -0
- package/dist/tools/getTopThreats.d.ts +3 -0
- package/dist/tools/getTopThreats.js +12 -0
- package/dist/tools/getTopThreats.js.map +1 -0
- package/dist/tools/getTrafficDistribution.d.ts +3 -0
- package/dist/tools/getTrafficDistribution.js +21 -0
- package/dist/tools/getTrafficDistribution.js.map +1 -0
- package/dist/tools/getTrafficPriority.d.ts +3 -0
- package/dist/tools/getTrafficPriority.js +8 -0
- package/dist/tools/getTrafficPriority.js.map +1 -0
- package/dist/tools/getTrafficStats.d.ts +3 -0
- package/dist/tools/getTrafficStats.js +8 -0
- package/dist/tools/getTrafficStats.js.map +1 -0
- package/dist/tools/getUiInterface.d.ts +3 -0
- package/dist/tools/getUiInterface.js +9 -0
- package/dist/tools/getUiInterface.js.map +1 -0
- package/dist/tools/getUpgradeLogs.d.ts +3 -0
- package/dist/tools/getUpgradeLogs.js +10 -0
- package/dist/tools/getUpgradeLogs.js.map +1 -0
- package/dist/tools/getUpgradeOverviewCritical.d.ts +3 -0
- package/dist/tools/getUpgradeOverviewCritical.js +9 -0
- package/dist/tools/getUpgradeOverviewCritical.js.map +1 -0
- package/dist/tools/getUpgradeOverviewTryBeta.d.ts +3 -0
- package/dist/tools/getUpgradeOverviewTryBeta.js +9 -0
- package/dist/tools/getUpgradeOverviewTryBeta.js.map +1 -0
- package/dist/tools/getUpgradeScheduleList.d.ts +3 -0
- package/dist/tools/getUpgradeScheduleList.js +8 -0
- package/dist/tools/getUpgradeScheduleList.js.map +1 -0
- package/dist/tools/getUplinkWiredDetail.d.ts +3 -0
- package/dist/tools/getUplinkWiredDetail.js +13 -0
- package/dist/tools/getUplinkWiredDetail.js.map +1 -0
- package/dist/tools/getUpnpSetting.d.ts +3 -0
- package/dist/tools/getUpnpSetting.js +11 -0
- package/dist/tools/getUpnpSetting.js.map +1 -0
- package/dist/tools/getUrlFilterBlacklist.d.ts +3 -0
- package/dist/tools/getUrlFilterBlacklist.js +14 -0
- package/dist/tools/getUrlFilterBlacklist.js.map +1 -0
- package/dist/tools/getUrlFilterGeneral.d.ts +3 -0
- package/dist/tools/getUrlFilterGeneral.js +8 -0
- package/dist/tools/getUrlFilterGeneral.js.map +1 -0
- package/dist/tools/getUrlFilterRules.d.ts +3 -0
- package/dist/tools/getUrlFilterRules.js +14 -0
- package/dist/tools/getUrlFilterRules.js.map +1 -0
- package/dist/tools/getUrlFilterWhitelist.d.ts +3 -0
- package/dist/tools/getUrlFilterWhitelist.js +14 -0
- package/dist/tools/getUrlFilterWhitelist.js.map +1 -0
- package/dist/tools/getUrlGroupProfile.d.ts +3 -0
- package/dist/tools/getUrlGroupProfile.js +8 -0
- package/dist/tools/getUrlGroupProfile.js.map +1 -0
- package/dist/tools/getUserRoleProfile.d.ts +3 -0
- package/dist/tools/getUserRoleProfile.js +12 -0
- package/dist/tools/getUserRoleProfile.js.map +1 -0
- package/dist/tools/getVlanProfile.d.ts +3 -0
- package/dist/tools/getVlanProfile.js +8 -0
- package/dist/tools/getVlanProfile.js.map +1 -0
- package/dist/tools/getVpnClientStatus.d.ts +3 -0
- package/dist/tools/getVpnClientStatus.js +8 -0
- package/dist/tools/getVpnClientStatus.js.map +1 -0
- package/dist/tools/getVpnRouteConfig.d.ts +3 -0
- package/dist/tools/getVpnRouteConfig.js +8 -0
- package/dist/tools/getVpnRouteConfig.js.map +1 -0
- package/dist/tools/getVpnSettings.d.ts +3 -0
- package/dist/tools/getVpnSettings.js +8 -0
- package/dist/tools/getVpnSettings.js.map +1 -0
- package/dist/tools/getVpnTunnelStats.d.ts +3 -0
- package/dist/tools/getVpnTunnelStats.js +13 -0
- package/dist/tools/getVpnTunnelStats.js.map +1 -0
- package/dist/tools/getVpnUserDetail.d.ts +3 -0
- package/dist/tools/getVpnUserDetail.js +16 -0
- package/dist/tools/getVpnUserDetail.js.map +1 -0
- package/dist/tools/getVpnUserList.d.ts +3 -0
- package/dist/tools/getVpnUserList.js +14 -0
- package/dist/tools/getVpnUserList.js.map +1 -0
- package/dist/tools/getVrrpConfig.d.ts +3 -0
- package/dist/tools/getVrrpConfig.js +11 -0
- package/dist/tools/getVrrpConfig.js.map +1 -0
- package/dist/tools/getWanHealthDetail.d.ts +3 -0
- package/dist/tools/getWanHealthDetail.js +14 -0
- package/dist/tools/getWanHealthDetail.js.map +1 -0
- package/dist/tools/getWanIspProfile.d.ts +3 -0
- package/dist/tools/getWanIspProfile.js +15 -0
- package/dist/tools/getWanIspProfile.js.map +1 -0
- package/dist/tools/getWanLanStatus.d.ts +3 -0
- package/dist/tools/getWanLanStatus.js +8 -0
- package/dist/tools/getWanLanStatus.js.map +1 -0
- package/dist/tools/getWanNatConfig.d.ts +3 -0
- package/dist/tools/getWanNatConfig.js +13 -0
- package/dist/tools/getWanNatConfig.js.map +1 -0
- package/dist/tools/getWanPortDetail.d.ts +3 -0
- package/dist/tools/getWanPortDetail.js +11 -0
- package/dist/tools/getWanPortDetail.js.map +1 -0
- package/dist/tools/getWanPortsConfig.d.ts +3 -0
- package/dist/tools/getWanPortsConfig.js +11 -0
- package/dist/tools/getWanPortsConfig.js.map +1 -0
- package/dist/tools/getWanQosConfig.d.ts +3 -0
- package/dist/tools/getWanQosConfig.js +11 -0
- package/dist/tools/getWanQosConfig.js.map +1 -0
- package/dist/tools/getWanUsageStats.d.ts +3 -0
- package/dist/tools/getWanUsageStats.js +11 -0
- package/dist/tools/getWanUsageStats.js.map +1 -0
- package/dist/tools/getWebhookForGlobal.d.ts +3 -0
- package/dist/tools/getWebhookForGlobal.js +9 -0
- package/dist/tools/getWebhookForGlobal.js.map +1 -0
- package/dist/tools/getWebhookLogsForGlobal.d.ts +3 -0
- package/dist/tools/getWebhookLogsForGlobal.js +17 -0
- package/dist/tools/getWebhookLogsForGlobal.js.map +1 -0
- package/dist/tools/getWids.d.ts +3 -0
- package/dist/tools/getWids.js +8 -0
- package/dist/tools/getWids.js.map +1 -0
- package/dist/tools/getWidsBlacklist.d.ts +3 -0
- package/dist/tools/getWidsBlacklist.js +8 -0
- package/dist/tools/getWidsBlacklist.js.map +1 -0
- package/dist/tools/getWireguardSummary.d.ts +3 -0
- package/dist/tools/getWireguardSummary.js +8 -0
- package/dist/tools/getWireguardSummary.js.map +1 -0
- package/dist/tools/getWlanGroupList.d.ts +3 -0
- package/dist/tools/getWlanGroupList.js +8 -0
- package/dist/tools/getWlanGroupList.js.map +1 -0
- package/dist/tools/index.d.ts +4 -0
- package/dist/tools/index.js +803 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/listAllSsids.d.ts +3 -0
- package/dist/tools/listAllSsids.js +8 -0
- package/dist/tools/listAllSsids.js.map +1 -0
- package/dist/tools/listClientToSiteVpnClients.d.ts +3 -0
- package/dist/tools/listClientToSiteVpnClients.js +8 -0
- package/dist/tools/listClientToSiteVpnClients.js.map +1 -0
- package/dist/tools/listClientToSiteVpnServers.d.ts +3 -0
- package/dist/tools/listClientToSiteVpnServers.js +8 -0
- package/dist/tools/listClientToSiteVpnServers.js.map +1 -0
- package/dist/tools/listClients.d.ts +3 -0
- package/dist/tools/listClients.js +8 -0
- package/dist/tools/listClients.js.map +1 -0
- package/dist/tools/listClientsActivity.d.ts +3 -0
- package/dist/tools/listClientsActivity.js +15 -0
- package/dist/tools/listClientsActivity.js.map +1 -0
- package/dist/tools/listClientsPastConnections.d.ts +3 -0
- package/dist/tools/listClientsPastConnections.js +32 -0
- package/dist/tools/listClientsPastConnections.js.map +1 -0
- package/dist/tools/listDevices.d.ts +3 -0
- package/dist/tools/listDevices.js +8 -0
- package/dist/tools/listDevices.js.map +1 -0
- package/dist/tools/listDevicesStats.d.ts +3 -0
- package/dist/tools/listDevicesStats.js +29 -0
- package/dist/tools/listDevicesStats.js.map +1 -0
- package/dist/tools/listEapAcls.d.ts +3 -0
- package/dist/tools/listEapAcls.js +8 -0
- package/dist/tools/listEapAcls.js.map +1 -0
- package/dist/tools/listGlobalAlerts.d.ts +3 -0
- package/dist/tools/listGlobalAlerts.js +31 -0
- package/dist/tools/listGlobalAlerts.js.map +1 -0
- package/dist/tools/listGlobalEvents.d.ts +3 -0
- package/dist/tools/listGlobalEvents.js +31 -0
- package/dist/tools/listGlobalEvents.js.map +1 -0
- package/dist/tools/listGroupProfiles.d.ts +3 -0
- package/dist/tools/listGroupProfiles.js +14 -0
- package/dist/tools/listGroupProfiles.js.map +1 -0
- package/dist/tools/listMdnsProfile.d.ts +3 -0
- package/dist/tools/listMdnsProfile.js +8 -0
- package/dist/tools/listMdnsProfile.js.map +1 -0
- package/dist/tools/listMostActiveClients.d.ts +3 -0
- package/dist/tools/listMostActiveClients.js +8 -0
- package/dist/tools/listMostActiveClients.js.map +1 -0
- package/dist/tools/listOsgAcls.d.ts +3 -0
- package/dist/tools/listOsgAcls.js +8 -0
- package/dist/tools/listOsgAcls.js.map +1 -0
- package/dist/tools/listPendingDevices.d.ts +3 -0
- package/dist/tools/listPendingDevices.js +8 -0
- package/dist/tools/listPendingDevices.js.map +1 -0
- package/dist/tools/listPolicyRoutes.d.ts +3 -0
- package/dist/tools/listPolicyRoutes.js +11 -0
- package/dist/tools/listPolicyRoutes.js.map +1 -0
- package/dist/tools/listPortForwardingRules.d.ts +3 -0
- package/dist/tools/listPortForwardingRules.js +8 -0
- package/dist/tools/listPortForwardingRules.js.map +1 -0
- package/dist/tools/listRadiusProfiles.d.ts +3 -0
- package/dist/tools/listRadiusProfiles.js +8 -0
- package/dist/tools/listRadiusProfiles.js.map +1 -0
- package/dist/tools/listServiceType.d.ts +3 -0
- package/dist/tools/listServiceType.js +9 -0
- package/dist/tools/listServiceType.js.map +1 -0
- package/dist/tools/listSiteAlerts.d.ts +3 -0
- package/dist/tools/listSiteAlerts.js +36 -0
- package/dist/tools/listSiteAlerts.js.map +1 -0
- package/dist/tools/listSiteAuditLogs.d.ts +3 -0
- package/dist/tools/listSiteAuditLogs.js +36 -0
- package/dist/tools/listSiteAuditLogs.js.map +1 -0
- package/dist/tools/listSiteEvents.d.ts +3 -0
- package/dist/tools/listSiteEvents.js +36 -0
- package/dist/tools/listSiteEvents.js.map +1 -0
- package/dist/tools/listSiteThreatManagement.d.ts +3 -0
- package/dist/tools/listSiteThreatManagement.js +24 -0
- package/dist/tools/listSiteThreatManagement.js.map +1 -0
- package/dist/tools/listSiteToSiteVpns.d.ts +3 -0
- package/dist/tools/listSiteToSiteVpns.js +8 -0
- package/dist/tools/listSiteToSiteVpns.js.map +1 -0
- package/dist/tools/listSites.d.ts +3 -0
- package/dist/tools/listSites.js +12 -0
- package/dist/tools/listSites.js.map +1 -0
- package/dist/tools/listSitesApsPorts.d.ts +3 -0
- package/dist/tools/listSitesApsPorts.js +13 -0
- package/dist/tools/listSitesApsPorts.js.map +1 -0
- package/dist/tools/listSitesCableTestSwitchesIncrementResults.d.ts +3 -0
- package/dist/tools/listSitesCableTestSwitchesIncrementResults.js +13 -0
- package/dist/tools/listSitesCableTestSwitchesIncrementResults.js.map +1 -0
- package/dist/tools/listSitesCableTestSwitchesPorts.d.ts +3 -0
- package/dist/tools/listSitesCableTestSwitchesPorts.js +13 -0
- package/dist/tools/listSitesCableTestSwitchesPorts.js.map +1 -0
- package/dist/tools/listSitesStacks.d.ts +3 -0
- package/dist/tools/listSitesStacks.js +10 -0
- package/dist/tools/listSitesStacks.js.map +1 -0
- package/dist/tools/listStaticRoutes.d.ts +3 -0
- package/dist/tools/listStaticRoutes.js +8 -0
- package/dist/tools/listStaticRoutes.js.map +1 -0
- package/dist/tools/listSwitchNetworks.d.ts +3 -0
- package/dist/tools/listSwitchNetworks.js +15 -0
- package/dist/tools/listSwitchNetworks.js.map +1 -0
- package/dist/tools/listTimeRangeProfiles.d.ts +3 -0
- package/dist/tools/listTimeRangeProfiles.js +8 -0
- package/dist/tools/listTimeRangeProfiles.js.map +1 -0
- package/dist/tools/listUpgradeFirmwares.d.ts +3 -0
- package/dist/tools/listUpgradeFirmwares.js +10 -0
- package/dist/tools/listUpgradeFirmwares.js.map +1 -0
- package/dist/tools/listUpgradeOverviewFirmwares.d.ts +3 -0
- package/dist/tools/listUpgradeOverviewFirmwares.js +10 -0
- package/dist/tools/listUpgradeOverviewFirmwares.js.map +1 -0
- package/dist/tools/listWireguard.d.ts +3 -0
- package/dist/tools/listWireguard.js +15 -0
- package/dist/tools/listWireguard.js.map +1 -0
- package/dist/tools/listWireguardPeers.d.ts +3 -0
- package/dist/tools/listWireguardPeers.js +9 -0
- package/dist/tools/listWireguardPeers.js.map +1 -0
- package/dist/tools/rebootDevice.d.ts +3 -0
- package/dist/tools/rebootDevice.js +29 -0
- package/dist/tools/rebootDevice.js.map +1 -0
- package/dist/tools/reconnectClient.d.ts +3 -0
- package/dist/tools/reconnectClient.js +33 -0
- package/dist/tools/reconnectClient.js.map +1 -0
- package/dist/tools/restoreController.d.ts +3 -0
- package/dist/tools/restoreController.js +58 -0
- package/dist/tools/restoreController.js.map +1 -0
- package/dist/tools/restoreControllerFromFileServer.d.ts +3 -0
- package/dist/tools/restoreControllerFromFileServer.js +67 -0
- package/dist/tools/restoreControllerFromFileServer.js.map +1 -0
- package/dist/tools/restoreSites.d.ts +3 -0
- package/dist/tools/restoreSites.js +68 -0
- package/dist/tools/restoreSites.js.map +1 -0
- package/dist/tools/restoreSitesFromFileServer.d.ts +3 -0
- package/dist/tools/restoreSitesFromFileServer.js +76 -0
- package/dist/tools/restoreSitesFromFileServer.js.map +1 -0
- package/dist/tools/searchDevices.d.ts +3 -0
- package/dist/tools/searchDevices.js +13 -0
- package/dist/tools/searchDevices.js.map +1 -0
- package/dist/tools/setAccessControl.d.ts +3 -0
- package/dist/tools/setAccessControl.js +35 -0
- package/dist/tools/setAccessControl.js.map +1 -0
- package/dist/tools/setAclConfigTypeSetting.d.ts +3 -0
- package/dist/tools/setAclConfigTypeSetting.js +32 -0
- package/dist/tools/setAclConfigTypeSetting.js.map +1 -0
- package/dist/tools/setApChannelLimit.d.ts +3 -0
- package/dist/tools/setApChannelLimit.js +44 -0
- package/dist/tools/setApChannelLimit.js.map +1 -0
- package/dist/tools/setApConfig.d.ts +3 -0
- package/dist/tools/setApConfig.js +189 -0
- package/dist/tools/setApConfig.js.map +1 -0
- package/dist/tools/setApPowerSaving.d.ts +3 -0
- package/dist/tools/setApPowerSaving.js +78 -0
- package/dist/tools/setApPowerSaving.js.map +1 -0
- package/dist/tools/setAppControlRule.d.ts +3 -0
- package/dist/tools/setAppControlRule.js +38 -0
- package/dist/tools/setAppControlRule.js.map +1 -0
- package/dist/tools/setBandwidthControlRule.d.ts +3 -0
- package/dist/tools/setBandwidthControlRule.js +65 -0
- package/dist/tools/setBandwidthControlRule.js.map +1 -0
- package/dist/tools/setClientRateLimit.d.ts +3 -0
- package/dist/tools/setClientRateLimit.js +14 -0
- package/dist/tools/setClientRateLimit.js.map +1 -0
- package/dist/tools/setClientRateLimitProfile.d.ts +3 -0
- package/dist/tools/setClientRateLimitProfile.js +13 -0
- package/dist/tools/setClientRateLimitProfile.js.map +1 -0
- package/dist/tools/setDeviceLed.d.ts +3 -0
- package/dist/tools/setDeviceLed.js +29 -0
- package/dist/tools/setDeviceLed.js.map +1 -0
- package/dist/tools/setFirewallSetting.d.ts +3 -0
- package/dist/tools/setFirewallSetting.js +45 -0
- package/dist/tools/setFirewallSetting.js.map +1 -0
- package/dist/tools/setGatewayConfig.d.ts +3 -0
- package/dist/tools/setGatewayConfig.js +105 -0
- package/dist/tools/setGatewayConfig.js.map +1 -0
- package/dist/tools/types.d.ts +5 -0
- package/dist/tools/types.js +2 -0
- package/dist/tools/types.js.map +1 -0
- package/dist/tools/unblockClient.d.ts +3 -0
- package/dist/tools/unblockClient.js +33 -0
- package/dist/tools/unblockClient.js.map +1 -0
- package/dist/tools/updateDhcpReservation.d.ts +3 -0
- package/dist/tools/updateDhcpReservation.js +75 -0
- package/dist/tools/updateDhcpReservation.js.map +1 -0
- package/dist/tools/updateEapAcl.d.ts +3 -0
- package/dist/tools/updateEapAcl.js +36 -0
- package/dist/tools/updateEapAcl.js.map +1 -0
- package/dist/tools/updateGatewayAcl.d.ts +3 -0
- package/dist/tools/updateGatewayAcl.js +34 -0
- package/dist/tools/updateGatewayAcl.js.map +1 -0
- package/dist/types/activeClientInfo.d.ts +17 -0
- package/dist/types/activeClientInfo.js +2 -0
- package/dist/types/activeClientInfo.js.map +1 -0
- package/dist/types/clientActivity.d.ts +31 -0
- package/dist/types/clientActivity.js +2 -0
- package/dist/types/clientActivity.js.map +1 -0
- package/dist/types/clientPastConnection.d.ts +59 -0
- package/dist/types/clientPastConnection.js +2 -0
- package/dist/types/clientPastConnection.js.map +1 -0
- package/dist/types/customHeaders.d.ts +5 -0
- package/dist/types/customHeaders.js +2 -0
- package/dist/types/customHeaders.js.map +1 -0
- package/dist/types/index.d.ts +14 -0
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/omadaApiResponse.d.ts +5 -0
- package/dist/types/omadaApiResponse.js +2 -0
- package/dist/types/omadaApiResponse.js.map +1 -0
- package/dist/types/omadaClientInfo.d.ts +11 -0
- package/dist/types/omadaClientInfo.js +2 -0
- package/dist/types/omadaClientInfo.js.map +1 -0
- package/dist/types/omadaDeviceInfo.d.ts +11 -0
- package/dist/types/omadaDeviceInfo.js +2 -0
- package/dist/types/omadaDeviceInfo.js.map +1 -0
- package/dist/types/omadaDeviceStats.d.ts +29 -0
- package/dist/types/omadaDeviceStats.js +2 -0
- package/dist/types/omadaDeviceStats.js.map +1 -0
- package/dist/types/omadaSiteSummary.d.ts +5 -0
- package/dist/types/omadaSiteSummary.js +2 -0
- package/dist/types/omadaSiteSummary.js.map +1 -0
- package/dist/types/oswStackDetail.d.ts +11 -0
- package/dist/types/oswStackDetail.js +2 -0
- package/dist/types/oswStackDetail.js.map +1 -0
- package/dist/types/paginatedResult.d.ts +6 -0
- package/dist/types/paginatedResult.js +2 -0
- package/dist/types/paginatedResult.js.map +1 -0
- package/dist/types/rateLimitProfile.d.ts +56 -0
- package/dist/types/rateLimitProfile.js +2 -0
- package/dist/types/rateLimitProfile.js.map +1 -0
- package/dist/types/threatInfo.d.ts +37 -0
- package/dist/types/threatInfo.js +2 -0
- package/dist/types/threatInfo.js.map +1 -0
- package/dist/types/tokenResult.d.ts +6 -0
- package/dist/types/tokenResult.js +2 -0
- package/dist/types/tokenResult.js.map +1 -0
- package/dist/types.d.ts +6 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/dist/utils/config-validations.d.ts +76 -0
- package/dist/utils/config-validations.js +133 -0
- package/dist/utils/config-validations.js.map +1 -0
- package/dist/utils/logger.d.ts +18 -0
- package/dist/utils/logger.js +91 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/pagination-schema.d.ts +23 -0
- package/dist/utils/pagination-schema.js +19 -0
- package/dist/utils/pagination-schema.js.map +1 -0
- package/package.json +76 -0
|
@@ -0,0 +1,1218 @@
|
|
|
1
|
+
import https from 'node:https';
|
|
2
|
+
import axios from 'axios';
|
|
3
|
+
import { AccountOperations } from './account.js';
|
|
4
|
+
import { ActionOperations } from './actions.js';
|
|
5
|
+
import { AuthManager } from './auth.js';
|
|
6
|
+
import { ClientOperations } from './client.js';
|
|
7
|
+
import { ControllerOperations } from './controller.js';
|
|
8
|
+
import { DeviceOperations } from './device.js';
|
|
9
|
+
import { InsightOperations } from './insight.js';
|
|
10
|
+
import { LogOperations } from './log.js';
|
|
11
|
+
import { MaintenanceOperations } from './maintenance.js';
|
|
12
|
+
import { MonitorOperations } from './monitor.js';
|
|
13
|
+
import { NetworkOperations } from './network.js';
|
|
14
|
+
import { RequestHandler } from './request.js';
|
|
15
|
+
import { ScheduleOperations } from './schedules.js';
|
|
16
|
+
import { SecurityOperations } from './security.js';
|
|
17
|
+
import { SiteOperations } from './site.js';
|
|
18
|
+
/**
|
|
19
|
+
* Main client for interacting with the TP-Link Omada API.
|
|
20
|
+
* Organized by API tag with dedicated operation classes for each domain.
|
|
21
|
+
*/
|
|
22
|
+
export class OmadaClient {
|
|
23
|
+
http;
|
|
24
|
+
auth;
|
|
25
|
+
request;
|
|
26
|
+
siteOps;
|
|
27
|
+
deviceOps;
|
|
28
|
+
clientOps;
|
|
29
|
+
securityOps;
|
|
30
|
+
networkOps;
|
|
31
|
+
monitorOps;
|
|
32
|
+
insightOps;
|
|
33
|
+
logOps;
|
|
34
|
+
controllerOps;
|
|
35
|
+
maintenanceOps;
|
|
36
|
+
accountOps;
|
|
37
|
+
scheduleOps;
|
|
38
|
+
actionOps;
|
|
39
|
+
omadacId;
|
|
40
|
+
constructor(options) {
|
|
41
|
+
this.omadacId = options.omadacId;
|
|
42
|
+
const axiosOptions = {
|
|
43
|
+
baseURL: options.baseUrl,
|
|
44
|
+
httpsAgent: new https.Agent({ rejectUnauthorized: options.strictSsl }),
|
|
45
|
+
headers: {
|
|
46
|
+
'Content-Type': 'application/json',
|
|
47
|
+
Accept: 'application/json',
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
if (options.requestTimeout) {
|
|
51
|
+
axiosOptions.timeout = options.requestTimeout;
|
|
52
|
+
}
|
|
53
|
+
this.http = axios.create(axiosOptions);
|
|
54
|
+
// Initialize operation modules
|
|
55
|
+
this.auth = new AuthManager(this.http, options.clientId, options.clientSecret, options.omadacId);
|
|
56
|
+
this.request = new RequestHandler(this.http, this.auth);
|
|
57
|
+
this.siteOps = new SiteOperations(this.request, this.buildOmadaPath.bind(this), options.siteId);
|
|
58
|
+
this.deviceOps = new DeviceOperations(this.request, this.siteOps, this.buildOmadaPath.bind(this));
|
|
59
|
+
this.clientOps = new ClientOperations(this.request, this.siteOps, this.buildOmadaPath.bind(this));
|
|
60
|
+
this.securityOps = new SecurityOperations(this.request, this.buildOmadaPath.bind(this));
|
|
61
|
+
this.networkOps = new NetworkOperations(this.request, this.siteOps, this.buildOmadaPath.bind(this));
|
|
62
|
+
this.monitorOps = new MonitorOperations(this.request, this.siteOps, this.buildOmadaPath.bind(this));
|
|
63
|
+
this.insightOps = new InsightOperations(this.request, this.siteOps, this.buildOmadaPath.bind(this));
|
|
64
|
+
this.logOps = new LogOperations(this.request, this.siteOps, this.buildOmadaPath.bind(this));
|
|
65
|
+
this.controllerOps = new ControllerOperations(this.request, this.buildOmadaPath.bind(this));
|
|
66
|
+
this.maintenanceOps = new MaintenanceOperations(this.request, this.siteOps, this.buildOmadaPath.bind(this));
|
|
67
|
+
this.accountOps = new AccountOperations(this.request, this.buildOmadaPath.bind(this));
|
|
68
|
+
this.scheduleOps = new ScheduleOperations(this.request, this.siteOps, this.buildOmadaPath.bind(this));
|
|
69
|
+
this.actionOps = new ActionOperations(this.request, this.siteOps, this.buildOmadaPath.bind(this));
|
|
70
|
+
}
|
|
71
|
+
// Site operations
|
|
72
|
+
async listSites(customHeaders) {
|
|
73
|
+
return await this.siteOps.listSites(customHeaders);
|
|
74
|
+
}
|
|
75
|
+
// Device operations
|
|
76
|
+
async listDevices(siteId, customHeaders) {
|
|
77
|
+
return await this.deviceOps.listDevices(siteId, customHeaders);
|
|
78
|
+
}
|
|
79
|
+
async getDevice(identifier, siteId, customHeaders) {
|
|
80
|
+
return await this.deviceOps.getDevice(identifier, siteId, customHeaders);
|
|
81
|
+
}
|
|
82
|
+
async getSwitchStackDetail(stackId, siteId, customHeaders) {
|
|
83
|
+
return await this.deviceOps.getSwitchStackDetail(stackId, siteId, customHeaders);
|
|
84
|
+
}
|
|
85
|
+
async searchDevices(searchKey, customHeaders) {
|
|
86
|
+
return await this.deviceOps.searchDevices(searchKey, customHeaders);
|
|
87
|
+
}
|
|
88
|
+
async listDevicesStats(options, customHeaders) {
|
|
89
|
+
return await this.deviceOps.listDevicesStats(options, customHeaders);
|
|
90
|
+
}
|
|
91
|
+
// Client operations
|
|
92
|
+
async listClients(siteId, customHeaders) {
|
|
93
|
+
return await this.clientOps.listClients(siteId, customHeaders);
|
|
94
|
+
}
|
|
95
|
+
async getClient(identifier, siteId, customHeaders) {
|
|
96
|
+
return await this.clientOps.getClient(identifier, siteId, customHeaders);
|
|
97
|
+
}
|
|
98
|
+
async listMostActiveClients(siteId, customHeaders) {
|
|
99
|
+
return await this.clientOps.listMostActiveClients(siteId, customHeaders);
|
|
100
|
+
}
|
|
101
|
+
async listClientsActivity(options, customHeaders) {
|
|
102
|
+
return await this.clientOps.listClientsActivity(options, customHeaders);
|
|
103
|
+
}
|
|
104
|
+
async listClientsPastConnections(options, customHeaders) {
|
|
105
|
+
return await this.clientOps.listClientsPastConnections(options, customHeaders);
|
|
106
|
+
}
|
|
107
|
+
// Rate limit operations
|
|
108
|
+
async getRateLimitProfiles(siteId, customHeaders) {
|
|
109
|
+
return await this.clientOps.getRateLimitProfiles(siteId, customHeaders);
|
|
110
|
+
}
|
|
111
|
+
async setClientRateLimit(clientMac, downLimit, upLimit, siteId, customHeaders) {
|
|
112
|
+
return await this.clientOps.setClientRateLimit(clientMac, downLimit, upLimit, siteId, customHeaders);
|
|
113
|
+
}
|
|
114
|
+
async setClientRateLimitProfile(clientMac, profileId, siteId, customHeaders) {
|
|
115
|
+
return await this.clientOps.setClientRateLimitProfile(clientMac, profileId, siteId, customHeaders);
|
|
116
|
+
}
|
|
117
|
+
async disableClientRateLimit(clientMac, siteId, customHeaders) {
|
|
118
|
+
return await this.clientOps.disableClientRateLimit(clientMac, siteId, customHeaders);
|
|
119
|
+
}
|
|
120
|
+
async getClientDetail(clientMac, siteId, customHeaders) {
|
|
121
|
+
return await this.clientOps.getClientDetail(clientMac, siteId, customHeaders);
|
|
122
|
+
}
|
|
123
|
+
async getGridKnownClients(page, pageSize, options, siteId, customHeaders) {
|
|
124
|
+
return await this.clientOps.getGridKnownClients(page, pageSize, options, siteId, customHeaders);
|
|
125
|
+
}
|
|
126
|
+
async getGridClientHistory(clientMac, page, pageSize, searchKey, siteId, customHeaders) {
|
|
127
|
+
return await this.clientOps.getGridClientHistory(clientMac, page, pageSize, searchKey, siteId, customHeaders);
|
|
128
|
+
}
|
|
129
|
+
async getClientsDistribution(siteId, customHeaders) {
|
|
130
|
+
return await this.clientOps.getClientsDistribution(siteId, customHeaders);
|
|
131
|
+
}
|
|
132
|
+
async getPastClientNum(start, end, siteId, customHeaders) {
|
|
133
|
+
return await this.clientOps.getPastClientNum(start, end, siteId, customHeaders);
|
|
134
|
+
}
|
|
135
|
+
// Security operations
|
|
136
|
+
async getThreatList(options, customHeaders) {
|
|
137
|
+
return await this.securityOps.getThreatList(options, customHeaders);
|
|
138
|
+
}
|
|
139
|
+
// Network operations
|
|
140
|
+
async getInternetInfo(siteId, customHeaders) {
|
|
141
|
+
return await this.networkOps.getInternetInfo(siteId, customHeaders);
|
|
142
|
+
}
|
|
143
|
+
async getPortForwardingStatus(type, siteId, page = 1, pageSize = 10, customHeaders) {
|
|
144
|
+
return await this.networkOps.getPortForwardingStatus(type, siteId, page, pageSize, customHeaders);
|
|
145
|
+
}
|
|
146
|
+
async getLanNetworkList(siteId, customHeaders) {
|
|
147
|
+
return await this.networkOps.getLanNetworkList(siteId, customHeaders);
|
|
148
|
+
}
|
|
149
|
+
async getLanProfileList(siteId, customHeaders) {
|
|
150
|
+
return await this.networkOps.getLanProfileList(siteId, customHeaders);
|
|
151
|
+
}
|
|
152
|
+
async getWlanGroupList(siteId, customHeaders) {
|
|
153
|
+
return await this.networkOps.getWlanGroupList(siteId, customHeaders);
|
|
154
|
+
}
|
|
155
|
+
async getSsidList(wlanId, siteId, customHeaders) {
|
|
156
|
+
return await this.networkOps.getSsidList(wlanId, siteId, customHeaders);
|
|
157
|
+
}
|
|
158
|
+
async getSsidDetail(wlanId, ssidId, siteId, customHeaders) {
|
|
159
|
+
return await this.networkOps.getSsidDetail(wlanId, ssidId, siteId, customHeaders);
|
|
160
|
+
}
|
|
161
|
+
async getFirewallSetting(siteId, customHeaders) {
|
|
162
|
+
return await this.networkOps.getFirewallSetting(siteId, customHeaders);
|
|
163
|
+
}
|
|
164
|
+
async setFirewallSetting(payload, siteId, customHeaders) {
|
|
165
|
+
return await this.networkOps.setFirewallSetting(payload, siteId, customHeaders);
|
|
166
|
+
}
|
|
167
|
+
async getSwitchDetail(switchMac, siteId, customHeaders) {
|
|
168
|
+
return await this.deviceOps.getSwitchDetail(switchMac, siteId, customHeaders);
|
|
169
|
+
}
|
|
170
|
+
async getGatewayDetail(gatewayMac, siteId, customHeaders) {
|
|
171
|
+
return await this.deviceOps.getGatewayDetail(gatewayMac, siteId, customHeaders);
|
|
172
|
+
}
|
|
173
|
+
async getGatewayWanStatus(gatewayMac, siteId, customHeaders) {
|
|
174
|
+
return await this.deviceOps.getGatewayWanStatus(gatewayMac, siteId, customHeaders);
|
|
175
|
+
}
|
|
176
|
+
async getGatewayLanStatus(gatewayMac, siteId, customHeaders) {
|
|
177
|
+
return await this.deviceOps.getGatewayLanStatus(gatewayMac, siteId, customHeaders);
|
|
178
|
+
}
|
|
179
|
+
async getGatewayPorts(gatewayMac, siteId, customHeaders) {
|
|
180
|
+
return await this.deviceOps.getGatewayPorts(gatewayMac, siteId, customHeaders);
|
|
181
|
+
}
|
|
182
|
+
async getApDetail(apMac, siteId, customHeaders) {
|
|
183
|
+
return await this.deviceOps.getApDetail(apMac, siteId, customHeaders);
|
|
184
|
+
}
|
|
185
|
+
async getApRadios(apMac, siteId, customHeaders) {
|
|
186
|
+
return await this.deviceOps.getApRadios(apMac, siteId, customHeaders);
|
|
187
|
+
}
|
|
188
|
+
async getStackPorts(stackId, siteId, customHeaders) {
|
|
189
|
+
return await this.deviceOps.getStackPorts(stackId, siteId, customHeaders);
|
|
190
|
+
}
|
|
191
|
+
async listPendingDevices(siteId, customHeaders) {
|
|
192
|
+
return await this.deviceOps.listPendingDevices(siteId, customHeaders);
|
|
193
|
+
}
|
|
194
|
+
// Device Management — Phase 1 Read Tools (issue #36)
|
|
195
|
+
async getAllDeviceBySite(siteId, customHeaders) {
|
|
196
|
+
return await this.deviceOps.getAllDeviceBySite(siteId, customHeaders);
|
|
197
|
+
}
|
|
198
|
+
async getFirmwareInfo(deviceMac, siteId, customHeaders) {
|
|
199
|
+
return await this.deviceOps.getFirmwareInfo(deviceMac, siteId, customHeaders);
|
|
200
|
+
}
|
|
201
|
+
async rebootDevice(deviceMac, siteId, customHeaders) {
|
|
202
|
+
return await this.actionOps.rebootDevice(deviceMac, siteId, customHeaders);
|
|
203
|
+
}
|
|
204
|
+
async blockClient(clientMac, siteId, customHeaders) {
|
|
205
|
+
return await this.actionOps.blockClient(clientMac, siteId, customHeaders);
|
|
206
|
+
}
|
|
207
|
+
async unblockClient(clientMac, siteId, customHeaders) {
|
|
208
|
+
return await this.actionOps.unblockClient(clientMac, siteId, customHeaders);
|
|
209
|
+
}
|
|
210
|
+
async reconnectClient(clientMac, siteId, customHeaders) {
|
|
211
|
+
return await this.actionOps.reconnectClient(clientMac, siteId, customHeaders);
|
|
212
|
+
}
|
|
213
|
+
async setDeviceLed(deviceMac, ledSetting, siteId, customHeaders) {
|
|
214
|
+
return await this.actionOps.setDeviceLed(deviceMac, ledSetting, siteId, customHeaders);
|
|
215
|
+
}
|
|
216
|
+
async getGridAutoCheckUpgrade(page, pageSize, customHeaders) {
|
|
217
|
+
return await this.deviceOps.getGridAutoCheckUpgrade(page, pageSize, customHeaders);
|
|
218
|
+
}
|
|
219
|
+
async listSwitchNetworks(switchMac, page, pageSize, siteId, customHeaders) {
|
|
220
|
+
return await this.deviceOps.listSwitchNetworks(switchMac, page, pageSize, siteId, customHeaders);
|
|
221
|
+
}
|
|
222
|
+
async getSwitchGeneralConfig(switchMac, siteId, customHeaders) {
|
|
223
|
+
return await this.deviceOps.getSwitchGeneralConfig(switchMac, siteId, customHeaders);
|
|
224
|
+
}
|
|
225
|
+
async getCableTestLogs(switchMac, siteId, customHeaders) {
|
|
226
|
+
return await this.deviceOps.getCableTestLogs(switchMac, siteId, customHeaders);
|
|
227
|
+
}
|
|
228
|
+
async getCableTestFullResults(switchMac, siteId, customHeaders) {
|
|
229
|
+
return await this.deviceOps.getCableTestFullResults(switchMac, siteId, customHeaders);
|
|
230
|
+
}
|
|
231
|
+
async getOswStackLagList(stackId, siteId, customHeaders) {
|
|
232
|
+
return await this.deviceOps.getOswStackLagList(stackId, siteId, customHeaders);
|
|
233
|
+
}
|
|
234
|
+
async getStackNetworkList(stackId, page, pageSize, siteId, customHeaders) {
|
|
235
|
+
return await this.deviceOps.getStackNetworkList(stackId, page, pageSize, siteId, customHeaders);
|
|
236
|
+
}
|
|
237
|
+
async getApUplinkConfig(apMac, siteId, customHeaders) {
|
|
238
|
+
return await this.deviceOps.getApUplinkConfig(apMac, siteId, customHeaders);
|
|
239
|
+
}
|
|
240
|
+
async getRadiosConfig(apMac, siteId, customHeaders) {
|
|
241
|
+
return await this.deviceOps.getRadiosConfig(apMac, siteId, customHeaders);
|
|
242
|
+
}
|
|
243
|
+
async getApVlanConfig(apMac, siteId, customHeaders) {
|
|
244
|
+
return await this.deviceOps.getApVlanConfig(apMac, siteId, customHeaders);
|
|
245
|
+
}
|
|
246
|
+
async getMeshStatistics(apMac, siteId, customHeaders) {
|
|
247
|
+
return await this.deviceOps.getMeshStatistics(apMac, siteId, customHeaders);
|
|
248
|
+
}
|
|
249
|
+
async getRFScanResult(apMac, siteId, customHeaders) {
|
|
250
|
+
return await this.deviceOps.getRFScanResult(apMac, siteId, customHeaders);
|
|
251
|
+
}
|
|
252
|
+
async getSpeedTestResults(apMac, siteId, customHeaders) {
|
|
253
|
+
return await this.deviceOps.getSpeedTestResults(apMac, siteId, customHeaders);
|
|
254
|
+
}
|
|
255
|
+
async getApSnmpConfig(apMac, siteId, customHeaders) {
|
|
256
|
+
return await this.deviceOps.getApSnmpConfig(apMac, siteId, customHeaders);
|
|
257
|
+
}
|
|
258
|
+
async getApLldpConfig(apMac, siteId, customHeaders) {
|
|
259
|
+
return await this.deviceOps.getApLldpConfig(apMac, siteId, customHeaders);
|
|
260
|
+
}
|
|
261
|
+
async getApGeneralConfig(apMac, siteId, customHeaders) {
|
|
262
|
+
return await this.deviceOps.getApGeneralConfig(apMac, siteId, customHeaders);
|
|
263
|
+
}
|
|
264
|
+
async setApGeneralConfig(apMac, payload, siteId, customHeaders) {
|
|
265
|
+
return await this.deviceOps.setApGeneralConfig(apMac, payload, siteId, customHeaders);
|
|
266
|
+
}
|
|
267
|
+
async getUplinkWiredDetail(apMac, siteId, customHeaders) {
|
|
268
|
+
return await this.deviceOps.getUplinkWiredDetail(apMac, siteId, customHeaders);
|
|
269
|
+
}
|
|
270
|
+
async getDownlinkWiredDevices(apMac, siteId, customHeaders) {
|
|
271
|
+
return await this.deviceOps.getDownlinkWiredDevices(apMac, siteId, customHeaders);
|
|
272
|
+
}
|
|
273
|
+
// Device Management — Phase 2 Read Tools (issue #73)
|
|
274
|
+
// devices-general
|
|
275
|
+
async getFirmwareUpgradePlan(page, pageSize, customHeaders) {
|
|
276
|
+
return await this.deviceOps.getFirmwareUpgradePlan(page, pageSize, customHeaders);
|
|
277
|
+
}
|
|
278
|
+
async getUpgradeLogs(page, pageSize, customHeaders) {
|
|
279
|
+
return await this.deviceOps.getUpgradeLogs(page, pageSize, customHeaders);
|
|
280
|
+
}
|
|
281
|
+
async getDeviceTagList(siteId, customHeaders) {
|
|
282
|
+
return await this.deviceOps.getDeviceTagList(siteId, customHeaders);
|
|
283
|
+
}
|
|
284
|
+
// devices-ap
|
|
285
|
+
async getApQosConfig(apMac, siteId, customHeaders) {
|
|
286
|
+
return await this.deviceOps.getApQosConfig(apMac, siteId, customHeaders);
|
|
287
|
+
}
|
|
288
|
+
async setApQosConfig(apMac, payload, siteId, customHeaders) {
|
|
289
|
+
return await this.deviceOps.setApQosConfig(apMac, payload, siteId, customHeaders);
|
|
290
|
+
}
|
|
291
|
+
async getApIpv6Config(apMac, siteId, customHeaders) {
|
|
292
|
+
return await this.deviceOps.getApIpv6Config(apMac, siteId, customHeaders);
|
|
293
|
+
}
|
|
294
|
+
async setApIpv6Config(apMac, payload, siteId, customHeaders) {
|
|
295
|
+
return await this.deviceOps.setApIpv6Config(apMac, payload, siteId, customHeaders);
|
|
296
|
+
}
|
|
297
|
+
// Device operations — Phase 2 additional
|
|
298
|
+
async getSitesGatewaysGeneralConfig(gatewayMac, siteId, customHeaders) {
|
|
299
|
+
return await this.deviceOps.getSitesGatewaysGeneralConfig(gatewayMac, siteId, customHeaders);
|
|
300
|
+
}
|
|
301
|
+
async setSitesGatewaysGeneralConfig(gatewayMac, payload, siteId, customHeaders) {
|
|
302
|
+
return await this.deviceOps.setSitesGatewaysGeneralConfig(gatewayMac, payload, siteId, customHeaders);
|
|
303
|
+
}
|
|
304
|
+
async setSitesGatewaysConfigGeneral(gatewayMac, payload, siteId, customHeaders) {
|
|
305
|
+
return await this.deviceOps.setSitesGatewaysConfigGeneral(gatewayMac, payload, siteId, customHeaders);
|
|
306
|
+
}
|
|
307
|
+
async setSitesGatewaysConfigServices(gatewayMac, payload, siteId, customHeaders) {
|
|
308
|
+
return await this.deviceOps.setSitesGatewaysConfigServices(gatewayMac, payload, siteId, customHeaders);
|
|
309
|
+
}
|
|
310
|
+
async setSitesGatewaysConfigAdvanced(gatewayMac, payload, siteId, customHeaders) {
|
|
311
|
+
return await this.deviceOps.setSitesGatewaysConfigAdvanced(gatewayMac, payload, siteId, customHeaders);
|
|
312
|
+
}
|
|
313
|
+
async setSitesGatewaysConfigRadios(gatewayMac, payload, siteId, customHeaders) {
|
|
314
|
+
return await this.deviceOps.setSitesGatewaysConfigRadios(gatewayMac, payload, siteId, customHeaders);
|
|
315
|
+
}
|
|
316
|
+
async setSitesGatewaysConfigWlans(gatewayMac, payload, siteId, customHeaders) {
|
|
317
|
+
return await this.deviceOps.setSitesGatewaysConfigWlans(gatewayMac, payload, siteId, customHeaders);
|
|
318
|
+
}
|
|
319
|
+
async setSitesGatewaysPortConfig(gatewayMac, portName, payload, siteId, customHeaders) {
|
|
320
|
+
return await this.deviceOps.setSitesGatewaysPortConfig(gatewayMac, portName, payload, siteId, customHeaders);
|
|
321
|
+
}
|
|
322
|
+
async setSitesGatewaysMultiPortsConfig(gatewayMac, payload, siteId, customHeaders) {
|
|
323
|
+
return await this.deviceOps.setSitesGatewaysMultiPortsConfig(gatewayMac, payload, siteId, customHeaders);
|
|
324
|
+
}
|
|
325
|
+
async getSitesGatewaysPin(gatewayMac, siteId, customHeaders) {
|
|
326
|
+
return await this.deviceOps.getSitesGatewaysPin(gatewayMac, siteId, customHeaders);
|
|
327
|
+
}
|
|
328
|
+
async getSitesGatewaysSimCardUsed(gatewayMac, siteId, customHeaders) {
|
|
329
|
+
return await this.deviceOps.getSitesGatewaysSimCardUsed(gatewayMac, siteId, customHeaders);
|
|
330
|
+
}
|
|
331
|
+
async getSitesHealthGatewaysWansDetails(gatewayMac, siteId, customHeaders) {
|
|
332
|
+
return await this.deviceOps.getSitesHealthGatewaysWansDetails(gatewayMac, siteId, customHeaders);
|
|
333
|
+
}
|
|
334
|
+
async getSitesApsIpSetting(apMac, siteId, customHeaders) {
|
|
335
|
+
return await this.deviceOps.getSitesApsIpSetting(apMac, siteId, customHeaders);
|
|
336
|
+
}
|
|
337
|
+
async setSitesApsIpSetting(apMac, payload, siteId, customHeaders) {
|
|
338
|
+
return await this.deviceOps.setSitesApsIpSetting(apMac, payload, siteId, customHeaders);
|
|
339
|
+
}
|
|
340
|
+
async getSitesApsChannelLimit(apMac, siteId, customHeaders) {
|
|
341
|
+
return await this.deviceOps.getSitesApsChannelLimit(apMac, siteId, customHeaders);
|
|
342
|
+
}
|
|
343
|
+
async getSitesApsAvailableChannel(apMac, siteId, customHeaders) {
|
|
344
|
+
return await this.deviceOps.getSitesApsAvailableChannel(apMac, siteId, customHeaders);
|
|
345
|
+
}
|
|
346
|
+
async setApChannelConfig(apMac, payload, siteId, customHeaders) {
|
|
347
|
+
return await this.deviceOps.setApChannelConfig(apMac, payload, siteId, customHeaders);
|
|
348
|
+
}
|
|
349
|
+
async getAfcConfig(apMac, siteId, customHeaders) {
|
|
350
|
+
return await this.deviceOps.getAfcConfig(apMac, siteId, customHeaders);
|
|
351
|
+
}
|
|
352
|
+
async setAfcConfig(apMac, payload, siteId, customHeaders) {
|
|
353
|
+
return await this.deviceOps.setAfcConfig(apMac, payload, siteId, customHeaders);
|
|
354
|
+
}
|
|
355
|
+
async getSitesApsLoadBalance(apMac, siteId, customHeaders) {
|
|
356
|
+
return await this.deviceOps.getSitesApsLoadBalance(apMac, siteId, customHeaders);
|
|
357
|
+
}
|
|
358
|
+
async setSitesApsLoadBalance(apMac, payload, siteId, customHeaders) {
|
|
359
|
+
return await this.deviceOps.setSitesApsLoadBalance(apMac, payload, siteId, customHeaders);
|
|
360
|
+
}
|
|
361
|
+
async getSitesApsOfdma(apMac, siteId, customHeaders) {
|
|
362
|
+
return await this.deviceOps.getSitesApsOfdma(apMac, siteId, customHeaders);
|
|
363
|
+
}
|
|
364
|
+
async setSitesApsOfdma(apMac, payload, siteId, customHeaders) {
|
|
365
|
+
return await this.deviceOps.setSitesApsOfdma(apMac, payload, siteId, customHeaders);
|
|
366
|
+
}
|
|
367
|
+
async getSitesApsPowerSaving(apMac, siteId, customHeaders) {
|
|
368
|
+
return await this.deviceOps.getSitesApsPowerSaving(apMac, siteId, customHeaders);
|
|
369
|
+
}
|
|
370
|
+
async setSitesApsPowerSaving(apMac, payload, siteId, customHeaders) {
|
|
371
|
+
return await this.deviceOps.setSitesApsPowerSaving(apMac, payload, siteId, customHeaders);
|
|
372
|
+
}
|
|
373
|
+
async getSitesApsTrunkSetting(apMac, siteId, customHeaders) {
|
|
374
|
+
return await this.deviceOps.getSitesApsTrunkSetting(apMac, siteId, customHeaders);
|
|
375
|
+
}
|
|
376
|
+
async setSitesApsTrunkSetting(apMac, payload, siteId, customHeaders) {
|
|
377
|
+
return await this.deviceOps.setSitesApsTrunkSetting(apMac, payload, siteId, customHeaders);
|
|
378
|
+
}
|
|
379
|
+
async setSitesApsChannelLimit(apMac, payload, siteId, customHeaders) {
|
|
380
|
+
return await this.deviceOps.setSitesApsChannelLimit(apMac, payload, siteId, customHeaders);
|
|
381
|
+
}
|
|
382
|
+
async getSitesApsBridge(apMac, siteId, customHeaders) {
|
|
383
|
+
return await this.deviceOps.getSitesApsBridge(apMac, siteId, customHeaders);
|
|
384
|
+
}
|
|
385
|
+
async setSitesApsBridge(apMac, payload, siteId, customHeaders) {
|
|
386
|
+
return await this.deviceOps.setSitesApsBridge(apMac, payload, siteId, customHeaders);
|
|
387
|
+
}
|
|
388
|
+
async setRadiosConfig(apMac, payload, siteId, customHeaders) {
|
|
389
|
+
return await this.deviceOps.setRadiosConfig(apMac, payload, siteId, customHeaders);
|
|
390
|
+
}
|
|
391
|
+
async listSitesApsPorts(apMac, siteId, customHeaders) {
|
|
392
|
+
return await this.deviceOps.listSitesApsPorts(apMac, siteId, customHeaders);
|
|
393
|
+
}
|
|
394
|
+
async setSitesApsPortConfig(apMac, payload, siteId, customHeaders) {
|
|
395
|
+
return await this.deviceOps.setSitesApsPortConfig(apMac, payload, siteId, customHeaders);
|
|
396
|
+
}
|
|
397
|
+
async setApServiceConfig(apMac, payload, siteId, customHeaders) {
|
|
398
|
+
return await this.deviceOps.setApServiceConfig(apMac, payload, siteId, customHeaders);
|
|
399
|
+
}
|
|
400
|
+
async setApWlanGroup(apMac, payload, siteId, customHeaders) {
|
|
401
|
+
return await this.deviceOps.setApWlanGroup(apMac, payload, siteId, customHeaders);
|
|
402
|
+
}
|
|
403
|
+
async getAntennaGainConfig(apMac, siteId, customHeaders) {
|
|
404
|
+
return await this.deviceOps.getAntennaGainConfig(apMac, siteId, customHeaders);
|
|
405
|
+
}
|
|
406
|
+
async setAntennaGainConfig(apMac, payload, siteId, customHeaders) {
|
|
407
|
+
return await this.deviceOps.setAntennaGainConfig(apMac, payload, siteId, customHeaders);
|
|
408
|
+
}
|
|
409
|
+
async getSitesSwitchesEs(switchMac, siteId, customHeaders) {
|
|
410
|
+
return await this.deviceOps.getSitesSwitchesEs(switchMac, siteId, customHeaders);
|
|
411
|
+
}
|
|
412
|
+
async getSitesSwitchesEsGeneralConfig(switchMac, siteId, customHeaders) {
|
|
413
|
+
return await this.deviceOps.getSitesSwitchesEsGeneralConfig(switchMac, siteId, customHeaders);
|
|
414
|
+
}
|
|
415
|
+
async listSitesCableTestSwitchesPorts(switchMac, siteId, customHeaders) {
|
|
416
|
+
return await this.deviceOps.listSitesCableTestSwitchesPorts(switchMac, siteId, customHeaders);
|
|
417
|
+
}
|
|
418
|
+
async listSitesCableTestSwitchesIncrementResults(switchMac, siteId, customHeaders) {
|
|
419
|
+
return await this.deviceOps.listSitesCableTestSwitchesIncrementResults(switchMac, siteId, customHeaders);
|
|
420
|
+
}
|
|
421
|
+
async getUpgradeOverviewCritical(customHeaders) {
|
|
422
|
+
return await this.deviceOps.getUpgradeOverviewCritical(customHeaders);
|
|
423
|
+
}
|
|
424
|
+
async getUpgradeOverviewTryBeta(customHeaders) {
|
|
425
|
+
return await this.deviceOps.getUpgradeOverviewTryBeta(customHeaders);
|
|
426
|
+
}
|
|
427
|
+
async listUpgradeFirmwares(page, pageSize, customHeaders) {
|
|
428
|
+
return await this.deviceOps.listUpgradeFirmwares(page, pageSize, customHeaders);
|
|
429
|
+
}
|
|
430
|
+
async listUpgradeOverviewFirmwares(page, pageSize, customHeaders) {
|
|
431
|
+
return await this.deviceOps.listUpgradeOverviewFirmwares(page, pageSize, customHeaders);
|
|
432
|
+
}
|
|
433
|
+
async listSitesStacks(siteId, page, pageSize, customHeaders) {
|
|
434
|
+
return await this.deviceOps.listSitesStacks(siteId, page, pageSize, customHeaders);
|
|
435
|
+
}
|
|
436
|
+
async getSitesDeviceWhiteList(siteId, page, pageSize, customHeaders) {
|
|
437
|
+
return await this.deviceOps.getSitesDeviceWhiteList(siteId, page, pageSize, customHeaders);
|
|
438
|
+
}
|
|
439
|
+
// Security operations (extended)
|
|
440
|
+
async getTopThreats(customHeaders) {
|
|
441
|
+
return await this.securityOps.getTopThreats(customHeaders);
|
|
442
|
+
}
|
|
443
|
+
async getThreatSeverity(startTime, endTime, customHeaders) {
|
|
444
|
+
return await this.securityOps.getThreatSeverity(startTime, endTime, customHeaders);
|
|
445
|
+
}
|
|
446
|
+
// Global Controller settings (issue #41)
|
|
447
|
+
async getControllerStatus(customHeaders) {
|
|
448
|
+
return await this.securityOps.getControllerStatus(customHeaders);
|
|
449
|
+
}
|
|
450
|
+
async getGeneralSettings(customHeaders) {
|
|
451
|
+
return await this.securityOps.getGeneralSettings(customHeaders);
|
|
452
|
+
}
|
|
453
|
+
async getRetention(customHeaders) {
|
|
454
|
+
return await this.securityOps.getRetention(customHeaders);
|
|
455
|
+
}
|
|
456
|
+
async getClientActiveTimeout(customHeaders) {
|
|
457
|
+
return await this.securityOps.getClientActiveTimeout(customHeaders);
|
|
458
|
+
}
|
|
459
|
+
async getRemoteLogging(customHeaders) {
|
|
460
|
+
return await this.securityOps.getRemoteLogging(customHeaders);
|
|
461
|
+
}
|
|
462
|
+
async getRadiusServer(customHeaders) {
|
|
463
|
+
return await this.securityOps.getRadiusServer(customHeaders);
|
|
464
|
+
}
|
|
465
|
+
async getLogging(customHeaders) {
|
|
466
|
+
return await this.securityOps.getLogging(customHeaders);
|
|
467
|
+
}
|
|
468
|
+
async getUiInterface(customHeaders) {
|
|
469
|
+
return await this.securityOps.getUiInterface(customHeaders);
|
|
470
|
+
}
|
|
471
|
+
async getDeviceAccessManagement(customHeaders) {
|
|
472
|
+
return await this.securityOps.getDeviceAccessManagement(customHeaders);
|
|
473
|
+
}
|
|
474
|
+
async getWebhookForGlobal(customHeaders) {
|
|
475
|
+
return await this.securityOps.getWebhookForGlobal(customHeaders);
|
|
476
|
+
}
|
|
477
|
+
async getWebhookLogsForGlobal(page, pageSize, webhookId, timeStart, timeEnd, customHeaders) {
|
|
478
|
+
return await this.securityOps.getWebhookLogsForGlobal(page, pageSize, webhookId, timeStart, timeEnd, customHeaders);
|
|
479
|
+
}
|
|
480
|
+
async getMailServerStatus(customHeaders) {
|
|
481
|
+
return await this.securityOps.getMailServerStatus(customHeaders);
|
|
482
|
+
}
|
|
483
|
+
// Network operations (extended)
|
|
484
|
+
async getVpnSettings(siteId, customHeaders) {
|
|
485
|
+
return await this.networkOps.getVpnSettings(siteId, customHeaders);
|
|
486
|
+
}
|
|
487
|
+
async listSiteToSiteVpns(siteId, customHeaders) {
|
|
488
|
+
return await this.networkOps.listSiteToSiteVpns(siteId, customHeaders);
|
|
489
|
+
}
|
|
490
|
+
async listClientToSiteVpnServers(siteId, customHeaders) {
|
|
491
|
+
return await this.networkOps.listClientToSiteVpnServers(siteId, customHeaders);
|
|
492
|
+
}
|
|
493
|
+
// VPN tools (issue #39)
|
|
494
|
+
async getSiteToSiteVpnInfo(vpnId, siteId, customHeaders) {
|
|
495
|
+
return await this.networkOps.getSiteToSiteVpnInfo(vpnId, siteId, customHeaders);
|
|
496
|
+
}
|
|
497
|
+
async listWireguard(page, pageSize, searchKey, siteId, customHeaders) {
|
|
498
|
+
return await this.networkOps.listWireguard(page, pageSize, searchKey, siteId, customHeaders);
|
|
499
|
+
}
|
|
500
|
+
async listWireguardPeers(page, pageSize, siteId, customHeaders) {
|
|
501
|
+
return await this.networkOps.listWireguardPeers(page, pageSize, siteId, customHeaders);
|
|
502
|
+
}
|
|
503
|
+
async getWireguardSummary(siteId, customHeaders) {
|
|
504
|
+
return await this.networkOps.getWireguardSummary(siteId, customHeaders);
|
|
505
|
+
}
|
|
506
|
+
async listClientToSiteVpnClients(siteId, customHeaders) {
|
|
507
|
+
return await this.networkOps.listClientToSiteVpnClients(siteId, customHeaders);
|
|
508
|
+
}
|
|
509
|
+
async getClientToSiteVpnServerInfo(vpnId, siteId, customHeaders) {
|
|
510
|
+
return await this.networkOps.getClientToSiteVpnServerInfo(vpnId, siteId, customHeaders);
|
|
511
|
+
}
|
|
512
|
+
async getSslVpnServerSetting(siteId, customHeaders) {
|
|
513
|
+
return await this.networkOps.getSslVpnServerSetting(siteId, customHeaders);
|
|
514
|
+
}
|
|
515
|
+
async getGridIpsecFailover(page, pageSize, siteId, customHeaders) {
|
|
516
|
+
return await this.networkOps.getGridIpsecFailover(page, pageSize, siteId, customHeaders);
|
|
517
|
+
}
|
|
518
|
+
// Profiles & Policies tools (issue #40)
|
|
519
|
+
async listServiceType(page, pageSize, siteId, customHeaders) {
|
|
520
|
+
return await this.networkOps.listServiceType(page, pageSize, siteId, customHeaders);
|
|
521
|
+
}
|
|
522
|
+
async getServiceTypeSummary(siteId, customHeaders) {
|
|
523
|
+
return await this.networkOps.getServiceTypeSummary(siteId, customHeaders);
|
|
524
|
+
}
|
|
525
|
+
async getGroupProfilesByType(groupType, siteId, customHeaders) {
|
|
526
|
+
return await this.networkOps.getGroupProfilesByType(groupType, siteId, customHeaders);
|
|
527
|
+
}
|
|
528
|
+
async getLdapProfileList(siteId, customHeaders) {
|
|
529
|
+
return await this.networkOps.getLdapProfileList(siteId, customHeaders);
|
|
530
|
+
}
|
|
531
|
+
async getRadiusUserList(page, pageSize, sortUsername, siteId, customHeaders) {
|
|
532
|
+
return await this.networkOps.getRadiusUserList(page, pageSize, sortUsername, siteId, customHeaders);
|
|
533
|
+
}
|
|
534
|
+
async getPPSKProfiles(type, siteId, customHeaders) {
|
|
535
|
+
return await this.networkOps.getPPSKProfiles(type, siteId, customHeaders);
|
|
536
|
+
}
|
|
537
|
+
async listMdnsProfile(siteId, customHeaders) {
|
|
538
|
+
return await this.networkOps.listMdnsProfile(siteId, customHeaders);
|
|
539
|
+
}
|
|
540
|
+
// --- network-wan (#74) ---
|
|
541
|
+
async getIspBandScan(portUuid, siteId, customHeaders) {
|
|
542
|
+
return await this.networkOps.getIspBandScan(portUuid, siteId, customHeaders);
|
|
543
|
+
}
|
|
544
|
+
async getDisableNatList(page = 1, pageSize = 10, siteId, customHeaders) {
|
|
545
|
+
return await this.networkOps.getDisableNatList(page, pageSize, siteId, customHeaders);
|
|
546
|
+
}
|
|
547
|
+
async getLtePortConfig(siteId, customHeaders) {
|
|
548
|
+
return await this.networkOps.getLtePortConfig(siteId, customHeaders);
|
|
549
|
+
}
|
|
550
|
+
async getWanPortDetail(siteId, customHeaders) {
|
|
551
|
+
return await this.networkOps.getWanPortDetail(siteId, customHeaders);
|
|
552
|
+
}
|
|
553
|
+
async getWanIspProfile(portUuid, siteId, customHeaders) {
|
|
554
|
+
return await this.networkOps.getWanIspProfile(portUuid, siteId, customHeaders);
|
|
555
|
+
}
|
|
556
|
+
async getWanQosConfig(siteId, customHeaders) {
|
|
557
|
+
return await this.networkOps.getWanQosConfig(siteId, customHeaders);
|
|
558
|
+
}
|
|
559
|
+
async getWanHealthDetail(gatewayMac, siteId, customHeaders) {
|
|
560
|
+
return await this.getSitesHealthGatewaysWansDetails(gatewayMac, siteId, customHeaders);
|
|
561
|
+
}
|
|
562
|
+
async getWanUsageStats(siteId, customHeaders) {
|
|
563
|
+
return await this.networkOps.getWanUsageStats(siteId, customHeaders);
|
|
564
|
+
}
|
|
565
|
+
async getWanNatConfig(page = 1, pageSize = 10, siteId, customHeaders) {
|
|
566
|
+
return await this.networkOps.getWanNatConfig(page, pageSize, siteId, customHeaders);
|
|
567
|
+
}
|
|
568
|
+
// --- network-lan (#74) ---
|
|
569
|
+
async getSwitchVlanInterface(switchMac, siteId, customHeaders) {
|
|
570
|
+
return await this.networkOps.getSwitchVlanInterface(switchMac, siteId, customHeaders);
|
|
571
|
+
}
|
|
572
|
+
async getLanDnsRules(page = 1, pageSize = 10, siteId, customHeaders) {
|
|
573
|
+
return await this.networkOps.getLanDnsRules(page, pageSize, siteId, customHeaders);
|
|
574
|
+
}
|
|
575
|
+
async getLanProfileEsUsage(profileId, siteId, customHeaders) {
|
|
576
|
+
return await this.networkOps.getLanProfileEsUsage(profileId, siteId, customHeaders);
|
|
577
|
+
}
|
|
578
|
+
async getLanClientCount(siteId, customHeaders) {
|
|
579
|
+
return await this.networkOps.getLanClientCount(siteId, customHeaders);
|
|
580
|
+
}
|
|
581
|
+
// --- network-routing (#74) ---
|
|
582
|
+
async getOspfProcess(siteId, customHeaders) {
|
|
583
|
+
return await this.networkOps.getOspfProcess(siteId, customHeaders);
|
|
584
|
+
}
|
|
585
|
+
async getOspfInterface(siteId, customHeaders) {
|
|
586
|
+
return await this.networkOps.getOspfInterface(siteId, customHeaders);
|
|
587
|
+
}
|
|
588
|
+
async getVrrpConfig(siteId, customHeaders) {
|
|
589
|
+
return await this.networkOps.getVrrpConfig(siteId, customHeaders);
|
|
590
|
+
}
|
|
591
|
+
async getOspfNeighbors(siteId, customHeaders) {
|
|
592
|
+
return await this.networkOps.getOspfNeighbors(siteId, customHeaders);
|
|
593
|
+
}
|
|
594
|
+
// --- network-services (#74) ---
|
|
595
|
+
async getDnsCacheDataList(page = 1, pageSize = 10, siteId, customHeaders) {
|
|
596
|
+
return await this.networkOps.getDnsCacheDataList(page, pageSize, siteId, customHeaders);
|
|
597
|
+
}
|
|
598
|
+
async getIptvSetting(siteId, customHeaders) {
|
|
599
|
+
return await this.networkOps.getIptvSetting(siteId, customHeaders);
|
|
600
|
+
}
|
|
601
|
+
async getNtpSetting(siteId, customHeaders) {
|
|
602
|
+
return await this.networkOps.getNtpSetting(siteId, customHeaders);
|
|
603
|
+
}
|
|
604
|
+
async listPortForwardingRules(siteId, customHeaders) {
|
|
605
|
+
return await this.networkOps.listPortForwardingRules(siteId, customHeaders);
|
|
606
|
+
}
|
|
607
|
+
async getPortForwardingListPage(page, pageSize, siteId, customHeaders) {
|
|
608
|
+
return await this.networkOps.getPortForwardingListPage(page, pageSize, siteId, customHeaders);
|
|
609
|
+
}
|
|
610
|
+
async listOneToOneNatRules(siteId, customHeaders) {
|
|
611
|
+
return await this.networkOps.listOneToOneNatRules(siteId, customHeaders);
|
|
612
|
+
}
|
|
613
|
+
async listOsgAcls(siteId, customHeaders) {
|
|
614
|
+
return await this.networkOps.listOsgAcls(siteId, customHeaders);
|
|
615
|
+
}
|
|
616
|
+
async listEapAcls(siteId, customHeaders) {
|
|
617
|
+
return await this.networkOps.listEapAcls(siteId, customHeaders);
|
|
618
|
+
}
|
|
619
|
+
async listOswAcls(siteId, customHeaders) {
|
|
620
|
+
return await this.networkOps.listOswAcls(siteId, customHeaders);
|
|
621
|
+
}
|
|
622
|
+
async listStaticRoutes(siteId, customHeaders) {
|
|
623
|
+
return await this.networkOps.listStaticRoutes(siteId, customHeaders);
|
|
624
|
+
}
|
|
625
|
+
async listPolicyRoutes(siteId, customHeaders) {
|
|
626
|
+
return await this.networkOps.listPolicyRoutes(siteId, customHeaders);
|
|
627
|
+
}
|
|
628
|
+
async listRadiusProfiles(siteId, customHeaders) {
|
|
629
|
+
return await this.networkOps.listRadiusProfiles(siteId, customHeaders);
|
|
630
|
+
}
|
|
631
|
+
async listGroupProfiles(groupType, siteId, customHeaders) {
|
|
632
|
+
return await this.networkOps.listGroupProfiles(groupType, siteId, customHeaders);
|
|
633
|
+
}
|
|
634
|
+
async getApplicationControlStatus(siteId, customHeaders) {
|
|
635
|
+
return await this.networkOps.getApplicationControlStatus(siteId, customHeaders);
|
|
636
|
+
}
|
|
637
|
+
async getBandwidthControl(siteId, customHeaders) {
|
|
638
|
+
return await this.networkOps.getBandwidthControl(siteId, customHeaders);
|
|
639
|
+
}
|
|
640
|
+
async getSshSetting(siteId, customHeaders) {
|
|
641
|
+
return await this.networkOps.getSshSetting(siteId, customHeaders);
|
|
642
|
+
}
|
|
643
|
+
async getLedSetting(siteId, customHeaders) {
|
|
644
|
+
return await this.networkOps.getLedSetting(siteId, customHeaders);
|
|
645
|
+
}
|
|
646
|
+
async listTimeRangeProfiles(siteId, customHeaders) {
|
|
647
|
+
return await this.networkOps.listTimeRangeProfiles(siteId, customHeaders);
|
|
648
|
+
}
|
|
649
|
+
async listPortSchedules(siteId, customHeaders) {
|
|
650
|
+
return await this.networkOps.listPortSchedules(siteId, customHeaders);
|
|
651
|
+
}
|
|
652
|
+
async listPoeSchedules(siteId, customHeaders) {
|
|
653
|
+
return await this.networkOps.listPoeSchedules(siteId, customHeaders);
|
|
654
|
+
}
|
|
655
|
+
async getGatewayUrlFilters(siteId, customHeaders) {
|
|
656
|
+
return await this.networkOps.getGatewayUrlFilters(siteId, customHeaders);
|
|
657
|
+
}
|
|
658
|
+
async getEapUrlFilters(siteId, customHeaders) {
|
|
659
|
+
return await this.networkOps.getEapUrlFilters(siteId, customHeaders);
|
|
660
|
+
}
|
|
661
|
+
async listAllSsids(siteId, customHeaders) {
|
|
662
|
+
return await this.networkOps.listAllSsids(siteId, customHeaders);
|
|
663
|
+
}
|
|
664
|
+
async getWanLanStatus(siteId, customHeaders) {
|
|
665
|
+
return await this.networkOps.getWanLanStatus(siteId, customHeaders);
|
|
666
|
+
}
|
|
667
|
+
async listBandwidthControlRules(siteId, customHeaders) {
|
|
668
|
+
return await this.networkOps.listBandwidthControlRules(siteId, customHeaders);
|
|
669
|
+
}
|
|
670
|
+
// LAN/Network config tools (issue #38)
|
|
671
|
+
async getLanNetworkListV2(page, pageSize, siteId, customHeaders) {
|
|
672
|
+
return await this.networkOps.getLanNetworkListV2(page, pageSize, siteId, customHeaders);
|
|
673
|
+
}
|
|
674
|
+
async getInterfaceLanNetwork(type, siteId, customHeaders) {
|
|
675
|
+
return await this.networkOps.getInterfaceLanNetwork(type, siteId, customHeaders);
|
|
676
|
+
}
|
|
677
|
+
async getInterfaceLanNetworkV2(type, siteId, customHeaders) {
|
|
678
|
+
return await this.networkOps.getInterfaceLanNetworkV2(type, siteId, customHeaders);
|
|
679
|
+
}
|
|
680
|
+
async getGridPolicyRouting(page, pageSize, siteId, customHeaders) {
|
|
681
|
+
return await this.networkOps.getGridPolicyRouting(page, pageSize, siteId, customHeaders);
|
|
682
|
+
}
|
|
683
|
+
async getGridStaticRouting(page, pageSize, siteId, customHeaders) {
|
|
684
|
+
return await this.networkOps.getGridStaticRouting(page, pageSize, siteId, customHeaders);
|
|
685
|
+
}
|
|
686
|
+
async getStaticRoutingInterfaceList(siteId, customHeaders) {
|
|
687
|
+
return await this.networkOps.getStaticRoutingInterfaceList(siteId, customHeaders);
|
|
688
|
+
}
|
|
689
|
+
async getGridOtoNats(page, pageSize, siteId, customHeaders) {
|
|
690
|
+
return await this.networkOps.getGridOtoNats(page, pageSize, siteId, customHeaders);
|
|
691
|
+
}
|
|
692
|
+
async getAlg(siteId, customHeaders) {
|
|
693
|
+
return await this.networkOps.getAlg(siteId, customHeaders);
|
|
694
|
+
}
|
|
695
|
+
async getUpnpSetting(siteId, customHeaders) {
|
|
696
|
+
return await this.networkOps.getUpnpSetting(siteId, customHeaders);
|
|
697
|
+
}
|
|
698
|
+
async getDdnsGrid(page, pageSize, siteId, customHeaders) {
|
|
699
|
+
return await this.networkOps.getDdnsGrid(page, pageSize, siteId, customHeaders);
|
|
700
|
+
}
|
|
701
|
+
async getDhcpReservationGrid(page, pageSize, siteId, customHeaders) {
|
|
702
|
+
return await this.networkOps.getDhcpReservationGrid(page, pageSize, siteId, customHeaders);
|
|
703
|
+
}
|
|
704
|
+
async createDhcpReservation(payload, siteId, customHeaders) {
|
|
705
|
+
return await this.networkOps.createDhcpReservation(payload, siteId, customHeaders);
|
|
706
|
+
}
|
|
707
|
+
async updateDhcpReservation(mac, payload, siteId, customHeaders) {
|
|
708
|
+
return await this.networkOps.updateDhcpReservation(mac, payload, siteId, customHeaders);
|
|
709
|
+
}
|
|
710
|
+
async deleteDhcpReservation(mac, siteId, customHeaders) {
|
|
711
|
+
return await this.networkOps.deleteDhcpReservation(mac, siteId, customHeaders);
|
|
712
|
+
}
|
|
713
|
+
async createBandwidthCtrlRule(payload, siteId, customHeaders) {
|
|
714
|
+
return await this.networkOps.createBandwidthCtrlRule(payload, siteId, customHeaders);
|
|
715
|
+
}
|
|
716
|
+
async updateBandwidthCtrlRule(ruleId, payload, siteId, customHeaders) {
|
|
717
|
+
return await this.networkOps.updateBandwidthCtrlRule(ruleId, payload, siteId, customHeaders);
|
|
718
|
+
}
|
|
719
|
+
async deleteBandwidthCtrlRule(ruleId, siteId, customHeaders) {
|
|
720
|
+
return await this.networkOps.deleteBandwidthCtrlRule(ruleId, siteId, customHeaders);
|
|
721
|
+
}
|
|
722
|
+
async setAccessControl(payload, siteId, customHeaders) {
|
|
723
|
+
return await this.networkOps.setAccessControl(payload, siteId, customHeaders);
|
|
724
|
+
}
|
|
725
|
+
async getGridIpMacBinding(page, pageSize, siteId, customHeaders) {
|
|
726
|
+
return await this.networkOps.getGridIpMacBinding(page, pageSize, siteId, customHeaders);
|
|
727
|
+
}
|
|
728
|
+
async getIpMacBindingGeneralSetting(siteId, customHeaders) {
|
|
729
|
+
return await this.networkOps.getIpMacBindingGeneralSetting(siteId, customHeaders);
|
|
730
|
+
}
|
|
731
|
+
async getSnmpSetting(siteId, customHeaders) {
|
|
732
|
+
return await this.networkOps.getSnmpSetting(siteId, customHeaders);
|
|
733
|
+
}
|
|
734
|
+
async getLldpSetting(siteId, customHeaders) {
|
|
735
|
+
return await this.networkOps.getLldpSetting(siteId, customHeaders);
|
|
736
|
+
}
|
|
737
|
+
async getRemoteLoggingSetting(siteId, customHeaders) {
|
|
738
|
+
return await this.networkOps.getRemoteLoggingSetting(siteId, customHeaders);
|
|
739
|
+
}
|
|
740
|
+
async getSessionLimit(siteId, customHeaders) {
|
|
741
|
+
return await this.networkOps.getSessionLimit(siteId, customHeaders);
|
|
742
|
+
}
|
|
743
|
+
async getGridSessionLimitRule(page, pageSize, siteId, customHeaders) {
|
|
744
|
+
return await this.networkOps.getGridSessionLimitRule(page, pageSize, siteId, customHeaders);
|
|
745
|
+
}
|
|
746
|
+
async getGridBandwidthCtrlRule(page, pageSize, siteId, customHeaders) {
|
|
747
|
+
return await this.networkOps.getGridBandwidthCtrlRule(page, pageSize, siteId, customHeaders);
|
|
748
|
+
}
|
|
749
|
+
async getAccessControl(siteId, customHeaders) {
|
|
750
|
+
return await this.networkOps.getAccessControl(siteId, customHeaders);
|
|
751
|
+
}
|
|
752
|
+
async getDnsCacheSetting(siteId, customHeaders) {
|
|
753
|
+
return await this.networkOps.getDnsCacheSetting(siteId, customHeaders);
|
|
754
|
+
}
|
|
755
|
+
async getDnsProxy(siteId, customHeaders) {
|
|
756
|
+
return await this.networkOps.getDnsProxy(siteId, customHeaders);
|
|
757
|
+
}
|
|
758
|
+
async getIgmp(siteId, customHeaders) {
|
|
759
|
+
return await this.networkOps.getIgmp(siteId, customHeaders);
|
|
760
|
+
}
|
|
761
|
+
async getInternetLoadBalance(siteId, customHeaders) {
|
|
762
|
+
return await this.networkOps.getInternetLoadBalance(siteId, customHeaders);
|
|
763
|
+
}
|
|
764
|
+
async getWanPortsConfig(siteId, customHeaders) {
|
|
765
|
+
return await this.networkOps.getWanPortsConfig(siteId, customHeaders);
|
|
766
|
+
}
|
|
767
|
+
async getInternetBasicPortInfo(siteId, customHeaders) {
|
|
768
|
+
return await this.networkOps.getInternetBasicPortInfo(siteId, customHeaders);
|
|
769
|
+
}
|
|
770
|
+
async getInternet(siteId, customHeaders) {
|
|
771
|
+
return await this.networkOps.getInternet(siteId, customHeaders);
|
|
772
|
+
}
|
|
773
|
+
async getGridVirtualWan(page, pageSize, siteId, customHeaders) {
|
|
774
|
+
return await this.networkOps.getGridVirtualWan(page, pageSize, siteId, customHeaders);
|
|
775
|
+
}
|
|
776
|
+
// Wireless/SSID tools (issue #35)
|
|
777
|
+
async getSsidsBySite(type, siteId, customHeaders) {
|
|
778
|
+
return await this.networkOps.getSsidsBySite(type, siteId, customHeaders);
|
|
779
|
+
}
|
|
780
|
+
async getRadioFrequencyPlanningConfig(siteId, customHeaders) {
|
|
781
|
+
return await this.networkOps.getRadioFrequencyPlanningConfig(siteId, customHeaders);
|
|
782
|
+
}
|
|
783
|
+
async getRadioFrequencyPlanningResult(siteId, customHeaders) {
|
|
784
|
+
return await this.networkOps.getRadioFrequencyPlanningResult(siteId, customHeaders);
|
|
785
|
+
}
|
|
786
|
+
async getBandSteeringSetting(siteId, customHeaders) {
|
|
787
|
+
return await this.networkOps.getBandSteeringSetting(siteId, customHeaders);
|
|
788
|
+
}
|
|
789
|
+
async getBeaconControlSetting(siteId, customHeaders) {
|
|
790
|
+
return await this.networkOps.getBeaconControlSetting(siteId, customHeaders);
|
|
791
|
+
}
|
|
792
|
+
async getChannelLimitSetting(siteId, customHeaders) {
|
|
793
|
+
return await this.networkOps.getChannelLimitSetting(siteId, customHeaders);
|
|
794
|
+
}
|
|
795
|
+
async getMeshSetting(siteId, customHeaders) {
|
|
796
|
+
return await this.networkOps.getMeshSetting(siteId, customHeaders);
|
|
797
|
+
}
|
|
798
|
+
async getRoamingSetting(siteId, customHeaders) {
|
|
799
|
+
return await this.networkOps.getRoamingSetting(siteId, customHeaders);
|
|
800
|
+
}
|
|
801
|
+
async getOuiProfileList(page, pageSize, siteId, customHeaders) {
|
|
802
|
+
return await this.networkOps.getOuiProfileList(page, pageSize, siteId, customHeaders);
|
|
803
|
+
}
|
|
804
|
+
async getMacAuthSetting(siteId, customHeaders) {
|
|
805
|
+
return await this.networkOps.getMacAuthSetting(siteId, customHeaders);
|
|
806
|
+
}
|
|
807
|
+
async getMacAuthSsids(siteId, customHeaders) {
|
|
808
|
+
return await this.networkOps.getMacAuthSsids(siteId, customHeaders);
|
|
809
|
+
}
|
|
810
|
+
async getMacFilteringGeneralSetting(siteId, customHeaders) {
|
|
811
|
+
return await this.networkOps.getMacFilteringGeneralSetting(siteId, customHeaders);
|
|
812
|
+
}
|
|
813
|
+
async getGridAllowMacFiltering(page, pageSize, siteId, customHeaders) {
|
|
814
|
+
return await this.networkOps.getGridAllowMacFiltering(page, pageSize, siteId, customHeaders);
|
|
815
|
+
}
|
|
816
|
+
async getGridDenyMacFiltering(page, pageSize, siteId, customHeaders) {
|
|
817
|
+
return await this.networkOps.getGridDenyMacFiltering(page, pageSize, siteId, customHeaders);
|
|
818
|
+
}
|
|
819
|
+
async getSwitchDot1xSetting(siteId, customHeaders) {
|
|
820
|
+
return await this.networkOps.getSwitchDot1xSetting(siteId, customHeaders);
|
|
821
|
+
}
|
|
822
|
+
async getEapDot1xSetting(siteId, customHeaders) {
|
|
823
|
+
return await this.networkOps.getEapDot1xSetting(siteId, customHeaders);
|
|
824
|
+
}
|
|
825
|
+
// Firewall / ACL / IPS / URL-filter tools (issue #37)
|
|
826
|
+
async getAclConfigTypeSetting(siteId, customHeaders) {
|
|
827
|
+
return await this.networkOps.getAclConfigTypeSetting(siteId, customHeaders);
|
|
828
|
+
}
|
|
829
|
+
async setAclConfigTypeSetting(payload, siteId, customHeaders) {
|
|
830
|
+
return await this.networkOps.setAclConfigTypeSetting(payload, siteId, customHeaders);
|
|
831
|
+
}
|
|
832
|
+
async createOsgAcl(payload, siteId, customHeaders) {
|
|
833
|
+
return await this.networkOps.createOsgAcl(payload, siteId, customHeaders);
|
|
834
|
+
}
|
|
835
|
+
async updateOsgAcl(aclId, payload, siteId, customHeaders) {
|
|
836
|
+
return await this.networkOps.updateOsgAcl(aclId, payload, siteId, customHeaders);
|
|
837
|
+
}
|
|
838
|
+
async createEapAcl(payload, siteId, customHeaders) {
|
|
839
|
+
return await this.networkOps.createEapAcl(payload, siteId, customHeaders);
|
|
840
|
+
}
|
|
841
|
+
async updateEapAcl(aclId, payload, siteId, customHeaders) {
|
|
842
|
+
return await this.networkOps.updateEapAcl(aclId, payload, siteId, customHeaders);
|
|
843
|
+
}
|
|
844
|
+
async deleteAcl(aclId, siteId, customHeaders) {
|
|
845
|
+
return await this.networkOps.deleteAcl(aclId, siteId, customHeaders);
|
|
846
|
+
}
|
|
847
|
+
async getOsgCustomAclList(page, pageSize, siteId, customHeaders) {
|
|
848
|
+
return await this.networkOps.getOsgCustomAclList(page, pageSize, siteId, customHeaders);
|
|
849
|
+
}
|
|
850
|
+
async getOswAclList(page, pageSize, siteId, customHeaders) {
|
|
851
|
+
return await this.networkOps.getOswAclList(page, pageSize, siteId, customHeaders);
|
|
852
|
+
}
|
|
853
|
+
async getIpsConfig(siteId, customHeaders) {
|
|
854
|
+
return await this.networkOps.getIpsConfig(siteId, customHeaders);
|
|
855
|
+
}
|
|
856
|
+
async getGridSignature(page, pageSize, siteId, customHeaders) {
|
|
857
|
+
return await this.networkOps.getGridSignature(page, pageSize, siteId, customHeaders);
|
|
858
|
+
}
|
|
859
|
+
async getGridAllowList(page, pageSize, searchKey, siteId, customHeaders) {
|
|
860
|
+
return await this.networkOps.getGridAllowList(page, pageSize, searchKey, siteId, customHeaders);
|
|
861
|
+
}
|
|
862
|
+
async getGridBlockList(page, pageSize, searchKey, siteId, customHeaders) {
|
|
863
|
+
return await this.networkOps.getGridBlockList(page, pageSize, searchKey, siteId, customHeaders);
|
|
864
|
+
}
|
|
865
|
+
async getAttackDefenseSetting(siteId, customHeaders) {
|
|
866
|
+
return await this.networkOps.getAttackDefenseSetting(siteId, customHeaders);
|
|
867
|
+
}
|
|
868
|
+
async getUrlFilterGeneral(siteId, customHeaders) {
|
|
869
|
+
return await this.networkOps.getUrlFilterGeneral(siteId, customHeaders);
|
|
870
|
+
}
|
|
871
|
+
async getGridGatewayRule(page, pageSize, siteId, customHeaders) {
|
|
872
|
+
return await this.networkOps.getGridGatewayRule(page, pageSize, siteId, customHeaders);
|
|
873
|
+
}
|
|
874
|
+
async getGridEapRule(page, pageSize, siteId, customHeaders) {
|
|
875
|
+
return await this.networkOps.getGridEapRule(page, pageSize, siteId, customHeaders);
|
|
876
|
+
}
|
|
877
|
+
// Monitor / dashboard operations
|
|
878
|
+
async getDashboardWifiSummary(siteId, customHeaders) {
|
|
879
|
+
return await this.monitorOps.getDashboardWifiSummary(siteId, customHeaders);
|
|
880
|
+
}
|
|
881
|
+
async getDashboardSwitchSummary(siteId, customHeaders) {
|
|
882
|
+
return await this.monitorOps.getDashboardSwitchSummary(siteId, customHeaders);
|
|
883
|
+
}
|
|
884
|
+
async getTrafficDistribution(siteId, start, end, customHeaders) {
|
|
885
|
+
return await this.monitorOps.getTrafficDistribution(siteId, start, end, customHeaders);
|
|
886
|
+
}
|
|
887
|
+
async getRetryAndDroppedRate(siteId, start, end, customHeaders) {
|
|
888
|
+
return await this.monitorOps.getRetryAndDroppedRate(siteId, start, end, customHeaders);
|
|
889
|
+
}
|
|
890
|
+
async getDashboardTrafficActivities(siteId, customHeaders) {
|
|
891
|
+
return await this.monitorOps.getDashboardTrafficActivities(siteId, customHeaders);
|
|
892
|
+
}
|
|
893
|
+
async getDashboardPoEUsage(siteId, customHeaders) {
|
|
894
|
+
return await this.monitorOps.getDashboardPoEUsage(siteId, customHeaders);
|
|
895
|
+
}
|
|
896
|
+
async getDashboardTopCpuUsage(siteId, customHeaders) {
|
|
897
|
+
return await this.monitorOps.getDashboardTopCpuUsage(siteId, customHeaders);
|
|
898
|
+
}
|
|
899
|
+
async getDashboardTopMemoryUsage(siteId, customHeaders) {
|
|
900
|
+
return await this.monitorOps.getDashboardTopMemoryUsage(siteId, customHeaders);
|
|
901
|
+
}
|
|
902
|
+
async getDashboardMostActiveSwitches(siteId, customHeaders) {
|
|
903
|
+
return await this.monitorOps.getDashboardMostActiveSwitches(siteId, customHeaders);
|
|
904
|
+
}
|
|
905
|
+
async getDashboardMostActiveEaps(siteId, customHeaders) {
|
|
906
|
+
return await this.monitorOps.getDashboardMostActiveEaps(siteId, customHeaders);
|
|
907
|
+
}
|
|
908
|
+
async getDashboardOverview(siteId, customHeaders) {
|
|
909
|
+
return await this.monitorOps.getDashboardOverview(siteId, customHeaders);
|
|
910
|
+
}
|
|
911
|
+
async getChannels(siteId, customHeaders) {
|
|
912
|
+
return await this.monitorOps.getChannels(siteId, customHeaders);
|
|
913
|
+
}
|
|
914
|
+
async getIspLoad(siteId, start, end, customHeaders) {
|
|
915
|
+
return await this.monitorOps.getIspLoad(siteId, start, end, customHeaders);
|
|
916
|
+
}
|
|
917
|
+
async getInterference(siteId, customHeaders) {
|
|
918
|
+
return await this.monitorOps.getInterference(siteId, customHeaders);
|
|
919
|
+
}
|
|
920
|
+
async getGridDashboardTunnelStats(siteId, type, customHeaders) {
|
|
921
|
+
return await this.monitorOps.getGridDashboardTunnelStats(siteId, type, customHeaders);
|
|
922
|
+
}
|
|
923
|
+
async getGridDashboardIpsecTunnelStats(siteId, customHeaders) {
|
|
924
|
+
return await this.monitorOps.getGridDashboardIpsecTunnelStats(siteId, customHeaders);
|
|
925
|
+
}
|
|
926
|
+
async getGridDashboardOpenVpnTunnelStats(siteId, type, customHeaders) {
|
|
927
|
+
return await this.monitorOps.getGridDashboardOpenVpnTunnelStats(siteId, type, customHeaders);
|
|
928
|
+
}
|
|
929
|
+
// Insight operations
|
|
930
|
+
async listSiteThreatManagement(options, siteId, customHeaders) {
|
|
931
|
+
return await this.insightOps.listSiteThreatManagement(options, siteId, customHeaders);
|
|
932
|
+
}
|
|
933
|
+
async getWids(siteId, customHeaders) {
|
|
934
|
+
return await this.insightOps.getWids(siteId, customHeaders);
|
|
935
|
+
}
|
|
936
|
+
async getWidsBlacklist(siteId, customHeaders) {
|
|
937
|
+
return await this.insightOps.getWidsBlacklist(siteId, customHeaders);
|
|
938
|
+
}
|
|
939
|
+
async getRogueAps(siteId, customHeaders) {
|
|
940
|
+
return await this.insightOps.getRogueAps(siteId, customHeaders);
|
|
941
|
+
}
|
|
942
|
+
async getVpnTunnelStats(page, pageSize, siteId, customHeaders) {
|
|
943
|
+
return await this.insightOps.getVpnTunnelStats(page, pageSize, siteId, customHeaders);
|
|
944
|
+
}
|
|
945
|
+
async getIpsecVpnStats(page, pageSize, siteId, customHeaders) {
|
|
946
|
+
return await this.insightOps.getIpsecVpnStats(page, pageSize, siteId, customHeaders);
|
|
947
|
+
}
|
|
948
|
+
async listInsightClients(page, pageSize, siteId, customHeaders) {
|
|
949
|
+
return await this.insightOps.listInsightClients(page, pageSize, siteId, customHeaders);
|
|
950
|
+
}
|
|
951
|
+
async getRoutingTable(type, siteId, customHeaders) {
|
|
952
|
+
return await this.insightOps.getRoutingTable(type, siteId, customHeaders);
|
|
953
|
+
}
|
|
954
|
+
async getThreatDetail(threatId, time, siteId, customHeaders) {
|
|
955
|
+
return await this.insightOps.getThreatDetail(threatId, time, siteId, customHeaders);
|
|
956
|
+
}
|
|
957
|
+
// Log operations
|
|
958
|
+
async listSiteEvents(options, siteId, customHeaders) {
|
|
959
|
+
return await this.logOps.listSiteEvents(options, siteId, customHeaders);
|
|
960
|
+
}
|
|
961
|
+
async listSiteAlerts(options, siteId, customHeaders) {
|
|
962
|
+
return await this.logOps.listSiteAlerts(options, siteId, customHeaders);
|
|
963
|
+
}
|
|
964
|
+
async listSiteAuditLogs(options, siteId, customHeaders) {
|
|
965
|
+
return await this.logOps.listSiteAuditLogs(options, siteId, customHeaders);
|
|
966
|
+
}
|
|
967
|
+
async listGlobalEvents(options, customHeaders) {
|
|
968
|
+
return await this.logOps.listGlobalEvents(options, customHeaders);
|
|
969
|
+
}
|
|
970
|
+
async listGlobalAlerts(options, customHeaders) {
|
|
971
|
+
return await this.logOps.listGlobalAlerts(options, customHeaders);
|
|
972
|
+
}
|
|
973
|
+
async listGlobalAuditLogs(options, customHeaders) {
|
|
974
|
+
return await this.logOps.listGlobalAuditLogs(options, customHeaders);
|
|
975
|
+
}
|
|
976
|
+
// Logs, Events & Alerts tools (issue #42)
|
|
977
|
+
async getLogSettingForSite(siteId, customHeaders) {
|
|
978
|
+
return await this.logOps.getLogSettingForSite(siteId, customHeaders);
|
|
979
|
+
}
|
|
980
|
+
async getLogSettingForSiteV2(siteId, customHeaders) {
|
|
981
|
+
return await this.logOps.getLogSettingForSiteV2(siteId, customHeaders);
|
|
982
|
+
}
|
|
983
|
+
async getAuditLogSettingForSite(siteId, customHeaders) {
|
|
984
|
+
return await this.logOps.getAuditLogSettingForSite(siteId, customHeaders);
|
|
985
|
+
}
|
|
986
|
+
async getLogSettingForGlobal(customHeaders) {
|
|
987
|
+
return await this.logOps.getLogSettingForGlobal(customHeaders);
|
|
988
|
+
}
|
|
989
|
+
async getLogSettingForGlobalV2(customHeaders) {
|
|
990
|
+
return await this.logOps.getLogSettingForGlobalV2(customHeaders);
|
|
991
|
+
}
|
|
992
|
+
async getAuditLogSettingForGlobal(customHeaders) {
|
|
993
|
+
return await this.logOps.getAuditLogSettingForGlobal(customHeaders);
|
|
994
|
+
}
|
|
995
|
+
async getAuditLogsForGlobal(page, pageSize, options, customHeaders) {
|
|
996
|
+
return await this.logOps.getAuditLogsForGlobal(page, pageSize, options, customHeaders);
|
|
997
|
+
}
|
|
998
|
+
// security-vpn additions (#75)
|
|
999
|
+
async getRadiusProxyConfig(customHeaders) {
|
|
1000
|
+
return await this.networkOps.getRadiusProxyConfig(customHeaders);
|
|
1001
|
+
}
|
|
1002
|
+
async getGatewayQosClassRules(page = 1, pageSize = 10, siteId, customHeaders) {
|
|
1003
|
+
return await this.networkOps.getGatewayQosClassRules(page, pageSize, siteId, customHeaders);
|
|
1004
|
+
}
|
|
1005
|
+
async getBandwidthCtrlDetail(siteId, customHeaders) {
|
|
1006
|
+
return await this.networkOps.getBandwidthCtrlDetail(siteId, customHeaders);
|
|
1007
|
+
}
|
|
1008
|
+
async getAppControlRules(page = 1, pageSize = 10, siteId, customHeaders) {
|
|
1009
|
+
return await this.networkOps.getAppControlRules(page, pageSize, siteId, customHeaders);
|
|
1010
|
+
}
|
|
1011
|
+
async createAppControlRule(payload, siteId, customHeaders) {
|
|
1012
|
+
return await this.networkOps.createAppControlRule(payload, siteId, customHeaders);
|
|
1013
|
+
}
|
|
1014
|
+
async updateAppControlRule(ruleId, payload, siteId, customHeaders) {
|
|
1015
|
+
return await this.networkOps.updateAppControlRule(ruleId, payload, siteId, customHeaders);
|
|
1016
|
+
}
|
|
1017
|
+
async deleteAppControlRule(ruleId, siteId, customHeaders) {
|
|
1018
|
+
return await this.networkOps.deleteAppControlRule(ruleId, siteId, customHeaders);
|
|
1019
|
+
}
|
|
1020
|
+
async getAppControlCategories(siteId, customHeaders) {
|
|
1021
|
+
return await this.networkOps.getAppControlCategories(siteId, customHeaders);
|
|
1022
|
+
}
|
|
1023
|
+
async getApplications(page = 1, pageSize = 10, searchKey, filtersFamilyId, siteId, customHeaders) {
|
|
1024
|
+
return await this.networkOps.getApplications(page, pageSize, searchKey, filtersFamilyId, siteId, customHeaders);
|
|
1025
|
+
}
|
|
1026
|
+
async getQosPolicy(siteId, customHeaders) {
|
|
1027
|
+
return await this.networkOps.getQosPolicy(siteId, customHeaders);
|
|
1028
|
+
}
|
|
1029
|
+
async getTrafficPriority(siteId, customHeaders) {
|
|
1030
|
+
return await this.networkOps.getTrafficPriority(siteId, customHeaders);
|
|
1031
|
+
}
|
|
1032
|
+
async getVpnUserList(page = 1, pageSize = 10, siteId, customHeaders) {
|
|
1033
|
+
return await this.networkOps.getVpnUserList(page, pageSize, siteId, customHeaders);
|
|
1034
|
+
}
|
|
1035
|
+
async getVpnUserDetail(vpnId, siteId, customHeaders) {
|
|
1036
|
+
return await this.networkOps.getVpnUserDetail(vpnId, siteId, customHeaders);
|
|
1037
|
+
}
|
|
1038
|
+
async getGoogleLdapProfile(siteId, customHeaders) {
|
|
1039
|
+
return await this.networkOps.getGoogleLdapProfile(siteId, customHeaders);
|
|
1040
|
+
}
|
|
1041
|
+
async getPpskUserGroup(profileId, siteId, customHeaders) {
|
|
1042
|
+
return await this.networkOps.getPpskUserGroup(profileId, siteId, customHeaders);
|
|
1043
|
+
}
|
|
1044
|
+
async getUserRoleProfile(customHeaders) {
|
|
1045
|
+
return await this.networkOps.getUserRoleProfile(customHeaders);
|
|
1046
|
+
}
|
|
1047
|
+
async getPortalProfile(siteId, customHeaders) {
|
|
1048
|
+
return await this.networkOps.getPortalProfile(siteId, customHeaders);
|
|
1049
|
+
}
|
|
1050
|
+
async getMulticastRateLimit(siteId, customHeaders) {
|
|
1051
|
+
return await this.networkOps.getMulticastRateLimit(siteId, customHeaders);
|
|
1052
|
+
}
|
|
1053
|
+
// Device — new AP tools (route through DeviceOperations wrappers for naming consistency)
|
|
1054
|
+
async getApLoadBalance(apMac, siteId, customHeaders) {
|
|
1055
|
+
return await this.deviceOps.getApLoadBalance(apMac, siteId, customHeaders);
|
|
1056
|
+
}
|
|
1057
|
+
async getApOfdmaConfig(apMac, siteId, customHeaders) {
|
|
1058
|
+
return await this.deviceOps.getApOfdmaConfig(apMac, siteId, customHeaders);
|
|
1059
|
+
}
|
|
1060
|
+
// Site detail and template operations
|
|
1061
|
+
async getSiteDetail(siteId, customHeaders) {
|
|
1062
|
+
return await this.siteOps.getSiteDetail(siteId, customHeaders);
|
|
1063
|
+
}
|
|
1064
|
+
async getSiteUrl(siteId, customHeaders) {
|
|
1065
|
+
return await this.siteOps.getSiteUrl(siteId, customHeaders);
|
|
1066
|
+
}
|
|
1067
|
+
async getSiteNtpStatus(siteId, customHeaders) {
|
|
1068
|
+
return await this.siteOps.getSiteNtpStatus(siteId, customHeaders);
|
|
1069
|
+
}
|
|
1070
|
+
async getSiteSpecification(siteId, customHeaders) {
|
|
1071
|
+
return await this.siteOps.getSiteSpecification(siteId, customHeaders);
|
|
1072
|
+
}
|
|
1073
|
+
async getSiteRememberSetting(siteId, customHeaders) {
|
|
1074
|
+
return await this.siteOps.getSiteRememberSetting(siteId, customHeaders);
|
|
1075
|
+
}
|
|
1076
|
+
async getSiteDeviceAccount(siteId, customHeaders) {
|
|
1077
|
+
return await this.siteOps.getSiteDeviceAccount(siteId, customHeaders);
|
|
1078
|
+
}
|
|
1079
|
+
async getSiteCapacity(siteId, customHeaders) {
|
|
1080
|
+
return await this.siteOps.getSiteCapacity(siteId, customHeaders);
|
|
1081
|
+
}
|
|
1082
|
+
async getSiteTemplateList(customHeaders) {
|
|
1083
|
+
return await this.siteOps.getSiteTemplateList(customHeaders);
|
|
1084
|
+
}
|
|
1085
|
+
async getSiteTemplateDetail(siteTemplateId, customHeaders) {
|
|
1086
|
+
return await this.siteOps.getSiteTemplateDetail(siteTemplateId, customHeaders);
|
|
1087
|
+
}
|
|
1088
|
+
async getSiteTemplateConfig(siteTemplateId, customHeaders) {
|
|
1089
|
+
return await this.siteOps.getSiteTemplateConfig(siteTemplateId, customHeaders);
|
|
1090
|
+
}
|
|
1091
|
+
// Controller operations
|
|
1092
|
+
async getDataRetention(customHeaders) {
|
|
1093
|
+
return await this.controllerOps.getDataRetention(customHeaders);
|
|
1094
|
+
}
|
|
1095
|
+
async getControllerPort(customHeaders) {
|
|
1096
|
+
return await this.controllerOps.getControllerPort(customHeaders);
|
|
1097
|
+
}
|
|
1098
|
+
async getPortalPort(customHeaders) {
|
|
1099
|
+
return await this.controllerOps.getPortalPort(customHeaders);
|
|
1100
|
+
}
|
|
1101
|
+
async getCertificate(customHeaders) {
|
|
1102
|
+
return await this.controllerOps.getCertificate(customHeaders);
|
|
1103
|
+
}
|
|
1104
|
+
async getExperienceImprovement(customHeaders) {
|
|
1105
|
+
return await this.controllerOps.getExperienceImprovement(customHeaders);
|
|
1106
|
+
}
|
|
1107
|
+
async getGlobalDashboardOverview(customHeaders) {
|
|
1108
|
+
return await this.controllerOps.getGlobalDashboardOverview(customHeaders);
|
|
1109
|
+
}
|
|
1110
|
+
async getClientHistoryDataEnable(customHeaders) {
|
|
1111
|
+
return await this.controllerOps.getClientHistoryDataEnable(customHeaders);
|
|
1112
|
+
}
|
|
1113
|
+
// Maintenance operations
|
|
1114
|
+
async getBackupFileList(customHeaders) {
|
|
1115
|
+
return await this.maintenanceOps.getBackupFileList(customHeaders);
|
|
1116
|
+
}
|
|
1117
|
+
async getBackupResult(customHeaders) {
|
|
1118
|
+
return await this.maintenanceOps.getBackupResult(customHeaders);
|
|
1119
|
+
}
|
|
1120
|
+
async getRestoreResult(customHeaders) {
|
|
1121
|
+
return await this.maintenanceOps.getRestoreResult(customHeaders);
|
|
1122
|
+
}
|
|
1123
|
+
async getSiteBackupResult(siteId, customHeaders) {
|
|
1124
|
+
return await this.maintenanceOps.getSiteBackupResult(siteId, customHeaders);
|
|
1125
|
+
}
|
|
1126
|
+
async getSiteBackupFileList(siteId, customHeaders) {
|
|
1127
|
+
return await this.maintenanceOps.getSiteBackupFileList(siteId, customHeaders);
|
|
1128
|
+
}
|
|
1129
|
+
async getRogueApExport(siteId, format, page, pageSize, customHeaders) {
|
|
1130
|
+
return await this.maintenanceOps.getRogueApExport(siteId, format, page, pageSize, customHeaders);
|
|
1131
|
+
}
|
|
1132
|
+
async backupController(retainUser, customHeaders) {
|
|
1133
|
+
return await this.maintenanceOps.backupController(retainUser, customHeaders);
|
|
1134
|
+
}
|
|
1135
|
+
async backupControllerToFileServer(serverConfig, filePath, retainUser, customHeaders) {
|
|
1136
|
+
return await this.maintenanceOps.backupControllerToFileServer(serverConfig, filePath, retainUser, customHeaders);
|
|
1137
|
+
}
|
|
1138
|
+
async restoreController(fileName, customHeaders) {
|
|
1139
|
+
return await this.maintenanceOps.restoreController(fileName, customHeaders);
|
|
1140
|
+
}
|
|
1141
|
+
async restoreControllerFromFileServer(serverConfig, filePath, skipDevice, customHeaders) {
|
|
1142
|
+
return await this.maintenanceOps.restoreControllerFromFileServer(serverConfig, filePath, skipDevice, customHeaders);
|
|
1143
|
+
}
|
|
1144
|
+
async backupSites(siteIds, customHeaders) {
|
|
1145
|
+
return await this.maintenanceOps.backupSites(siteIds, customHeaders);
|
|
1146
|
+
}
|
|
1147
|
+
async backupSitesToFileServer(serverConfig, filePath, siteIds, customHeaders) {
|
|
1148
|
+
return await this.maintenanceOps.backupSitesToFileServer(serverConfig, filePath, siteIds, customHeaders);
|
|
1149
|
+
}
|
|
1150
|
+
async restoreSites(siteRestoreInfos, customHeaders) {
|
|
1151
|
+
return await this.maintenanceOps.restoreSites(siteRestoreInfos, customHeaders);
|
|
1152
|
+
}
|
|
1153
|
+
async restoreSitesFromFileServer(serverConfig, siteInfos, customHeaders) {
|
|
1154
|
+
return await this.maintenanceOps.restoreSitesFromFileServer(serverConfig, siteInfos, customHeaders);
|
|
1155
|
+
}
|
|
1156
|
+
// Account operations
|
|
1157
|
+
async getAllCloudUsers(customHeaders) {
|
|
1158
|
+
return await this.accountOps.getAllCloudUsers(customHeaders);
|
|
1159
|
+
}
|
|
1160
|
+
async getAllLocalUsers(customHeaders) {
|
|
1161
|
+
return await this.accountOps.getAllLocalUsers(customHeaders);
|
|
1162
|
+
}
|
|
1163
|
+
async getAllRoles(customHeaders) {
|
|
1164
|
+
// Delegate to AccountOperations — single source of truth for /roles endpoint
|
|
1165
|
+
return await this.accountOps.getAllRoles(customHeaders);
|
|
1166
|
+
}
|
|
1167
|
+
async getRoleDetail(roleId, customHeaders) {
|
|
1168
|
+
return await this.accountOps.getRoleDetail(roleId, customHeaders);
|
|
1169
|
+
}
|
|
1170
|
+
async getAvailableRoles(customHeaders) {
|
|
1171
|
+
return await this.accountOps.getAvailableRoles(customHeaders);
|
|
1172
|
+
}
|
|
1173
|
+
async getAllUsersApp(customHeaders) {
|
|
1174
|
+
return await this.accountOps.getAllUsersApp(customHeaders);
|
|
1175
|
+
}
|
|
1176
|
+
async getCloudAccessStatus(customHeaders) {
|
|
1177
|
+
return await this.accountOps.getCloudAccessStatus(customHeaders);
|
|
1178
|
+
}
|
|
1179
|
+
async getCloudUserInfo(customHeaders) {
|
|
1180
|
+
return await this.accountOps.getCloudUserInfo(customHeaders);
|
|
1181
|
+
}
|
|
1182
|
+
async getMfaStatus(customHeaders) {
|
|
1183
|
+
return await this.accountOps.getMfaStatus(customHeaders);
|
|
1184
|
+
}
|
|
1185
|
+
async getRemoteBindingStatus(customHeaders) {
|
|
1186
|
+
return await this.accountOps.getRemoteBindingStatus(customHeaders);
|
|
1187
|
+
}
|
|
1188
|
+
// Schedule operations
|
|
1189
|
+
async getUpgradeScheduleList(siteId, customHeaders) {
|
|
1190
|
+
return await this.scheduleOps.getUpgradeScheduleList(siteId, customHeaders);
|
|
1191
|
+
}
|
|
1192
|
+
async getRebootScheduleList(siteTemplateId, customHeaders) {
|
|
1193
|
+
return await this.scheduleOps.getRebootScheduleList(siteTemplateId, customHeaders);
|
|
1194
|
+
}
|
|
1195
|
+
async getPoeScheduleList(siteId, customHeaders) {
|
|
1196
|
+
return await this.scheduleOps.getPoeScheduleList(siteId, customHeaders);
|
|
1197
|
+
}
|
|
1198
|
+
async getPortScheduleList(siteId, customHeaders) {
|
|
1199
|
+
return await this.scheduleOps.getPortScheduleList(siteId, customHeaders);
|
|
1200
|
+
}
|
|
1201
|
+
async getPortSchedulePorts(siteId, customHeaders) {
|
|
1202
|
+
return await this.scheduleOps.getPortSchedulePorts(siteId, customHeaders);
|
|
1203
|
+
}
|
|
1204
|
+
// Generic API call
|
|
1205
|
+
async callApi(config, customHeaders) {
|
|
1206
|
+
return await this.request.request(config, true, customHeaders);
|
|
1207
|
+
}
|
|
1208
|
+
/**
|
|
1209
|
+
* Build a full Omada API path from a relative path.
|
|
1210
|
+
* @param relativePath - The relative path to append to the base API path
|
|
1211
|
+
* @param version - The API version to use (default: 'v1')
|
|
1212
|
+
*/
|
|
1213
|
+
buildOmadaPath(relativePath, version = 'v1') {
|
|
1214
|
+
const normalized = relativePath.startsWith('/') ? relativePath : `/${relativePath}`;
|
|
1215
|
+
return `/openapi/${version}/${encodeURIComponent(this.omadacId)}${normalized}`;
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
//# sourceMappingURL=index.js.map
|