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
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
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)