{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.StorageGateway.RetrieveTapeArchive -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Retrieves an archived virtual tape from the virtual tape shelf (VTS) to -- a tape gateway. Virtual tapes archived in the VTS are not associated -- with any gateway. However after a tape is retrieved, it is associated -- with a gateway, even though it is also listed in the VTS, that is, -- archive. This operation is only supported in the tape gateway type. -- -- Once a tape is successfully retrieved to a gateway, it cannot be -- retrieved again to another gateway. You must archive the tape again -- before you can retrieve it to another gateway. This operation is only -- supported in the tape gateway type. module Amazonka.StorageGateway.RetrieveTapeArchive ( -- * Creating a Request RetrieveTapeArchive (..), newRetrieveTapeArchive, -- * Request Lenses retrieveTapeArchive_tapeARN, retrieveTapeArchive_gatewayARN, -- * Destructuring the Response RetrieveTapeArchiveResponse (..), newRetrieveTapeArchiveResponse, -- * Response Lenses retrieveTapeArchiveResponse_tapeARN, retrieveTapeArchiveResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.StorageGateway.Types -- | RetrieveTapeArchiveInput -- -- /See:/ 'newRetrieveTapeArchive' smart constructor. data RetrieveTapeArchive = RetrieveTapeArchive' { -- | The Amazon Resource Name (ARN) of the virtual tape you want to retrieve -- from the virtual tape shelf (VTS). tapeARN :: Prelude.Text, -- | The Amazon Resource Name (ARN) of the gateway you want to retrieve the -- virtual tape to. Use the ListGateways operation to return a list of -- gateways for your account and Amazon Web Services Region. -- -- You retrieve archived virtual tapes to only one gateway and the gateway -- must be a tape gateway. gatewayARN :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RetrieveTapeArchive' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'tapeARN', 'retrieveTapeArchive_tapeARN' - The Amazon Resource Name (ARN) of the virtual tape you want to retrieve -- from the virtual tape shelf (VTS). -- -- 'gatewayARN', 'retrieveTapeArchive_gatewayARN' - The Amazon Resource Name (ARN) of the gateway you want to retrieve the -- virtual tape to. Use the ListGateways operation to return a list of -- gateways for your account and Amazon Web Services Region. -- -- You retrieve archived virtual tapes to only one gateway and the gateway -- must be a tape gateway. newRetrieveTapeArchive :: -- | 'tapeARN' Prelude.Text -> -- | 'gatewayARN' Prelude.Text -> RetrieveTapeArchive newRetrieveTapeArchive pTapeARN_ pGatewayARN_ = RetrieveTapeArchive' { tapeARN = pTapeARN_, gatewayARN = pGatewayARN_ } -- | The Amazon Resource Name (ARN) of the virtual tape you want to retrieve -- from the virtual tape shelf (VTS). retrieveTapeArchive_tapeARN :: Lens.Lens' RetrieveTapeArchive Prelude.Text retrieveTapeArchive_tapeARN = Lens.lens (\RetrieveTapeArchive' {tapeARN} -> tapeARN) (\s@RetrieveTapeArchive' {} a -> s {tapeARN = a} :: RetrieveTapeArchive) -- | The Amazon Resource Name (ARN) of the gateway you want to retrieve the -- virtual tape to. Use the ListGateways operation to return a list of -- gateways for your account and Amazon Web Services Region. -- -- You retrieve archived virtual tapes to only one gateway and the gateway -- must be a tape gateway. retrieveTapeArchive_gatewayARN :: Lens.Lens' RetrieveTapeArchive Prelude.Text retrieveTapeArchive_gatewayARN = Lens.lens (\RetrieveTapeArchive' {gatewayARN} -> gatewayARN) (\s@RetrieveTapeArchive' {} a -> s {gatewayARN = a} :: RetrieveTapeArchive) instance Core.AWSRequest RetrieveTapeArchive where type AWSResponse RetrieveTapeArchive = RetrieveTapeArchiveResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> RetrieveTapeArchiveResponse' Prelude.<$> (x Data..?> "TapeARN") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable RetrieveTapeArchive where hashWithSalt _salt RetrieveTapeArchive' {..} = _salt `Prelude.hashWithSalt` tapeARN `Prelude.hashWithSalt` gatewayARN instance Prelude.NFData RetrieveTapeArchive where rnf RetrieveTapeArchive' {..} = Prelude.rnf tapeARN `Prelude.seq` Prelude.rnf gatewayARN instance Data.ToHeaders RetrieveTapeArchive where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "StorageGateway_20130630.RetrieveTapeArchive" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON RetrieveTapeArchive where toJSON RetrieveTapeArchive' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("TapeARN" Data..= tapeARN), Prelude.Just ("GatewayARN" Data..= gatewayARN) ] ) instance Data.ToPath RetrieveTapeArchive where toPath = Prelude.const "/" instance Data.ToQuery RetrieveTapeArchive where toQuery = Prelude.const Prelude.mempty -- | RetrieveTapeArchiveOutput -- -- /See:/ 'newRetrieveTapeArchiveResponse' smart constructor. data RetrieveTapeArchiveResponse = RetrieveTapeArchiveResponse' { -- | The Amazon Resource Name (ARN) of the retrieved virtual tape. tapeARN :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RetrieveTapeArchiveResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'tapeARN', 'retrieveTapeArchiveResponse_tapeARN' - The Amazon Resource Name (ARN) of the retrieved virtual tape. -- -- 'httpStatus', 'retrieveTapeArchiveResponse_httpStatus' - The response's http status code. newRetrieveTapeArchiveResponse :: -- | 'httpStatus' Prelude.Int -> RetrieveTapeArchiveResponse newRetrieveTapeArchiveResponse pHttpStatus_ = RetrieveTapeArchiveResponse' { tapeARN = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The Amazon Resource Name (ARN) of the retrieved virtual tape. retrieveTapeArchiveResponse_tapeARN :: Lens.Lens' RetrieveTapeArchiveResponse (Prelude.Maybe Prelude.Text) retrieveTapeArchiveResponse_tapeARN = Lens.lens (\RetrieveTapeArchiveResponse' {tapeARN} -> tapeARN) (\s@RetrieveTapeArchiveResponse' {} a -> s {tapeARN = a} :: RetrieveTapeArchiveResponse) -- | The response's http status code. retrieveTapeArchiveResponse_httpStatus :: Lens.Lens' RetrieveTapeArchiveResponse Prelude.Int retrieveTapeArchiveResponse_httpStatus = Lens.lens (\RetrieveTapeArchiveResponse' {httpStatus} -> httpStatus) (\s@RetrieveTapeArchiveResponse' {} a -> s {httpStatus = a} :: RetrieveTapeArchiveResponse) instance Prelude.NFData RetrieveTapeArchiveResponse where rnf RetrieveTapeArchiveResponse' {..} = Prelude.rnf tapeARN `Prelude.seq` Prelude.rnf httpStatus