Source code for imcsdk.mometa.bios.BiosVfPCIOptionROMs

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

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


[docs]class BiosVfPCIOptionROMsConsts: VP_PCIOPTION_ROMS_DISABLED = "Disabled" VP_PCIOPTION_ROMS_ENABLED = "Enabled" VP_PCIOPTION_ROMS_LEGACY_ONLY = "Legacy Only" VP_PCIOPTION_ROMS_UEFI_ONLY = "UEFI Only" _VP_PCIOPTION_ROMS_DISABLED = "disabled" _VP_PCIOPTION_ROMS_ENABLED = "enabled" VP_PCIOPTION_ROMS_PLATFORM_DEFAULT = "platform-default"
[docs]class BiosVfPCIOptionROMs(ManagedObject): """This is BiosVfPCIOptionROMs class.""" consts = BiosVfPCIOptionROMsConsts() naming_props = set([]) mo_meta = MoMeta("BiosVfPCIOptionROMs", "biosVfPCIOptionROMs", "PCI-OptionROMs", VersionMeta.Version151f, "InputOutput", 0x1f, [], ["admin"], [u'biosPlatformDefaults', u'biosSettings'], [], ["Get", "Set"]) prop_meta = { "child_action": MoPropertyMeta("child_action", "childAction", "string", VersionMeta.Version151f, MoPropertyMeta.INTERNAL, None, None, None, None, [], []), "dn": MoPropertyMeta("dn", "dn", "string", VersionMeta.Version151f, MoPropertyMeta.READ_WRITE, 0x2, 0, 255, None, [], []), "rn": MoPropertyMeta("rn", "rn", "string", VersionMeta.Version151f, MoPropertyMeta.READ_WRITE, 0x4, 0, 255, None, [], []), "status": MoPropertyMeta("status", "status", "string", VersionMeta.Version151f, MoPropertyMeta.READ_WRITE, 0x8, None, None, None, ["", "created", "deleted", "modified", "removed"], []), "vp_pci_option_ro_ms": MoPropertyMeta("vp_pci_option_ro_ms", "vpPCIOptionROMs", "string", VersionMeta.Version151f, MoPropertyMeta.READ_WRITE, 0x10, None, None, None, ["Disabled", "Enabled", "Legacy Only", "UEFI Only", "disabled", "enabled", "platform-default"], []), } prop_map = { "childAction": "child_action", "dn": "dn", "rn": "rn", "status": "status", "vpPCIOptionROMs": "vp_pci_option_ro_ms", } def __init__(self, parent_mo_or_dn, **kwargs): self._dirty_mask = 0 self.child_action = None self.status = None self.vp_pci_option_ro_ms = None ManagedObject.__init__(self, "BiosVfPCIOptionROMs", parent_mo_or_dn, **kwargs)