Bases: OCIType
A list of enterprise accessible 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[EnterpriseAccessDevice]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class ReplacementEnterpriseDeviceList(OCIType):
"""A list of enterprise accessible 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[EnterpriseAccessDevice]):
"""
device: List[EnterpriseAccessDevice] = field(metadata={"alias": "device"})
|