ServiceProviderNetworkClassOfServiceGetAssignedListRequest
Bases: OCIRequest
Get a list of Network Classes of Service assigned to a service provider. The response is either a ServiceProviderNetworkClassOfServiceGetAssignedListResponse or an ErorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderNetworkClassOfServiceGetAssignedListRequest. Contains a table of all Network Classes of Service assigned to the service provider. 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 ServiceProviderNetworkClassOfServiceGetAssignedListRequest
client = Client()
command = ServiceProviderNetworkClassOfServiceGetAssignedListRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)