{-# 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.GuardDuty.UpdateIPSet
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Updates the IPSet specified by the IPSet ID.
module Amazonka.GuardDuty.UpdateIPSet
  ( -- * Creating a Request
    UpdateIPSet (..),
    newUpdateIPSet,

    -- * Request Lenses
    updateIPSet_location,
    updateIPSet_activate,
    updateIPSet_name,
    updateIPSet_detectorId,
    updateIPSet_ipSetId,

    -- * Destructuring the Response
    UpdateIPSetResponse (..),
    newUpdateIPSetResponse,

    -- * Response Lenses
    updateIPSetResponse_httpStatus,
  )
where

import qualified Amazonka.Core as Core
import Amazonka.GuardDuty.Types
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

-- | /See:/ 'newUpdateIPSet' smart constructor.
data UpdateIPSet = UpdateIPSet'
  { -- | The updated URI of the file that contains the IPSet. For example:
    -- https:\/\/s3.us-west-2.amazonaws.com\/my-bucket\/my-object-key.
    UpdateIPSet -> Maybe Text
location :: Prelude.Maybe Prelude.Text,
    -- | The updated Boolean value that specifies whether the IPSet is active or
    -- not.
    UpdateIPSet -> Maybe Bool
activate :: Prelude.Maybe Prelude.Bool,
    -- | The unique ID that specifies the IPSet that you want to update.
    UpdateIPSet -> Maybe Text
name :: Prelude.Maybe Prelude.Text,
    -- | The detectorID that specifies the GuardDuty service whose IPSet you want
    -- to update.
    UpdateIPSet -> Text
detectorId :: Prelude.Text,
    -- | The unique ID that specifies the IPSet that you want to update.
    UpdateIPSet -> Text
ipSetId :: Prelude.Text
  }
  deriving (UpdateIPSet -> UpdateIPSet -> Bool
(UpdateIPSet -> UpdateIPSet -> Bool)
-> (UpdateIPSet -> UpdateIPSet -> Bool) -> Eq UpdateIPSet
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateIPSet -> UpdateIPSet -> Bool
$c/= :: UpdateIPSet -> UpdateIPSet -> Bool
== :: UpdateIPSet -> UpdateIPSet -> Bool
$c== :: UpdateIPSet -> UpdateIPSet -> Bool
Prelude.Eq, ReadPrec [UpdateIPSet]
ReadPrec UpdateIPSet
Int -> ReadS UpdateIPSet
ReadS [UpdateIPSet]
(Int -> ReadS UpdateIPSet)
-> ReadS [UpdateIPSet]
-> ReadPrec UpdateIPSet
-> ReadPrec [UpdateIPSet]
-> Read UpdateIPSet
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateIPSet]
$creadListPrec :: ReadPrec [UpdateIPSet]
readPrec :: ReadPrec UpdateIPSet
$creadPrec :: ReadPrec UpdateIPSet
readList :: ReadS [UpdateIPSet]
$creadList :: ReadS [UpdateIPSet]
readsPrec :: Int -> ReadS UpdateIPSet
$creadsPrec :: Int -> ReadS UpdateIPSet
Prelude.Read, Int -> UpdateIPSet -> ShowS
[UpdateIPSet] -> ShowS
UpdateIPSet -> String
(Int -> UpdateIPSet -> ShowS)
-> (UpdateIPSet -> String)
-> ([UpdateIPSet] -> ShowS)
-> Show UpdateIPSet
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateIPSet] -> ShowS
$cshowList :: [UpdateIPSet] -> ShowS
show :: UpdateIPSet -> String
$cshow :: UpdateIPSet -> String
showsPrec :: Int -> UpdateIPSet -> ShowS
$cshowsPrec :: Int -> UpdateIPSet -> ShowS
Prelude.Show, (forall x. UpdateIPSet -> Rep UpdateIPSet x)
-> (forall x. Rep UpdateIPSet x -> UpdateIPSet)
-> Generic UpdateIPSet
forall x. Rep UpdateIPSet x -> UpdateIPSet
forall x. UpdateIPSet -> Rep UpdateIPSet x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateIPSet x -> UpdateIPSet
$cfrom :: forall x. UpdateIPSet -> Rep UpdateIPSet x
Prelude.Generic)

