Skip to content

SystemCommunicationBarringProfileGetRequest19sp1V2

Bases: OCIRequest

Get an existing Communication Barring Profile. The response is either a SystemCommunicationBarringProfileGetResponse19sp1V2 or an ErrorResponse.

Attributes:

name (str):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemCommunicationBarringProfileGetRequest19sp1V2(OCIRequest):
    """Get an existing Communication Barring Profile.
        The response is either a SystemCommunicationBarringProfileGetResponse19sp1V2
        or an ErrorResponse.

    Attributes:

        name (str):

    """

    name: str = field(metadata={"alias": "name"})

Responses

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 SystemCommunicationBarringProfileGetRequest19sp1V2

client = Client()

command = SystemCommunicationBarringProfileGetRequest19sp1V2(
    name=...,
)

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemCommunicationBarringProfileGetRequest19sp1V2",
    name=...,
)

print(response)