SystemMediaSetGetListRequest
Bases: OCIRequest
Request to get the list of Media Sets in the system. The response is either a SystemMediaSetGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMediaSetGetRequest.
Attributes:
media_set_name (Optional[List[str]]):
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 SystemMediaSetGetListRequest
client = Client()
command = SystemMediaSetGetListRequest()
response = client.command(command)
print(response)