SystemCLIDDeliveryPrefixGetListRequest
Bases: OCIRequest
Request to get the list of provisioned prefixes in the system. The response is either a SystemCLIDDeliveryPrefixGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCLIDDeliveryPrefixGetListRequest.
Attributes:
prefix (Optional[List[str]]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCLIDDeliveryPrefixGetListRequest
client = Client()
command = SystemCLIDDeliveryPrefixGetListRequest()
response = client.command(command)
print(response)