ResellerNetworkClassOfServiceGetAssignedListRequest
Bases: OCIRequest
Get a list of Network Classes of Service assigned to a reseller. The response is either a ResellerNetworkClassOfServiceGetAssignedListResponse or an ErorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ResellerNetworkClassOfServiceGetAssignedListRequest. Contains a table of all Network Classes of Service assigned to the reseller. The column headings are: "Name", "Description" and "Default".
Attributes:
network_class_of_service_table (OCITable):
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 ResellerNetworkClassOfServiceGetAssignedListRequest
client = Client()
command = ResellerNetworkClassOfServiceGetAssignedListRequest(
reseller_id=...,
)
response = client.command(command)
print(response)