deleteRegistrationCode method

Future<void> deleteRegistrationCode()

Deletes a CA certificate registration code.

May throw ThrottlingException. May throw ResourceNotFoundException. May throw UnauthorizedException. May throw ServiceUnavailableException. May throw InternalFailureException.

Implementation

Future<void> deleteRegistrationCode() async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/registrationcode',
    exceptionFnMap: _exceptionFns,
  );
}