-- |
-- Create a value of 'UpdateIPSet' 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:
--
-- 'location', 'updateIPSet_location' - The updated URI of the file that contains the IPSet. For example:
-- https:\/\/s3.us-west-2.amazonaws.com\/my-bucket\/my-object-key.
--
-- 'activate', 'updateIPSet_activate' - The updated Boolean value that specifies whether the IPSet is active or
-- not.
--
-- 'name', 'updateIPSet_name' - The unique ID that specifies the IPSet that you want to update.
--
-- 'detectorId', 'updateIPSet_detectorId' - The detectorID that specifies the GuardDuty service whose IPSet you want
-- to update.
--
-- 'ipSetId', 'updateIPSet_ipSetId' - The unique ID that specifies the IPSet that you want to update.
newUpdateIPSet ::
  -- | 'detectorId'
  Prelude.Text ->
  -- | 'ipSetId'
  Prelude.Text ->
  UpdateIPSet
newUpdateIPSet :: Text -> Text -> UpdateIPSet
newUpdateIPSet Text
pDetectorId_ Text
pIpSetId_ =
  UpdateIPSet' :: Maybe Text
-> Maybe Bool -> Maybe Text -> Text -> Text -> UpdateIPSet
UpdateIPSet'
    { $sel:location:UpdateIPSet' :: Maybe Text
location = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:activate:UpdateIPSet' :: Maybe Bool
activate = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
      $sel:name:UpdateIPSet' :: Maybe Text
name = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:detectorId:UpdateIPSet' :: Text
detectorId = Text
pDetectorId_,
      $sel:ipSetId:UpdateIPSet' :: Text
ipSetId = Text
pIpSetId_
    }

-- | The updated URI of the file that contains the IPSet. For example:
-- https:\/\/s3.us-west-2.amazonaws.com\/my-bucket\/my-object-key.
updateIPSet_location :: Lens.Lens' UpdateIPSet (Prelude.Maybe Prelude.Text)
updateIPSet_location :: (Maybe Text -> f (Maybe Text)) -> UpdateIPSet -> f UpdateIPSet
updateIPSet_location = (UpdateIPSet -> Maybe Text)
-> (UpdateIPSet -> Maybe Text -> UpdateIPSet)
-> Lens UpdateIPSet UpdateIPSet (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {Maybe Text
location :: Maybe Text
$sel:location:UpdateIPSet' :: UpdateIPSet -> Maybe Text
location} -> Maybe Text
location) (\s :: UpdateIPSet
s@UpdateIPSet' {} Maybe Text
a -> UpdateIPSet
s {$sel:location:UpdateIPSet' :: Maybe Text
location = Maybe Text
a} :: UpdateIPSet)

-- | The updated Boolean value that specifies whether the IPSet is active or
-- not.
updateIPSet_activate :: Lens.Lens' UpdateIPSet (Prelude.Maybe Prelude.Bool)
updateIPSet_activate :: (Maybe Bool -> f (Maybe Bool)) -> UpdateIPSet -> f UpdateIPSet
updateIPSet_activate = (UpdateIPSet -> Maybe Bool)
-> (UpdateIPSet -> Maybe Bool -> UpdateIPSet)
-> Lens UpdateIPSet UpdateIPSet (Maybe Bool) (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {Maybe Bool
activate :: Maybe Bool
$sel:activate:UpdateIPSet' :: UpdateIPSet -> Maybe Bool
activate} -> Maybe Bool
activate) (\s :: UpdateIPSet
s@UpdateIPSet' {} Maybe Bool
a -> UpdateIPSet
s {$sel:activate:UpdateIPSet' :: Maybe Bool
activate = Maybe Bool
a} :: UpdateIPSet)

-- | The unique ID that specifies the IPSet that you want to update.
updateIPSet_name :: Lens.Lens' UpdateIPSet (Prelude.Maybe Prelude.Text)
updateIPSet_name :: (Maybe Text -> f (Maybe Text)) -> UpdateIPSet -> f UpdateIPSet
updateIPSet_name = (UpdateIPSet -> Maybe Text)
-> (UpdateIPSet -> Maybe Text -> UpdateIPSet)
-> Lens UpdateIPSet UpdateIPSet (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {Maybe Text
name :: Maybe Text
$sel:name:UpdateIPSet' :: UpdateIPSet -> Maybe Text
name} -> Maybe Text
name) (\s :: UpdateIPSet
s@UpdateIPSet' {} Maybe Text
a -> UpdateIPSet
s {$sel:name:UpdateIPSet' :: Maybe Text
name = Maybe Text
a} :: UpdateIPSet)

