UserResourcePriorityGetRequest
Bases: OCIRequest
Get the Resource Priority settings of a user. The response is either UserResourcePriorityGetResponse or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserResourcePriorityGetRequest. Contains the Resource Priority settings of a user. If useDefaultResourcePriority is true, parameter resourcePriority will not be returned.
Attributes:
use_default_resource_priority (bool):
default_resource_priority (str):
user_resource_priority (str):
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 UserResourcePriorityGetRequest
client = Client()
command = UserResourcePriorityGetRequest(
user_id=...,
)
response = client.command(command)
print(response)