Skip to content

SystemCallRecordingGetPlatformUsageRequest22

Bases: OCIRequest

Get the list of groups currently associated to the specified Call Recording platform. The response is either SystemCallRecordingGetPlatformUsageResponse22 or ErrorResponse.

Attributes:

name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemCallRecordingGetPlatformUsageRequest22(OCIRequest):
    """Get the list of groups currently associated to the specified Call Recording platform.
        The response is either SystemCallRecordingGetPlatformUsageResponse22 or ErrorResponse.

    Attributes:

        name (str):

    """

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

Responses

Bases: OCIDataResponse

Response to SystemCallRecordingGetPlatformUsageRequest. The response contains a table with columns headings "Organization Id", "Organization Type", "Group Id".

Attributes:

group_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemCallRecordingGetPlatformUsageResponse22(OCIDataResponse):
    """Response to SystemCallRecordingGetPlatformUsageRequest.
        The response contains a table with columns headings \"Organization Id\",
        \"Organization Type\", \"Group Id\".

    Attributes:

        group_table (OCITable):

    """

    group_table: OCITable = field(metadata={"alias": "groupTable"})

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 SystemCallRecordingGetPlatformUsageRequest22

client = Client()

command = SystemCallRecordingGetPlatformUsageRequest22(
    name=...,
)

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

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

print(response)