SystemNetworkAdministratorParametersGetRequest
Bases: OCIRequest
Get the network administrator settings for the system. The response is either a SystemNetworkAdministratorParametersGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemNetworkAdministratorParametersGetRequest. The response contains the network administrator settings for the system.
Attributes:
enabled (bool):
cache_refresh_interval_in_minutes (int):
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 SystemNetworkAdministratorParametersGetRequest
client = Client()
command = SystemNetworkAdministratorParametersGetRequest()
response = client.command(command)
print(response)