deleteExtensionAssociation method
Deletes an extension association. This action doesn't delete extensions defined in the association.
May throw BadRequestException.
May throw InternalServerException.
May throw ResourceNotFoundException.
Parameter extensionAssociationId :
The ID of the extension association to delete.
Implementation
Future<void> deleteExtensionAssociation({
required String extensionAssociationId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/extensionassociations/${Uri.encodeComponent(extensionAssociationId)}',
exceptionFnMap: _exceptionFns,
);
}