SystemServerAddressesGetRequest
Bases: OCIRequest
Request to get the list of Server Addresses. The response is either SystemServerAddressesGetResponse or ErrorResponse. See also: PrimaryInfoGetRequest PublicClusterGetFullyQualifiedDomainNameRequest
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemServerAddressesGetRequest. Contains a list of system Server Addresses. See also: PrimaryInfoGetResponse PublicClusterGetFullyQualifiedDomainNameResponse ServingInfoGetResponse
Attributes:
web_server_cluster_public_fqdn (Optional[str]):
application_server_cluster_primary_public_fqdn (Optional[str]):
application_server_cluster_secondary_public_fqdn (Optional[str]):
application_server_cluster_primary_private_fqdn (Optional[str]):
application_server_cluster_secondary_private_fqdn (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 SystemServerAddressesGetRequest
client = Client()
command = SystemServerAddressesGetRequest()
response = client.command(command)
print(response)