Skip to content

SystemAccessDeviceTypeGetEnhancedConfigurableListRequest

Bases: OCIRequest

Requests the list of device types supporting enhanced configuration. The response is either SystemAccessDeviceTypeGetEnhancedConfigurableListResponse or ErrorResponse.

Attributes:

Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemAccessDeviceTypeGetEnhancedConfigurableListRequest(OCIRequest):
    """Requests the list of device types supporting enhanced configuration.
        The response is either SystemAccessDeviceTypeGetEnhancedConfigurableListResponse
        or ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemAccessDeviceTypeGetEnhancedConfigurableListRequest. Contains a table with columns: "Access Device Type", "Enhanced Configuration Type", "Supports Reset". The "Enhanced Configuration Type" column contains one of the AccessDeviceEnhancedConfigurationType14 enumerated values. The "Supports Reset" column is a boolean flag indicating the device can be remotely reset.

Attributes:

device_type_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemAccessDeviceTypeGetEnhancedConfigurableListResponse(OCIDataResponse):
    """Response to SystemAccessDeviceTypeGetEnhancedConfigurableListRequest.
        Contains a table with columns: \"Access Device Type\", \"Enhanced Configuration Type\", \"Supports Reset\".
        The \"Enhanced Configuration Type\" column contains one of the AccessDeviceEnhancedConfigurationType14
        enumerated values.
        The \"Supports Reset\" column is a boolean flag indicating the device can be remotely reset.

    Attributes:

        device_type_table (OCITable):

    """

    device_type_table: OCITable = field(metadata={"alias": "deviceTypeTable"})

Bases: OCIResponse

Source code in src/mercury_ocip/commands/base_command.py
class ErrorResponse(OCIResponse):
    errorCode: Optional[int] = None
    summary: str
    summaryEnglish: str
    detail: Optional[str] = None

Example Usage

from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAccessDeviceTypeGetEnhancedConfigurableListRequest

client = Client()

command = SystemAccessDeviceTypeGetEnhancedConfigurableListRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemAccessDeviceTypeGetEnhancedConfigurableListRequest")

print(response)