Skip to content

CPEDeviceModifyOptions22

Bases: OCIType

CPE device's options when used with a modify request. The following options are not changeable: configType systemFileName deviceFileFormat

Attributes:

enable_monitoring (Optional[bool]):

device_management_device_type_options (Optional[DeviceManagementDeviceTypeModifyOptions22]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class CPEDeviceModifyOptions22(OCIType):
    """CPE device's options when used with a modify request.
        The following options are not changeable:
          configType
          systemFileName
          deviceFileFormat

    Attributes:

        enable_monitoring (Optional[bool]):

        device_management_device_type_options (Optional[DeviceManagementDeviceTypeModifyOptions22]):

    """

    enable_monitoring: Optional[bool] = field(
        default=None, metadata={"alias": "enableMonitoring"}
    )

    device_management_device_type_options: Optional[
        DeviceManagementDeviceTypeModifyOptions22
    ] = field(default=None, metadata={"alias": "deviceManagementDeviceTypeOptions"})