SystemFileRepositoryDeviceUserGetListRequest
Bases: OCIRequest
Request the list of users for a file repository in the system. The response is either a SystemFileRepositoryDeviceUserGetListResponse or an ErrorResponse.
Attributes:
file_repository_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemFileRepositoryDeviceUserGetListRequest. Contains a table with column headings : "User Name","Allow Get","Allow Delete","Allow Put" in a row for each file repository user.
Attributes:
file_repository_user_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 SystemFileRepositoryDeviceUserGetListRequest
client = Client()
command = SystemFileRepositoryDeviceUserGetListRequest(
file_repository_name=...,
)
response = client.command(command)
print(response)