SystemEmergencyCallDDoSProtectionGetRequest
Bases: OCIRequest
Get the system Emergency Call DDos Protection configurations. The response is either SystemEmergencyCallDDoSProtectionGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemEmergencyCallDDoSProtectionGetRequest.
Attributes:
enabled (bool):
sample_interval_seconds (int):
protection_rate (Optional[int]):
protection_action (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemEmergencyCallDDoSProtectionGetRequest
client = Client()
command = SystemEmergencyCallDDoSProtectionGetRequest()
response = client.command(command)
print(response)