SystemConfigurableFileSystemGetRequest23V2
Bases: OCIRequest
Request to get the File System parameters. The response is either SystemConfigurableFileSystemGetResponse23V2 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemConfigurableFileSystemGetRequest23V2. Contains the File System parameters. The following elements are only used in AS data mode: protocolFile-secure value "false" is returned in XS data mode
Attributes:
media_directory (str):
protocol_file (Optional[object]):
protocol_web_dav (Optional[object]):
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 SystemConfigurableFileSystemGetRequest23V2
client = Client()
command = SystemConfigurableFileSystemGetRequest23V2()
response = client.command(command)
print(response)