SystemMediaGetListRequest
Bases: OCIRequest
Request to get a list of media in the system. The response is either a SystemMediaGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMediaGetListRequest. The column headings are "Media Name", "Codec", "Media Type", "Bandwidth Enforcement Type" and "Bandwidth".
Attributes:
media_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 SystemMediaGetListRequest
client = Client()
command = SystemMediaGetListRequest()
response = client.command(command)
print(response)