-- | The detectorID that specifies the GuardDuty service whose IPSet you want
-- to update.
updateIPSet_detectorId :: Lens.Lens' UpdateIPSet Prelude.Text
updateIPSet_detectorId :: (Text -> f Text) -> UpdateIPSet -> f UpdateIPSet
updateIPSet_detectorId = (UpdateIPSet -> Text)
-> (UpdateIPSet -> Text -> UpdateIPSet)
-> Lens UpdateIPSet UpdateIPSet Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {Text
detectorId :: Text
$sel:detectorId:UpdateIPSet' :: UpdateIPSet -> Text
detectorId} -> Text
detectorId) (\s :: UpdateIPSet
s@UpdateIPSet' {} Text
a -> UpdateIPSet
s {$sel:detectorId:UpdateIPSet' :: Text
detectorId = Text
a} :: UpdateIPSet)

-- | The unique ID that specifies the IPSet that you want to update.
updateIPSet_ipSetId :: Lens.Lens' UpdateIPSet Prelude.Text
updateIPSet_ipSetId :: (Text -> f Text) -> UpdateIPSet -> f UpdateIPSet
updateIPSet_ipSetId = (UpdateIPSet -> Text)
-> (UpdateIPSet -> Text -> UpdateIPSet)
-> Lens UpdateIPSet UpdateIPSet Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {Text
ipSetId :: Text
$sel:ipSetId:UpdateIPSet' :: UpdateIPSet -> Text
ipSetId} -> Text
ipSetId) (\s :: UpdateIPSet
s@UpdateIPSet' {} Text
a -> UpdateIPSet
s {$sel:ipSetId:UpdateIPSet' :: Text
ipSetId = Text
a} :: UpdateIPSet)

instance Core.AWSRequest UpdateIPSet where
  type AWSResponse UpdateIPSet = UpdateIPSetResponse
  request :: UpdateIPSet -> Request UpdateIPSet
request = Service -> UpdateIPSet -> Request UpdateIPSet
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy UpdateIPSet
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateIPSet)))
response =
    (Int
 -> ResponseHeaders
 -> ()
 -> Either String (AWSResponse UpdateIPSet))
-> Logger
-> Service
-> Proxy UpdateIPSet
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateIPSet)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
      ( \Int
s ResponseHeaders
h ()
x ->
          Int -> UpdateIPSetResponse
UpdateIPSetResponse'
            (Int -> UpdateIPSetResponse)
-> Either String Int -> Either String UpdateIPSetResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable UpdateIPSet

instance Prelude.NFData UpdateIPSet

instance Core.ToHeaders UpdateIPSet where
  toHeaders :: UpdateIPSet -> ResponseHeaders
toHeaders =
    ResponseHeaders -> UpdateIPSet -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
      ( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"Content-Type"
              HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Core.ToJSON UpdateIPSet where
  toJSON :: UpdateIPSet -> Value
toJSON UpdateIPSet' {Maybe Bool
Maybe Text
Text
ipSetId :: Text
detectorId :: Text
name :: Maybe Text
activate :: Maybe Bool
location :: Maybe Text
$sel:ipSetId:UpdateIPSet' :: UpdateIPSet -> Text
$sel:detectorId:UpdateIPSet' :: UpdateIPSet -> Text
$sel:name:UpdateIPSet' :: UpdateIPSet -> Maybe Text
$sel:activate:UpdateIPSet' :: UpdateIPSet -> Maybe Bool
$sel:location:UpdateIPSet' :: UpdateIPSet -> Maybe Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"location" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
location,
            (Text
"activate" Text -> Bool -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Bool -> Pair) -> Maybe Bool -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Bool
activate,
            (Text
"name" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
name
          ]
      )

instance Core.ToPath UpdateIPSet where
  toPath :: UpdateIPSet -> ByteString
toPath UpdateIPSet' {Maybe Bool
Maybe Text
Text
ipSetId :: Text
detectorId :: Text
name :: Maybe Text
activate :: Maybe Bool
location :: Maybe Text
$sel:ipSetId:UpdateIPSet' :: UpdateIPSet -> Text
$sel:detectorId:UpdateIPSet' :: UpdateIPSet -> Text
$sel:name:UpdateIPSet' :: UpdateIPSet -> Maybe Text
$sel:activate:UpdateIPSet' :: UpdateIPSet -> Maybe Bool
$sel:location:UpdateIPSet' :: UpdateIPSet -> Maybe Text
..} =
    [ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ ByteString
"/detector/",
        Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
detectorId,
        ByteString
"/ipset/",
        Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
ipSetId
      ]

