Source code for ucsmsdk.mometa.fabric.FabricEthMon

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

from ...ucsmo import ManagedObject
from ...ucscoremeta import MoPropertyMeta, MoMeta
from ...ucsmeta import VersionMeta


[docs]class FabricEthMonConsts: ADMIN_STATE_DISABLED = "disabled" ADMIN_STATE_ENABLED = "enabled" ID_A = "A" ID_B = "B" ID_NONE = "NONE" IS_CONFIG_SUCCESS_FALSE = "false" IS_CONFIG_SUCCESS_NO = "no" IS_CONFIG_SUCCESS_TRUE = "true" IS_CONFIG_SUCCESS_YES = "yes" OPER_STATE_DOWN = "down" OPER_STATE_ERROR = "error" OPER_STATE_UNKNOWN = "unknown" OPER_STATE_UP = "up" OPER_STATE_REASON_ACTIVE = "Active" OPER_STATE_REASON_GENERIC_ERROR = "Generic_Error" OPER_STATE_REASON_NO_DESTINATION_CONFIGURED = "No_Destination_Configured" OPER_STATE_REASON_NO_FLOW_ID_SPECIFIED = "No_Flow-id_Specified" OPER_STATE_REASON_NO_HARDWARE_RESOURCE = "No_Hardware_Resource" OPER_STATE_REASON_NO_OPERATIONAL_SRC_DST = "No_Operational_Src_Dst" OPER_STATE_REASON_NO_SOURCE_DESTINATION_CONFIGURED = "No_Source_Destination_Configured" OPER_STATE_REASON_NO_SOURCES_CONFIGURED = "No_Sources_Configured" OPER_STATE_REASON_SESSION_ADMIN_SHUT = "Session_Admin_Shut" OPER_STATE_REASON_TUNNEL_MISCONF_DOWN = "Tunnel_Misconf_Down" OPER_STATE_REASON_UNKNOWN = "Unknown" OPER_STATE_REASON_WRONG_DESTINATION_MODE = "Wrong_Destination_Mode" OPER_STATE_REASON_WRONG_SOURCE_MODE = "Wrong_Source_Mode"
[docs]class FabricEthMon(ManagedObject): """This is FabricEthMon class.""" consts = FabricEthMonConsts() naming_props = set([u'name']) mo_meta = MoMeta("FabricEthMon", "fabricEthMon", "eth-mon-[name]", VersionMeta.Version141i, "InputOutput", 0xff, [], ["admin", "ext-lan-config", "ext-lan-policy"], [u'fabricEthMonLan'], [u'fabricEthMonDestEp', u'fabricEthMonFiltRef', u'fabricEthMonSrcRef', u'fabricSubGroup', u'faultInst'], ["Add", "Get", "Remove", "Set"]) prop_meta = { "admin_state": MoPropertyMeta("admin_state", "adminState", "string", VersionMeta.Version141i, MoPropertyMeta.READ_WRITE, 0x2, None, None, None, ["disabled", "enabled"], []), "child_action": MoPropertyMeta("child_action", "childAction", "string", VersionMeta.Version141i, MoPropertyMeta.INTERNAL, 0x4, None, None, r"""((deleteAll|ignore|deleteNonPresent),){0,2}(deleteAll|ignore|deleteNonPresent){0,1}""", [], []), "config_fail_reason": MoPropertyMeta("config_fail_reason", "configFailReason", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, None, 0, 510, None, [], []), "dn": MoPropertyMeta("dn", "dn", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, 0x8, 0, 256, None, [], []), "id": MoPropertyMeta("id", "id", "string", VersionMeta.Version141i, MoPropertyMeta.CREATE_ONLY, 0x10, None, None, None, ["A", "B", "NONE"], []), "is_config_success": MoPropertyMeta("is_config_success", "isConfigSuccess", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, None, None, None, None, ["false", "no", "true", "yes"], []), "locale": MoPropertyMeta("locale", "locale", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, None, None, None, r"""((defaultValue|unknown|server|chassis|internal|external),){0,5}(defaultValue|unknown|server|chassis|internal|external){0,1}""", [], []), "name": MoPropertyMeta("name", "name", "string", VersionMeta.Version141i, MoPropertyMeta.NAMING, 0x20, None, None, r"""[\-\.:_a-zA-Z0-9]{1,16}""", [], []), "oper_state": MoPropertyMeta("oper_state", "operState", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, None, None, None, None, ["down", "error", "unknown", "up"], []), "oper_state_reason": MoPropertyMeta("oper_state_reason", "operStateReason", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, None, None, None, None, ["Active", "Generic_Error", "No_Destination_Configured", "No_Flow-id_Specified", "No_Hardware_Resource", "No_Operational_Src_Dst", "No_Source_Destination_Configured", "No_Sources_Configured", "Session_Admin_Shut", "Tunnel_Misconf_Down", "Unknown", "Wrong_Destination_Mode", "Wrong_Source_Mode"], []), "peer_dn": MoPropertyMeta("peer_dn", "peerDn", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, None, 0, 256, None, [], []), "rn": MoPropertyMeta("rn", "rn", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, 0x40, 0, 256, None, [], []), "sacl": MoPropertyMeta("sacl", "sacl", "string", VersionMeta.Version302a, MoPropertyMeta.READ_ONLY, None, None, None, r"""((none|del|mod|addchild|cascade),){0,4}(none|del|mod|addchild|cascade){0,1}""", [], []), "session": MoPropertyMeta("session", "session", "uint", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, None, None, None, None, [], ["1-255"]), "status": MoPropertyMeta("status", "status", "string", VersionMeta.Version141i, MoPropertyMeta.READ_WRITE, 0x80, None, None, r"""((removed|created|modified|deleted),){0,3}(removed|created|modified|deleted){0,1}""", [], []), "transport": MoPropertyMeta("transport", "transport", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, None, None, None, r"""((defaultValue|unknown|ether|dce|fc),){0,4}(defaultValue|unknown|ether|dce|fc){0,1}""", [], []), "type": MoPropertyMeta("type", "type", "string", VersionMeta.Version141i, MoPropertyMeta.READ_ONLY, None, None, None, r"""((defaultValue|unknown|lan|san|ipc),){0,4}(defaultValue|unknown|lan|san|ipc){0,1}""", [], []), } prop_map = { "adminState": "admin_state", "childAction": "child_action", "configFailReason": "config_fail_reason", "dn": "dn", "id": "id", "isConfigSuccess": "is_config_success", "locale": "locale", "name": "name", "operState": "oper_state", "operStateReason": "oper_state_reason", "peerDn": "peer_dn", "rn": "rn", "sacl": "sacl", "session": "session", "status": "status", "transport": "transport", "type": "type", } def __init__(self, parent_mo_or_dn, name, **kwargs): self._dirty_mask = 0 self.name = name self.admin_state = None self.child_action = None self.config_fail_reason = None self.id = None self.is_config_success = None self.locale = None self.oper_state = None self.oper_state_reason = None self.peer_dn = None self.sacl = None self.session = None self.status = None self.transport = None self.type = None ManagedObject.__init__(self, "FabricEthMon", parent_mo_or_dn, **kwargs)