SystemDomainParametersGetRequest
Bases: OCIRequest
Request to get the list of system Domain parameters. The response is either SystemDomainParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDomainParametersGetRequest. Contains the system Domain parameters.
The following elements are only used in AS data mode:
useAliasForDomain, value "false" is returned in XS data mode.
Attributes:
use_alias_for_domain (bool):
default_domain (Optional[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 SystemDomainParametersGetRequest
client = Client()
command = SystemDomainParametersGetRequest()
response = client.command(command)
print(response)