SystemMediaSetGetRequest
Bases: OCIRequest
Request to get a Media Set. The response is either a SystemMediaSetGetResponse or an ErrorResponse.
Attributes:
set_name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMediaSetGetRequest. Returns a list of media names in the set.
Attributes:
media_name (List[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemMediaSetGetRequest
client = Client()
command = SystemMediaSetGetRequest(
set_name=...,
)
response = client.command(command)
print(response)