Skip to content

ReplacementDeviceList

Bases: OCIType

A list of devices that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list.

Attributes:

device (List[AccessDevice]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class ReplacementDeviceList(OCIType):
    """A list of devices that replaces a previously configured list.
        By convention, an element of this type may be set nill to clear the list.

    Attributes:

        device (List[AccessDevice]):

    """

    device: List[AccessDevice] = field(metadata={"alias": "device"})