import { ServiceCallType } from '@iotize/tap'; import { ReadConfigContext } from './definitions'; import { ReadConfigKey as ReadConfigGeneratedKey } from './generated/read-configurator-config'; declare const READ_CONFIGURATOR_CUSTOM_CONFIG: { 'target.protocol.config': (context: ReadConfigContext) => ServiceCallType | Error | undefined; }; export declare const READ_CONFIGURATOR_CONFIG: { 'target.protocol.config': (context: ReadConfigContext) => ServiceCallType | Error | undefined; 'application.data': (context: ReadConfigContext) => ServiceCallType | Error; 'application.name': (context: ReadConfigContext) => ServiceCallType | Error; 'application.productCode': (context: ReadConfigContext) => ServiceCallType | Error; 'application.universalLink': (context: ReadConfigContext) => ServiceCallType | Error; 'application.uri': (context: ReadConfigContext) => ServiceCallType | Error; 'cloud.dataLog.mqttPublishTopic': (context: ReadConfigContext) => ServiceCallType | Error; 'cloud.dataLog.mqttSubscribeTopic': (context: ReadConfigContext) => ServiceCallType | Error; 'cloud.dataLog.uploadPeriod': (context: ReadConfigContext) => ServiceCallType | Error; 'cloud.mqtt.brokerPort': (context: ReadConfigContext) => ServiceCallType | Error; 'cloud.mqtt.clientId': (context: ReadConfigContext) => ServiceCallType | Error; 'cloud.mqtt.password': (context: ReadConfigContext) => ServiceCallType | Error; 'cloud.mqtt.username': (context: ReadConfigContext) => ServiceCallType | Error; 'cloud.platform': (context: ReadConfigContext) => ServiceCallType | Error; configFormatVersion: (context: ReadConfigContext) => ServiceCallType | Error; 'data.bundles[].dataLog.cryptoGroupId': (context: ReadConfigContext) => ServiceCallType | Error; 'data.bundles[].dataLog.period': (context: ReadConfigContext) => ServiceCallType | Error; 'data.bundles[].name': (context: ReadConfigContext) => ServiceCallType | Error; 'data.profiles[].alias': (context: ReadConfigContext) => ServiceCallType | Error; 'data.profiles[].lifeTime': (context: ReadConfigContext) => ServiceCallType | Error; 'data.profiles[].username': (context: ReadConfigContext) => ServiceCallType | Error; 'data.variables[].address': (context: ReadConfigContext) => ServiceCallType | Error; 'data.variables[].bundleId': (context: ReadConfigContext) => ServiceCallType | Error; 'data.variables[].length': (context: ReadConfigContext) => ServiceCallType | Error; 'data.variables[].meta': (context: ReadConfigContext) => ServiceCallType | Error; 'data.variables[].rawMeta': (context: ReadConfigContext) => ServiceCallType | Error; 'data.variables[].type': (context: ReadConfigContext) => ServiceCallType | Error; 'jvm.codeSize': (context: ReadConfigContext) => ServiceCallType | Error; 'jvm.profileId': (context: ReadConfigContext) => ServiceCallType | Error; 'ports.ethernet.gatewayIp': (context: ReadConfigContext) => ServiceCallType | Error; 'ports.ethernet.ip': (context: ReadConfigContext) => ServiceCallType | Error; 'ports.ethernet.ipMask': (context: ReadConfigContext) => ServiceCallType | Error; 'tap.autoRebootTimeout': (context: ReadConfigContext) => ServiceCallType | Error; 'tap.maxLowPowerTime': (context: ReadConfigContext) => ServiceCallType | Error; 'tap.powerOptimization': (context: ReadConfigContext) => ServiceCallType | Error; 'tap.powerOptimizationOptions': (context: ReadConfigContext) => ServiceCallType | Error; 'tap.scram.hashIteration': (context: ReadConfigContext) => ServiceCallType | Error; 'tap.security': (context: ReadConfigContext) => ServiceCallType | Error; 'tap.time.ntpServer': (context: ReadConfigContext) => ServiceCallType | Error; 'tap.time.zone': (context: ReadConfigContext) => ServiceCallType | Error; 'target.firmwareVersion': (context: ReadConfigContext) => ServiceCallType | Error; 'target.modbusDefaultSlaveAddress': (context: ReadConfigContext) => ServiceCallType | Error; 'target.protocol.type': (context: ReadConfigContext) => ServiceCallType | Error; version: (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.options.authorizedProtocols': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.options.inactivityTimeout': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.options.network': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.options.pairing': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.ethernet.dnsIp': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.lora.config': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.lora.ids': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.lte.applicationData': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.mqtt.brokerHostname': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.mqtt.brokerPort': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.mqtt.clientId': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.mqtt.password': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.mqtt.relayNetKey': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.mqtt.requestTopic': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.mqtt.responseTopic': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.mqtt.username': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.nfc.autoLogProfileId': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.nfc.connectionPriority': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.countryCode': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.dnsIp': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.gatewayIp': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.ip': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.key': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.keyVisibility': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.mask': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.mode': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.networkMode': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.protocol': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.ssid': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.ssidVisibility': (context: ReadConfigContext) => ServiceCallType | Error; 'wireless.protocols.wifi.txPower': (context: ReadConfigContext) => ServiceCallType | Error; }; export type ReadConfigKey = ReadConfigGeneratedKey | keyof typeof READ_CONFIGURATOR_CUSTOM_CONFIG; export {};