SystemResourcePriorityGetRequest
Bases: OCIRequest
Get the system Resource Priority service attributes. The response is either SystemResourcePriorityGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemResourcePriorityGetRequest. The response contains the system Resource Priority service attributes.
Attributes:
send_resource_priority_to_network (bool):
resource_priority (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemResourcePriorityGetRequest
client = Client()
command = SystemResourcePriorityGetRequest()
response = client.command(command)
print(response)