Skip to content

SystemBroadCloudGetRequest22

Bases: OCIRequest

Get the system interface attributes for Messaging Server/BroadCloud. The response is either SystemBroadCloudGetResponse22 or ErrorResponse.

Attributes:

Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemBroadCloudGetRequest22(OCIRequest):
    """Get the system interface attributes for Messaging Server/BroadCloud.
        The response is either SystemBroadCloudGetResponse22 or ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to the SystemBroadCloudGetRequest22. The response contains the system interface attributes for Messaging Server/BroadCloud.

Attributes:

provisioning_url (Optional[str]):

provisioning_user_id (Optional[str]):

enable_synchronization (bool):

proxy_host (Optional[str]):

proxy_port (int):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemBroadCloudGetResponse22(OCIDataResponse):
    """Response to the SystemBroadCloudGetRequest22.
        The response contains the system interface attributes for Messaging Server/BroadCloud.

    Attributes:

        provisioning_url (Optional[str]):

        provisioning_user_id (Optional[str]):

        enable_synchronization (bool):

        proxy_host (Optional[str]):

        proxy_port (int):

    """

    provisioning_url: Optional[str] = field(
        default=None, metadata={"alias": "provisioningUrl"}
    )

    provisioning_user_id: Optional[str] = field(
        default=None, metadata={"alias": "provisioningUserId"}
    )

    enable_synchronization: bool = field(metadata={"alias": "enableSynchronization"})

    proxy_host: Optional[str] = field(default=None, metadata={"alias": "proxyHost"})

    proxy_port: int = field(metadata={"alias": "proxyPort"})

Bases: OCIResponse

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

Example Usage

from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemBroadCloudGetRequest22

client = Client()

command = SystemBroadCloudGetRequest22()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemBroadCloudGetRequest22")

print(response)