SystemNetworkClassOfServiceGetAssignedServiceProviderListRequest
Bases: OCIRequest
Request a list of service providers that have a given Network Class of Service assigned. The response is either a SystemNetworkClassOfServiceGetAssignedServiceProviderListResponse or ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemNetworkClassOfServiceGetAssignedServiceProviderListRequest. The response contains a table of all Service Providers that have the given Network Class of Service assigned. The column headings are "Service Provider Id", "Service Provider Name" and "Is Enterprise".
Attributes:
service_provider_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 SystemNetworkClassOfServiceGetAssignedServiceProviderListRequest
client = Client()
command = SystemNetworkClassOfServiceGetAssignedServiceProviderListRequest(
name=...,
)
response = client.command(command)
print(response)