SystemAliasGetListRequest
Bases: OCIRequest
Requests the list of all system-level Application Server aliases. The response is either SystemAliasGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAliasGetListRequest. Contains the list of all network alias' for the Application Server.
Attributes:
alias_net_address (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 SystemAliasGetListRequest
client = Client()
command = SystemAliasGetListRequest()
response = client.command(command)
print(response)