amazonka-directconnect-2.0: gen/Amazonka/DirectConnect/DeleteBGPPeer.hs
{-# 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.DirectConnect.DeleteBGPPeer
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Deletes the specified BGP peer on the specified virtual interface with
-- the specified customer address and ASN.
--
-- You cannot delete the last BGP peer from a virtual interface.
module Amazonka.DirectConnect.DeleteBGPPeer
( -- * Creating a Request
DeleteBGPPeer (..),
newDeleteBGPPeer,
-- * Request Lenses
deleteBGPPeer_asn,
deleteBGPPeer_bgpPeerId,
deleteBGPPeer_customerAddress,
deleteBGPPeer_virtualInterfaceId,
-- * Destructuring the Response
DeleteBGPPeerResponse (..),
newDeleteBGPPeerResponse,
-- * Response Lenses
deleteBGPPeerResponse_virtualInterface,
deleteBGPPeerResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.DirectConnect.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newDeleteBGPPeer' smart constructor.
data DeleteBGPPeer = DeleteBGPPeer'
{ -- | The autonomous system (AS) number for Border Gateway Protocol (BGP)
-- configuration.
asn :: Prelude.Maybe Prelude.Int,
-- | The ID of the BGP peer.
bgpPeerId :: Prelude.Maybe Prelude.Text,
-- | The IP address assigned to the customer interface.
customerAddress :: Prelude.Maybe Prelude.Text,
-- | The ID of the virtual interface.
virtualInterfaceId :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteBGPPeer' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'asn', 'deleteBGPPeer_asn' - The autonomous system (AS) number for Border Gateway Protocol (BGP)
-- configuration.
--
-- 'bgpPeerId', 'deleteBGPPeer_bgpPeerId' - The ID of the BGP peer.
--
-- 'customerAddress', 'deleteBGPPeer_customerAddress' - The IP address assigned to the customer interface.
--
-- 'virtualInterfaceId', 'deleteBGPPeer_virtualInterfaceId' - The ID of the virtual interface.
newDeleteBGPPeer ::
DeleteBGPPeer
newDeleteBGPPeer =
DeleteBGPPeer'
{ asn = Prelude.Nothing,
bgpPeerId = Prelude.Nothing,
customerAddress = Prelude.Nothing,
virtualInterfaceId = Prelude.Nothing
}
-- | The autonomous system (AS) number for Border Gateway Protocol (BGP)
-- configuration.
deleteBGPPeer_asn :: Lens.Lens' DeleteBGPPeer (Prelude.Maybe Prelude.Int)
deleteBGPPeer_asn = Lens.lens (\DeleteBGPPeer' {asn} -> asn) (\s@DeleteBGPPeer' {} a -> s {asn = a} :: DeleteBGPPeer)
-- | The ID of the BGP peer.
deleteBGPPeer_bgpPeerId :: Lens.Lens' DeleteBGPPeer (Prelude.Maybe Prelude.Text)
deleteBGPPeer_bgpPeerId = Lens.lens (\DeleteBGPPeer' {bgpPeerId} -> bgpPeerId) (\s@DeleteBGPPeer' {} a -> s {bgpPeerId = a} :: DeleteBGPPeer)
-- | The IP address assigned to the customer interface.
deleteBGPPeer_customerAddress :: Lens.Lens' DeleteBGPPeer (Prelude.Maybe Prelude.Text)
deleteBGPPeer_customerAddress = Lens.lens (\DeleteBGPPeer' {customerAddress} -> customerAddress) (\s@DeleteBGPPeer' {} a -> s {customerAddress = a} :: DeleteBGPPeer)
-- | The ID of the virtual interface.
deleteBGPPeer_virtualInterfaceId :: Lens.Lens' DeleteBGPPeer (Prelude.Maybe Prelude.Text)
deleteBGPPeer_virtualInterfaceId = Lens.lens (\DeleteBGPPeer' {virtualInterfaceId} -> virtualInterfaceId) (\s@DeleteBGPPeer' {} a -> s {virtualInterfaceId = a} :: DeleteBGPPeer)
instance Core.AWSRequest DeleteBGPPeer where
type
AWSResponse DeleteBGPPeer =
DeleteBGPPeerResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
DeleteBGPPeerResponse'
Prelude.<$> (x Data..?> "virtualInterface")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable DeleteBGPPeer where
hashWithSalt _salt DeleteBGPPeer' {..} =
_salt
`Prelude.hashWithSalt` asn
`Prelude.hashWithSalt` bgpPeerId
`Prelude.hashWithSalt` customerAddress
`Prelude.hashWithSalt` virtualInterfaceId
instance Prelude.NFData DeleteBGPPeer where
rnf DeleteBGPPeer' {..} =
Prelude.rnf asn
`Prelude.seq` Prelude.rnf bgpPeerId
`Prelude.seq` Prelude.rnf customerAddress
`Prelude.seq` Prelude.rnf virtualInterfaceId
instance Data.ToHeaders DeleteBGPPeer where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "OvertureService.DeleteBGPPeer" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON DeleteBGPPeer where
toJSON DeleteBGPPeer' {..} =
Data.object
( Prelude.catMaybes
[ ("asn" Data..=) Prelude.<$> asn,
("bgpPeerId" Data..=) Prelude.<$> bgpPeerId,
("customerAddress" Data..=)
Prelude.<$> customerAddress,
("virtualInterfaceId" Data..=)
Prelude.<$> virtualInterfaceId
]
)
instance Data.ToPath DeleteBGPPeer where
toPath = Prelude.const "/"
instance Data.ToQuery DeleteBGPPeer where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newDeleteBGPPeerResponse' smart constructor.
data DeleteBGPPeerResponse = DeleteBGPPeerResponse'
{ -- | The virtual interface.
virtualInterface :: Prelude.Maybe VirtualInterface,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteBGPPeerResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'virtualInterface', 'deleteBGPPeerResponse_virtualInterface' - The virtual interface.
--
-- 'httpStatus', 'deleteBGPPeerResponse_httpStatus' - The response's http status code.
newDeleteBGPPeerResponse ::
-- | 'httpStatus'
Prelude.Int ->
DeleteBGPPeerResponse
newDeleteBGPPeerResponse pHttpStatus_ =
DeleteBGPPeerResponse'
{ virtualInterface =
Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The virtual interface.
deleteBGPPeerResponse_virtualInterface :: Lens.Lens' DeleteBGPPeerResponse (Prelude.Maybe VirtualInterface)
deleteBGPPeerResponse_virtualInterface = Lens.lens (\DeleteBGPPeerResponse' {virtualInterface} -> virtualInterface) (\s@DeleteBGPPeerResponse' {} a -> s {virtualInterface = a} :: DeleteBGPPeerResponse)
-- | The response's http status code.
deleteBGPPeerResponse_httpStatus :: Lens.Lens' DeleteBGPPeerResponse Prelude.Int
deleteBGPPeerResponse_httpStatus = Lens.lens (\DeleteBGPPeerResponse' {httpStatus} -> httpStatus) (\s@DeleteBGPPeerResponse' {} a -> s {httpStatus = a} :: DeleteBGPPeerResponse)
instance Prelude.NFData DeleteBGPPeerResponse where
rnf DeleteBGPPeerResponse' {..} =
Prelude.rnf virtualInterface
`Prelude.seq` Prelude.rnf httpStatus