Skip to content

AccessDevice

Bases: OCIType

Uniquely identifies an Identity/device profile created anywhere in the system.

Attributes:

device_level (str):

device_name (str):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class AccessDevice(OCIType):
    """Uniquely identifies an Identity/device profile created anywhere in the system.

    Attributes:

        device_level (str):

        device_name (str):

    """

    device_level: str = field(metadata={"alias": "deviceLevel"})

    device_name: str = field(metadata={"alias": "deviceName"})