1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
# SPDX-License-Identifier: BSD-3-Clause
#
# Copyright 2020 Raritan Inc. All rights reserved.
#
# This is an auto-generated file.
#
# Section generated by IdlC from "EnergyWiseSettings.idl"
#
import raritan.rpc
from raritan.rpc import Interface, Structure, ValueObject, Enumeration, typecheck, DecodeException
# structure
class EnergyWiseSettings(Structure):
idlType = "cew.EnergyWiseSettings:1.0.0"
elements = ["enabled", "domainName", "secret", "port", "pollingInterval"]
def __init__(self, enabled, domainName, secret, port, pollingInterval):
typecheck.is_bool(enabled, AssertionError)
typecheck.is_string(domainName, AssertionError)
typecheck.is_string(secret, AssertionError)
typecheck.is_int(port, AssertionError)
typecheck.is_int(pollingInterval, AssertionError)
self.enabled = enabled
self.domainName = domainName
self.secret = secret
self.port = port
self.pollingInterval = pollingInterval
@classmethod
def decode(cls, json, agent):
obj = cls(
enabled = json['enabled'],
domainName = json['domainName'],
secret = json['secret'],
port = json['port'],
pollingInterval = json['pollingInterval'],
)
return obj
def encode(self):
json = {}
json['enabled'] = self.enabled
json['domainName'] = self.domainName
json['secret'] = self.secret
json['port'] = self.port
json['pollingInterval'] = self.pollingInterval
return json
#
# Section generated by IdlC from "EnergyWiseManager.idl"
#
import raritan.rpc
from raritan.rpc import Interface, Structure, ValueObject, Enumeration, typecheck, DecodeException
import raritan.rpc.cew
# interface
class EnergyWiseManager(Interface):
idlType = "cew.EnergyWiseManager:1.0.0"
class _getSettings(Interface.Method):
name = 'getSettings'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
_ret_ = raritan.rpc.cew.EnergyWiseSettings.decode(rsp['_ret_'], agent)
typecheck.is_struct(_ret_, raritan.rpc.cew.EnergyWiseSettings, DecodeException)
return _ret_
class _setSettings(Interface.Method):
name = 'setSettings'
@staticmethod
def encode(settings):
typecheck.is_struct(settings, raritan.rpc.cew.EnergyWiseSettings, AssertionError)
args = {}
args['settings'] = raritan.rpc.cew.EnergyWiseSettings.encode(settings)
return args
@staticmethod
def decode(rsp, agent):
_ret_ = rsp['_ret_']
typecheck.is_int(_ret_, DecodeException)
return _ret_
def __init__(self, target, agent):
super(EnergyWiseManager, self).__init__(target, agent)
self.getSettings = EnergyWiseManager._getSettings(self)
self.setSettings = EnergyWiseManager._setSettings(self)
|