SystemExportAddressingDataRequest
Bases: OCIRequest
Request to export Application Server addressing data, such as DNs, extensions, alias and user ids to a file so they can be uploaded to a Network Server. In XS data mode, response is sent without waiting for completion. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
file_name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemExportAddressingDataRequest
client = Client()
command = SystemExportAddressingDataRequest(
file_name=...,
)
response = client.command(command)
print(response)