{-# 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.Lightsail.AllocateStaticIp -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Allocates a static IP address. module Amazonka.Lightsail.AllocateStaticIp ( -- * Creating a Request AllocateStaticIp (..), newAllocateStaticIp, -- * Request Lenses allocateStaticIp_staticIpName, -- * Destructuring the Response AllocateStaticIpResponse (..), newAllocateStaticIpResponse, -- * Response Lenses allocateStaticIpResponse_operations, allocateStaticIpResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Lightsail.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newAllocateStaticIp' smart constructor. data AllocateStaticIp = AllocateStaticIp' { -- | The name of the static IP address. staticIpName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AllocateStaticIp' 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: -- -- 'staticIpName', 'allocateStaticIp_staticIpName' - The name of the static IP address. newAllocateStaticIp :: -- | 'staticIpName' Prelude.Text -> AllocateStaticIp newAllocateStaticIp pStaticIpName_ = AllocateStaticIp' {staticIpName = pStaticIpName_} -- | The name of the static IP address. allocateStaticIp_staticIpName :: Lens.Lens' AllocateStaticIp Prelude.Text allocateStaticIp_staticIpName = Lens.lens (\AllocateStaticIp' {staticIpName} -> staticIpName) (\s@AllocateStaticIp' {} a -> s {staticIpName = a} :: AllocateStaticIp) instance Core.AWSRequest AllocateStaticIp where type AWSResponse AllocateStaticIp = AllocateStaticIpResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> AllocateStaticIpResponse' Prelude.<$> (x Data..?> "operations" Core..!@ Prelude.mempty) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable AllocateStaticIp where hashWithSalt _salt AllocateStaticIp' {..} = _salt `Prelude.hashWithSalt` staticIpName instance Prelude.NFData AllocateStaticIp where rnf AllocateStaticIp' {..} = Prelude.rnf staticIpName instance Data.ToHeaders AllocateStaticIp where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "Lightsail_20161128.AllocateStaticIp" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON AllocateStaticIp where toJSON AllocateStaticIp' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("staticIpName" Data..= staticIpName)] ) instance Data.ToPath AllocateStaticIp where toPath = Prelude.const "/" instance Data.ToQuery AllocateStaticIp where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newAllocateStaticIpResponse' smart constructor. data AllocateStaticIpResponse = AllocateStaticIpResponse' { -- | An array of objects that describe the result of the action, such as the -- status of the request, the timestamp of the request, and the resources -- affected by the request. operations :: Prelude.Maybe [Operation], -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AllocateStaticIpResponse' 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: -- -- 'operations', 'allocateStaticIpResponse_operations' - An array of objects that describe the result of the action, such as the -- status of the request, the timestamp of the request, and the resources -- affected by the request. -- -- 'httpStatus', 'allocateStaticIpResponse_httpStatus' - The response's http status code. newAllocateStaticIpResponse :: -- | 'httpStatus' Prelude.Int -> AllocateStaticIpResponse newAllocateStaticIpResponse pHttpStatus_ = AllocateStaticIpResponse' { operations = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | An array of objects that describe the result of the action, such as the -- status of the request, the timestamp of the request, and the resources -- affected by the request. allocateStaticIpResponse_operations :: Lens.Lens' AllocateStaticIpResponse (Prelude.Maybe [Operation]) allocateStaticIpResponse_operations = Lens.lens (\AllocateStaticIpResponse' {operations} -> operations) (\s@AllocateStaticIpResponse' {} a -> s {operations = a} :: AllocateStaticIpResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. allocateStaticIpResponse_httpStatus :: Lens.Lens' AllocateStaticIpResponse Prelude.Int allocateStaticIpResponse_httpStatus = Lens.lens (\AllocateStaticIpResponse' {httpStatus} -> httpStatus) (\s@AllocateStaticIpResponse' {} a -> s {httpStatus = a} :: AllocateStaticIpResponse) instance Prelude.NFData AllocateStaticIpResponse where rnf AllocateStaticIpResponse' {..} = Prelude.rnf operations `Prelude.seq` Prelude.rnf httpStatus