ResellerResourcePriorityGetRequest
Bases: OCIRequest
Get the Resource Priority service attributes for the reseller. The response is either ResellerResourcePriorityGetResponse or ErrorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ResellerResourcePriorityGetRequest. The response contains the reseller Resource Priority service attributes. If useSystemSettings is true, the parameters sendResourcePriorityToNetwork and resourcePriority will not be returned in the response.
Attributes:
use_system_settings (bool):
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 ResellerResourcePriorityGetRequest
client = Client()
command = ResellerResourcePriorityGetRequest(
reseller_id=...,
)
response = client.command(command)
print(response)