deleteDomainName method
Deletes a custom DomainName object.
May throw AccessDeniedException.
May throw BadRequestException.
May throw ConcurrentModificationException.
May throw InternalFailureException.
May throw NotFoundException.
Parameter domainName :
The domain name.
Implementation
Future<void> deleteDomainName({
required String domainName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/v1/domainnames/${Uri.encodeComponent(domainName)}',
exceptionFnMap: _exceptionFns,
);
}