"""This module contains the general information for BiosVfBootOptionRetry ManagedObject."""
from ...imcmo import ManagedObject
from ...imccoremeta import MoPropertyMeta, MoMeta
from ...imcmeta import VersionMeta
[docs]class BiosVfBootOptionRetryConsts:
VP_BOOT_OPTION_RETRY_DISABLED = "Disabled"
VP_BOOT_OPTION_RETRY_ENABLED = "Enabled"
_VP_BOOT_OPTION_RETRY_DISABLED = "disabled"
_VP_BOOT_OPTION_RETRY_ENABLED = "enabled"
VP_BOOT_OPTION_RETRY_PLATFORM_DEFAULT = "platform-default"
[docs]class BiosVfBootOptionRetry(ManagedObject):
"""This is BiosVfBootOptionRetry class."""
consts = BiosVfBootOptionRetryConsts()
naming_props = set([])
mo_meta = MoMeta("BiosVfBootOptionRetry", "biosVfBootOptionRetry", "Boot-option-retry", VersionMeta.Version151f, "InputOutput", 0x1f, [], ["admin", "read-only", "user"], [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_boot_option_retry": MoPropertyMeta("vp_boot_option_retry", "vpBootOptionRetry", "string", VersionMeta.Version151f, MoPropertyMeta.READ_WRITE, 0x10, None, None, None, ["Disabled", "Enabled", "disabled", "enabled", "platform-default"], []),
}
prop_map = {
"childAction": "child_action",
"dn": "dn",
"rn": "rn",
"status": "status",
"vpBootOptionRetry": "vp_boot_option_retry",
}
def __init__(self, parent_mo_or_dn, **kwargs):
self._dirty_mask = 0
self.child_action = None
self.status = None
self.vp_boot_option_retry = None
ManagedObject.__init__(self, "BiosVfBootOptionRetry", parent_mo_or_dn, **kwargs)