{-# 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.StartGateway -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Starts a gateway that you previously shut down (see ShutdownGateway). -- After the gateway starts, you can then make other API calls, your -- applications can read from or write to the gateway\'s storage volumes -- and you will be able to take snapshot backups. -- -- When you make a request, you will get a 200 OK success response -- immediately. However, it might take some time for the gateway to be -- ready. You should call DescribeGatewayInformation and check the status -- before making any additional API calls. For more information, see -- ActivateGateway. -- -- To specify which gateway to start, use the Amazon Resource Name (ARN) of -- the gateway in your request. module Amazonka.StorageGateway.StartGateway ( -- * Creating a Request StartGateway (..), newStartGateway, -- * Request Lenses startGateway_gatewayARN, -- * Destructuring the Response StartGatewayResponse (..), newStartGatewayResponse, -- * Response Lenses startGatewayResponse_gatewayARN, startGatewayResponse_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 -- | A JSON object containing the Amazon Resource Name (ARN) of the gateway -- to start. -- -- /See:/ 'newStartGateway' smart constructor. data StartGateway = StartGateway' { gatewayARN :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'StartGateway' 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: -- -- 'gatewayARN', 'startGateway_gatewayARN' - Undocumented member. newStartGateway :: -- | 'gatewayARN' Prelude.Text -> StartGateway newStartGateway pGatewayARN_ = StartGateway' {gatewayARN = pGatewayARN_} -- | Undocumented member. startGateway_gatewayARN :: Lens.Lens' StartGateway Prelude.Text startGateway_gatewayARN = Lens.lens (\StartGateway' {gatewayARN} -> gatewayARN) (\s@StartGateway' {} a -> s {gatewayARN = a} :: StartGateway) instance Core.AWSRequest StartGateway where type AWSResponse StartGateway = StartGatewayResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> StartGatewayResponse' Prelude.<$> (x Data..?> "GatewayARN") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable StartGateway where hashWithSalt _salt StartGateway' {..} = _salt `Prelude.hashWithSalt` gatewayARN instance Prelude.NFData StartGateway where rnf StartGateway' {..} = Prelude.rnf gatewayARN instance Data.ToHeaders StartGateway where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "StorageGateway_20130630.StartGateway" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON StartGateway where toJSON StartGateway' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("GatewayARN" Data..= gatewayARN)] ) instance Data.ToPath StartGateway where toPath = Prelude.const "/" instance Data.ToQuery StartGateway where toQuery = Prelude.const Prelude.mempty -- | A JSON object containing the Amazon Resource Name (ARN) of the gateway -- that was restarted. -- -- /See:/ 'newStartGatewayResponse' smart constructor. data StartGatewayResponse = StartGatewayResponse' { gatewayARN :: 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 'StartGatewayResponse' 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: -- -- 'gatewayARN', 'startGatewayResponse_gatewayARN' - Undocumented member. -- -- 'httpStatus', 'startGatewayResponse_httpStatus' - The response's http status code. newStartGatewayResponse :: -- | 'httpStatus' Prelude.Int -> StartGatewayResponse newStartGatewayResponse pHttpStatus_ = StartGatewayResponse' { gatewayARN = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Undocumented member. startGatewayResponse_gatewayARN :: Lens.Lens' StartGatewayResponse (Prelude.Maybe Prelude.Text) startGatewayResponse_gatewayARN = Lens.lens (\StartGatewayResponse' {gatewayARN} -> gatewayARN) (\s@StartGatewayResponse' {} a -> s {gatewayARN = a} :: StartGatewayResponse) -- | The response's http status code. startGatewayResponse_httpStatus :: Lens.Lens' StartGatewayResponse Prelude.Int startGatewayResponse_httpStatus = Lens.lens (\StartGatewayResponse' {httpStatus} -> httpStatus) (\s@StartGatewayResponse' {} a -> s {httpStatus = a} :: StartGatewayResponse) instance Prelude.NFData StartGatewayResponse where rnf StartGatewayResponse' {..} = Prelude.rnf gatewayARN `Prelude.seq` Prelude.rnf httpStatus