PublicClusterGetFullyQualifiedDomainNameRequest
Bases: OCIRequest
Get the public cluster fully qualified domain name (FQDN). The response is either a PublicClusterGetFullyQualifiedDomainNameResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to PublicClusterGetFullyQualifiedDomainNameRequest.
Attributes:
public_cluster_fqdn (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import PublicClusterGetFullyQualifiedDomainNameRequest
client = Client()
command = PublicClusterGetFullyQualifiedDomainNameRequest()
response = client.command(command)
print(response)