{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Network.AWS.StorageGateway.DeleteTapeArchive -- Copyright : (c) 2013-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Deletes the specified virtual tape from the virtual tape shelf (VTS). -- -- module Network.AWS.StorageGateway.DeleteTapeArchive ( -- * Creating a Request deleteTapeArchive , DeleteTapeArchive -- * Request Lenses , dtaTapeARN -- * Destructuring the Response , deleteTapeArchiveResponse , DeleteTapeArchiveResponse -- * Response Lenses , dtatrsTapeARN , dtatrsResponseStatus ) where import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response import Network.AWS.StorageGateway.Types import Network.AWS.StorageGateway.Types.Product -- | DeleteTapeArchiveInput -- -- -- -- /See:/ 'deleteTapeArchive' smart constructor. newtype DeleteTapeArchive = DeleteTapeArchive' { _dtaTapeARN :: Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'DeleteTapeArchive' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dtaTapeARN' - The Amazon Resource Name (ARN) of the virtual tape to delete from the virtual tape shelf (VTS). deleteTapeArchive :: Text -- ^ 'dtaTapeARN' -> DeleteTapeArchive deleteTapeArchive pTapeARN_ = DeleteTapeArchive' { _dtaTapeARN = pTapeARN_ } -- | The Amazon Resource Name (ARN) of the virtual tape to delete from the virtual tape shelf (VTS). dtaTapeARN :: Lens' DeleteTapeArchive Text dtaTapeARN = lens _dtaTapeARN (\ s a -> s{_dtaTapeARN = a}); instance AWSRequest DeleteTapeArchive where type Rs DeleteTapeArchive = DeleteTapeArchiveResponse request = postJSON storageGateway response = receiveJSON (\ s h x -> DeleteTapeArchiveResponse' <$> (x .?> "TapeARN") <*> (pure (fromEnum s))) instance Hashable DeleteTapeArchive instance NFData DeleteTapeArchive instance ToHeaders DeleteTapeArchive where toHeaders = const (mconcat ["X-Amz-Target" =# ("StorageGateway_20130630.DeleteTapeArchive" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON DeleteTapeArchive where toJSON DeleteTapeArchive'{..} = object (catMaybes [Just ("TapeARN" .= _dtaTapeARN)]) instance ToPath DeleteTapeArchive where toPath = const "/" instance ToQuery DeleteTapeArchive where toQuery = const mempty -- | DeleteTapeArchiveOutput -- -- -- -- /See:/ 'deleteTapeArchiveResponse' smart constructor. data DeleteTapeArchiveResponse = DeleteTapeArchiveResponse' { _dtatrsTapeARN :: !(Maybe Text) , _dtatrsResponseStatus :: !Int } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'DeleteTapeArchiveResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dtatrsTapeARN' - The Amazon Resource Name (ARN) of the virtual tape that was deleted from the virtual tape shelf (VTS). -- -- * 'dtatrsResponseStatus' - -- | The response status code. deleteTapeArchiveResponse :: Int -- ^ 'dtatrsResponseStatus' -> DeleteTapeArchiveResponse deleteTapeArchiveResponse pResponseStatus_ = DeleteTapeArchiveResponse' { _dtatrsTapeARN = Nothing , _dtatrsResponseStatus = pResponseStatus_ } -- | The Amazon Resource Name (ARN) of the virtual tape that was deleted from the virtual tape shelf (VTS). dtatrsTapeARN :: Lens' DeleteTapeArchiveResponse (Maybe Text) dtatrsTapeARN = lens _dtatrsTapeARN (\ s a -> s{_dtatrsTapeARN = a}); -- | -- | The response status code. dtatrsResponseStatus :: Lens' DeleteTapeArchiveResponse Int dtatrsResponseStatus = lens _dtatrsResponseStatus (\ s a -> s{_dtatrsResponseStatus = a}); instance NFData DeleteTapeArchiveResponse