GroupRoutePointGetFailoverPolicyRequest
Bases: OCIRequest
Get the route point failover policy. The response is either a GroupRoutePointGetFailoverPolicyResponse or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointGetFailoverPolicyRequest.
Attributes:
enable_failover_support (bool):
external_system (Optional[str]):
failover_phone_number (Optional[str]):
failover_status (str):
per_call_enable_failover_support (bool):
per_call_call_failure_timeout_seconds (int):
per_call_outbound_call_failure_timeout_seconds (int):
per_call_failover_phone_number (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
128576 128577 128578 128579 128580 128581 128582 128583 128584 128585 128586 128587 128588 128589 128590 128591 128592 128593 128594 128595 128596 128597 128598 128599 128600 128601 128602 128603 128604 128605 128606 128607 128608 128609 128610 128611 128612 128613 128614 128615 128616 128617 128618 128619 128620 128621 128622 128623 128624 128625 128626 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupRoutePointGetFailoverPolicyRequest
client = Client()
command = GroupRoutePointGetFailoverPolicyRequest(
service_user_id=...,
)
response = client.command(command)
print(response)