{-# 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.DetachStaticIp -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Detaches a static IP from the Amazon Lightsail instance to which it is -- attached. module Amazonka.Lightsail.DetachStaticIp ( -- * Creating a Request DetachStaticIp (..), newDetachStaticIp, -- * Request Lenses detachStaticIp_staticIpName, -- * Destructuring the Response DetachStaticIpResponse (..), newDetachStaticIpResponse, -- * Response Lenses detachStaticIpResponse_operations, detachStaticIpResponse_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:/ 'newDetachStaticIp' smart constructor. data DetachStaticIp = DetachStaticIp' { -- | The name of the static IP to detach from the instance. staticIpName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DetachStaticIp' 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', 'detachStaticIp_staticIpName' - The name of the static IP to detach from the instance. newDetachStaticIp :: -- | 'staticIpName' Prelude.Text -> DetachStaticIp newDetachStaticIp pStaticIpName_ = DetachStaticIp' {staticIpName = pStaticIpName_} -- | The name of the static IP to detach from the instance. detachStaticIp_staticIpName :: Lens.Lens' DetachStaticIp Prelude.Text detachStaticIp_staticIpName = Lens.lens (\DetachStaticIp' {staticIpName} -> staticIpName) (\s@DetachStaticIp' {} a -> s {staticIpName = a} :: DetachStaticIp) instance Core.AWSRequest DetachStaticIp where type AWSResponse DetachStaticIp = DetachStaticIpResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> DetachStaticIpResponse' Prelude.<$> (x Data..?> "operations" Core..!@ Prelude.mempty) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DetachStaticIp where hashWithSalt _salt DetachStaticIp' {..} = _salt `Prelude.hashWithSalt` staticIpName instance Prelude.NFData DetachStaticIp where rnf DetachStaticIp' {..} = Prelude.rnf staticIpName instance Data.ToHeaders DetachStaticIp where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "Lightsail_20161128.DetachStaticIp" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON DetachStaticIp where toJSON DetachStaticIp' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("staticIpName" Data..= staticIpName)] ) instance Data.ToPath DetachStaticIp where toPath = Prelude.const "/" instance Data.ToQuery DetachStaticIp where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDetachStaticIpResponse' smart constructor. data DetachStaticIpResponse = DetachStaticIpResponse' { -- | 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 'DetachStaticIpResponse' 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', 'detachStaticIpResponse_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', 'detachStaticIpResponse_httpStatus' - The response's http status code. newDetachStaticIpResponse :: -- | 'httpStatus' Prelude.Int -> DetachStaticIpResponse newDetachStaticIpResponse pHttpStatus_ = DetachStaticIpResponse' { 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. detachStaticIpResponse_operations :: Lens.Lens' DetachStaticIpResponse (Prelude.Maybe [Operation]) detachStaticIpResponse_operations = Lens.lens (\DetachStaticIpResponse' {operations} -> operations) (\s@DetachStaticIpResponse' {} a -> s {operations = a} :: DetachStaticIpResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. detachStaticIpResponse_httpStatus :: Lens.Lens' DetachStaticIpResponse Prelude.Int detachStaticIpResponse_httpStatus = Lens.lens (\DetachStaticIpResponse' {httpStatus} -> httpStatus) (\s@DetachStaticIpResponse' {} a -> s {httpStatus = a} :: DetachStaticIpResponse) instance Prelude.NFData DetachStaticIpResponse where rnf DetachStaticIpResponse' {..} = Prelude.rnf operations `Prelude.seq` Prelude.rnf httpStatus