ServiceProviderIMRNUnassignListRequest
Bases: OCIRequest
Unassign a list of service provider DNs from the service provider IMRN pool. The DNs then become available for assignment to groups. It is possible to delete either: a single DN, or a list of DNs, or a range of DNs, or any combination thereof. The response is either SuccessResponse or ErrorResponse.
Attributes:
service_provider_id (str):
imrn (Optional[List[str]]):
imrn_range (Optional[List[DNRange]]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderIMRNUnassignListRequest
client = Client()
command = ServiceProviderIMRNUnassignListRequest(
service_provider_id=...,
imrn=...,
imrn_range=...,
)
response = client.command(command)
print(response)