SystemSystemServiceDnGetAvailableListRequest
Bases: OCIRequest
Request a list of system service DNs not yet in use. The response is either SystemSystemServiceDnGetAvailableListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemSystemServiceDnGetAvailableListRequest. Contains a list of available DNs not yet assigned to any instance of system service.
Attributes:
available_dn (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 SystemSystemServiceDnGetAvailableListRequest
client = Client()
command = SystemSystemServiceDnGetAvailableListRequest()
response = client.command(command)
print(response)