instance Core.ToQuery UpdateIPSet where
  toQuery :: UpdateIPSet -> QueryString
toQuery = QueryString -> UpdateIPSet -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty

-- | /See:/ 'newUpdateIPSetResponse' smart constructor.
data UpdateIPSetResponse = UpdateIPSetResponse'
  { -- | The response's http status code.
    UpdateIPSetResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
(UpdateIPSetResponse -> UpdateIPSetResponse -> Bool)
-> (UpdateIPSetResponse -> UpdateIPSetResponse -> Bool)
-> Eq UpdateIPSetResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
$c/= :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
== :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
$c== :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
Prelude.Eq, ReadPrec [UpdateIPSetResponse]
ReadPrec UpdateIPSetResponse
Int -> ReadS UpdateIPSetResponse
ReadS [UpdateIPSetResponse]
(Int -> ReadS UpdateIPSetResponse)
-> ReadS [UpdateIPSetResponse]
-> ReadPrec UpdateIPSetResponse
-> ReadPrec [UpdateIPSetResponse]
-> Read UpdateIPSetResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateIPSetResponse]
$creadListPrec :: ReadPrec [UpdateIPSetResponse]
readPrec :: ReadPrec UpdateIPSetResponse
$creadPrec :: ReadPrec UpdateIPSetResponse
readList :: ReadS [UpdateIPSetResponse]
$creadList :: ReadS [UpdateIPSetResponse]
readsPrec :: Int -> ReadS UpdateIPSetResponse
$creadsPrec :: Int -> ReadS UpdateIPSetResponse
Prelude.Read, Int -> UpdateIPSetResponse -> ShowS
[UpdateIPSetResponse] -> ShowS
UpdateIPSetResponse -> String
(Int -> UpdateIPSetResponse -> ShowS)
-> (UpdateIPSetResponse -> String)
-> ([UpdateIPSetResponse] -> ShowS)
-> Show UpdateIPSetResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateIPSetResponse] -> ShowS
$cshowList :: [UpdateIPSetResponse] -> ShowS
show :: UpdateIPSetResponse -> String
$cshow :: UpdateIPSetResponse -> String
showsPrec :: Int -> UpdateIPSetResponse -> ShowS
$cshowsPrec :: Int -> UpdateIPSetResponse -> ShowS
Prelude.Show, (forall x. UpdateIPSetResponse -> Rep UpdateIPSetResponse x)
-> (forall x. Rep UpdateIPSetResponse x -> UpdateIPSetResponse)
-> Generic UpdateIPSetResponse
forall x. Rep UpdateIPSetResponse x -> UpdateIPSetResponse
forall x. UpdateIPSetResponse -> Rep UpdateIPSetResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateIPSetResponse x -> UpdateIPSetResponse
$cfrom :: forall x. UpdateIPSetResponse -> Rep UpdateIPSetResponse x
Prelude.Generic)

-- |
-- Create a value of 'UpdateIPSetResponse' 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:
--
-- 'httpStatus', 'updateIPSetResponse_httpStatus' - The response's http status code.
newUpdateIPSetResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  UpdateIPSetResponse
newUpdateIPSetResponse :: Int -> UpdateIPSetResponse
newUpdateIPSetResponse Int
pHttpStatus_ =
  UpdateIPSetResponse' :: Int -> UpdateIPSetResponse
UpdateIPSetResponse' {$sel:httpStatus:UpdateIPSetResponse' :: Int
httpStatus = Int
pHttpStatus_}

-- | The response's http status code.
updateIPSetResponse_httpStatus :: Lens.Lens' UpdateIPSetResponse Prelude.Int
updateIPSetResponse_httpStatus :: (Int -> f Int) -> UpdateIPSetResponse -> f UpdateIPSetResponse
updateIPSetResponse_httpStatus = (UpdateIPSetResponse -> Int)
-> (UpdateIPSetResponse -> Int -> UpdateIPSetResponse)
-> Lens UpdateIPSetResponse UpdateIPSetResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSetResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateIPSetResponse' :: UpdateIPSetResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateIPSetResponse
s@UpdateIPSetResponse' {} Int
a -> UpdateIPSetResponse
s {$sel:httpStatus:UpdateIPSetResponse' :: Int
httpStatus = Int
a} :: UpdateIPSetResponse)

instance Prelude.NFData UpdateIPSetResponse