deleteWirelessGateway method
Deletes a wireless gateway.
-
If you specify a
GatewayEuivalue that already exists. -
If you used a
ClientRequestTokenwith the same parameters within the last 10 minutes.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter id :
The ID of the resource to delete.
Implementation
Future<void> deleteWirelessGateway({
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/wireless-gateways/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
}