SystemServerAddressesModifyRequest
Bases: OCIRequest
Request to modify Server Addresses. The response is either SuccessResponse or ErrorResponse.
Attributes:
web_server_cluster_public_fqdn (Optional[Nillable[str]]):
application_server_cluster_primary_public_fqdn (Optional[Nillable[str]]):
application_server_cluster_secondary_public_fqdn (Optional[Nillable[str]]):
application_server_cluster_primary_private_fqdn (Optional[Nillable[str]]):
application_server_cluster_secondary_private_fqdn (Optional[Nillable[str]]):
Source code in src/mercury_ocip/commands/commands.py
96047 96048 96049 96050 96051 96052 96053 96054 96055 96056 96057 96058 96059 96060 96061 96062 96063 96064 96065 96066 96067 96068 96069 96070 96071 96072 96073 96074 96075 96076 96077 96078 96079 96080 96081 96082 96083 96084 96085 96086 96087 96088 96089 96090 96091 96092 96093 96094 96095 96096 96097 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemServerAddressesModifyRequest
client = Client()
command = SystemServerAddressesModifyRequest(
web_server_cluster_public_fqdn=...,
application_server_cluster_primary_public_fqdn=...,
application_server_cluster_secondary_public_fqdn=...,
application_server_cluster_primary_private_fqdn=...,
application_server_cluster_secondary_private_fqdn=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemServerAddressesModifyRequest",
web_server_cluster_public_fqdn=...,
application_server_cluster_primary_public_fqdn=...,
application_server_cluster_secondary_public_fqdn=...,
application_server_cluster_primary_private_fqdn=...,
application_server_cluster_secondary_private_fqdn=...,
)
print(response)