Skip to content

SystemBroadWorksMobilityMobileNetworkGetListRequest

Bases: OCIRequest

Get the list of Mobile Networks. The response is either SystemBroadWorksMobilityMobileNetworkGetListResponse or ErrorResponse.

Attributes:

Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemBroadWorksMobilityMobileNetworkGetListRequest(OCIRequest):
    """Get the list of Mobile Networks.
        The response is either SystemBroadWorksMobilityMobileNetworkGetListResponse or ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

The response to a SystemBroadWorksMobilityMobileNetworkGetListRequest. Contains a table with column headings: "Name", "SCF Signaling Net Address", "SCF Signaling Port"

Attributes:

mobile_network_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemBroadWorksMobilityMobileNetworkGetListResponse(OCIDataResponse):
    """The response to a SystemBroadWorksMobilityMobileNetworkGetListRequest.
        Contains a table with column headings: \"Name\", \"SCF Signaling Net Address\", \"SCF Signaling Port\"

    Attributes:

        mobile_network_table (OCITable):

    """

    mobile_network_table: OCITable = field(metadata={"alias": "mobileNetworkTable"})

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 SystemBroadWorksMobilityMobileNetworkGetListRequest

client = Client()

command = SystemBroadWorksMobilityMobileNetworkGetListRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemBroadWorksMobilityMobileNetworkGetListRequest")

print(response)