Source code for imcsdk.mometa.equipment.EquipmentLocatorLed

"""This module contains the general information for EquipmentLocatorLed ManagedObject."""

from ...imcmo import ManagedObject
from ...imccoremeta import MoPropertyMeta, MoMeta
from ...imcmeta import VersionMeta


[docs]class EquipmentLocatorLedConsts: ADMIN_STATE_INACTIVE = "inactive" ADMIN_STATE_OFF = "off" ADMIN_STATE_ON = "on" COLOR_AMBER = "amber" COLOR_BLUE = "blue" COLOR_GREEN = "green" COLOR_RED = "red" COLOR_UNKNOWN = "unknown" OPER_STATE_BLINKING = "blinking" OPER_STATE_ETH = "eth" OPER_STATE_FC = "fc" OPER_STATE_OFF = "off" OPER_STATE_ON = "on" OPER_STATE_UNKNOWN = "unknown"
[docs]class EquipmentLocatorLed(ManagedObject): """This is EquipmentLocatorLed class.""" consts = EquipmentLocatorLedConsts() naming_props = set([]) mo_meta = MoMeta("EquipmentLocatorLed", "equipmentLocatorLed", "locator-led", VersionMeta.Version151f, "InputOutput", 0x1f, [], ["admin", "read-only", "user"], [u'computeRackUnit'], [], ["Get", "Set"]) prop_meta = { "admin_state": MoPropertyMeta("admin_state", "adminState", "string", VersionMeta.Version151f, MoPropertyMeta.READ_WRITE, 0x2, None, None, None, ["inactive", "off", "on"], []), "child_action": MoPropertyMeta("child_action", "childAction", "string", VersionMeta.Version151f, MoPropertyMeta.INTERNAL, None, None, None, None, [], []), "color": MoPropertyMeta("color", "color", "string", VersionMeta.Version151f, MoPropertyMeta.READ_ONLY, None, None, None, None, ["amber", "blue", "green", "red", "unknown"], []), "dn": MoPropertyMeta("dn", "dn", "string", VersionMeta.Version151f, MoPropertyMeta.READ_WRITE, 0x4, 0, 255, None, [], []), "id": MoPropertyMeta("id", "id", "uint", VersionMeta.Version151f, MoPropertyMeta.READ_ONLY, None, None, None, None, [], []), "name": MoPropertyMeta("name", "name", "string", VersionMeta.Version151f, MoPropertyMeta.READ_ONLY, None, 0, 512, None, [], []), "oper_state": MoPropertyMeta("oper_state", "operState", "string", VersionMeta.Version151f, MoPropertyMeta.READ_ONLY, None, None, None, None, ["blinking", "eth", "fc", "off", "on", "unknown"], []), "rn": MoPropertyMeta("rn", "rn", "string", VersionMeta.Version151f, MoPropertyMeta.READ_WRITE, 0x8, 0, 255, None, [], []), "status": MoPropertyMeta("status", "status", "string", VersionMeta.Version151f, MoPropertyMeta.READ_WRITE, 0x10, None, None, None, ["", "created", "deleted", "modified", "removed"], []), } prop_map = { "adminState": "admin_state", "childAction": "child_action", "color": "color", "dn": "dn", "id": "id", "name": "name", "operState": "oper_state", "rn": "rn", "status": "status", } def __init__(self, parent_mo_or_dn, **kwargs): self._dirty_mask = 0 self.admin_state = None self.child_action = None self.color = None self.id = None self.name = None self.oper_state = None self.status = None ManagedObject.__init__(self, "EquipmentLocatorLed", parent_mo_or_dn, **kwargs)