ServiceProviderDnGetStatusListRequest
Bases: OCIRequest
Validates DNs given in the request The response is ServiceProviderDnGetStatusListResponse.
Attributes:
service_provider_id (str):
dn (List[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderDnGetStatusListRequest.
Attributes:
dn_status (Optional[List[DNValidationStatusMessage]]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderDnGetStatusListRequest
client = Client()
command = ServiceProviderDnGetStatusListRequest(
service_provider_id=...,
dn=...,
)
response = client.command(command)
print(response)