{-# 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 #-}
module Amazonka.WAF.UpdateWebACL
(
UpdateWebACL (..),
newUpdateWebACL,
updateWebACL_updates,
updateWebACL_defaultAction,
updateWebACL_webACLId,
updateWebACL_changeToken,
UpdateWebACLResponse (..),
newUpdateWebACLResponse,
updateWebACLResponse_changeToken,
updateWebACLResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.WAF.Types
data UpdateWebACL = UpdateWebACL'
{
UpdateWebACL -> Maybe [WebACLUpdate]
updates :: Prelude.Maybe [WebACLUpdate],
UpdateWebACL -> Maybe WafAction
defaultAction :: Prelude.Maybe WafAction,
UpdateWebACL -> Text
webACLId :: Prelude.Text,
UpdateWebACL -> Text
changeToken :: Prelude.Text
}
deriving (UpdateWebACL -> UpdateWebACL -> Bool
(UpdateWebACL -> UpdateWebACL -> Bool)
-> (UpdateWebACL -> UpdateWebACL -> Bool) -> Eq UpdateWebACL
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateWebACL -> UpdateWebACL -> Bool
$c/= :: UpdateWebACL -> UpdateWebACL -> Bool
== :: UpdateWebACL -> UpdateWebACL -> Bool
$c== :: UpdateWebACL -> UpdateWebACL -> Bool
Prelude.Eq, ReadPrec [UpdateWebACL]
ReadPrec UpdateWebACL
Int -> ReadS UpdateWebACL
ReadS [UpdateWebACL]
(Int -> ReadS UpdateWebACL)
-> ReadS [UpdateWebACL]
-> ReadPrec UpdateWebACL
-> ReadPrec [UpdateWebACL]
-> Read UpdateWebACL
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateWebACL]
$creadListPrec :: ReadPrec [UpdateWebACL]
readPrec :: ReadPrec UpdateWebACL
$creadPrec :: ReadPrec UpdateWebACL
readList :: ReadS [UpdateWebACL]
$creadList :: ReadS [UpdateWebACL]
readsPrec :: Int -> ReadS UpdateWebACL
$creadsPrec :: Int -> ReadS UpdateWebACL
Prelude.Read, Int -> UpdateWebACL -> ShowS
[UpdateWebACL] -> ShowS
UpdateWebACL -> String
(Int -> UpdateWebACL -> ShowS)
-> (UpdateWebACL -> String)
-> ([UpdateWebACL] -> ShowS)
-> Show UpdateWebACL
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateWebACL] -> ShowS
$cshowList :: [UpdateWebACL] -> ShowS
show :: UpdateWebACL -> String
$cshow :: UpdateWebACL -> String
showsPrec :: Int -> UpdateWebACL -> ShowS
$cshowsPrec :: Int -> UpdateWebACL -> ShowS
Prelude.Show, (forall x. UpdateWebACL -> Rep UpdateWebACL x)
-> (forall x. Rep UpdateWebACL x -> UpdateWebACL)
-> Generic UpdateWebACL
forall x. Rep UpdateWebACL x -> UpdateWebACL
forall x. UpdateWebACL -> Rep UpdateWebACL x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateWebACL x -> UpdateWebACL
$cfrom :: forall x. UpdateWebACL -> Rep UpdateWebACL x
Prelude.Generic)
newUpdateWebACL ::
Prelude.Text ->
Prelude.Text ->
UpdateWebACL
newUpdateWebACL :: Text -> Text -> UpdateWebACL
newUpdateWebACL Text
pWebACLId_ Text
pChangeToken_ =
UpdateWebACL' :: Maybe [WebACLUpdate]
-> Maybe WafAction -> Text -> Text -> UpdateWebACL
UpdateWebACL'
{ $sel:updates:UpdateWebACL' :: Maybe [WebACLUpdate]
updates = Maybe [WebACLUpdate]
forall a. Maybe a
Prelude.Nothing,
$sel:defaultAction:UpdateWebACL' :: Maybe WafAction
defaultAction = Maybe WafAction
forall a. Maybe a
Prelude.Nothing,
$sel:webACLId:UpdateWebACL' :: Text
webACLId = Text
pWebACLId_,
$sel:changeToken:UpdateWebACL' :: Text
changeToken = Text
pChangeToken_
}
updateWebACL_updates :: Lens.Lens' UpdateWebACL (Prelude.Maybe [WebACLUpdate])
updateWebACL_updates :: (Maybe [WebACLUpdate] -> f (Maybe [WebACLUpdate]))
-> UpdateWebACL -> f UpdateWebACL
updateWebACL_updates = (UpdateWebACL -> Maybe [WebACLUpdate])
-> (UpdateWebACL -> Maybe [WebACLUpdate] -> UpdateWebACL)
-> Lens
UpdateWebACL
UpdateWebACL
(Maybe [WebACLUpdate])
(Maybe [WebACLUpdate])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateWebACL' {Maybe [WebACLUpdate]
updates :: Maybe [WebACLUpdate]
$sel:updates:UpdateWebACL' :: UpdateWebACL -> Maybe [WebACLUpdate]
updates} -> Maybe [WebACLUpdate]
updates) (\s :: UpdateWebACL
s@UpdateWebACL' {} Maybe [WebACLUpdate]
a -> UpdateWebACL
s {$sel:updates:UpdateWebACL' :: Maybe [WebACLUpdate]
updates = Maybe [WebACLUpdate]
a} :: UpdateWebACL) ((Maybe [WebACLUpdate] -> f (Maybe [WebACLUpdate]))
-> UpdateWebACL -> f UpdateWebACL)
-> ((Maybe [WebACLUpdate] -> f (Maybe [WebACLUpdate]))
-> Maybe [WebACLUpdate] -> f (Maybe [WebACLUpdate]))
-> (Maybe [WebACLUpdate] -> f (Maybe [WebACLUpdate]))
-> UpdateWebACL
-> f UpdateWebACL
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [WebACLUpdate] [WebACLUpdate] [WebACLUpdate] [WebACLUpdate]
-> Iso
(Maybe [WebACLUpdate])
(Maybe [WebACLUpdate])
(Maybe [WebACLUpdate])
(Maybe [WebACLUpdate])
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso [WebACLUpdate] [WebACLUpdate] [WebACLUpdate] [WebACLUpdate]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
updateWebACL_defaultAction :: Lens.Lens' UpdateWebACL (Prelude.Maybe WafAction)
updateWebACL_defaultAction :: (Maybe WafAction -> f (Maybe WafAction))
-> UpdateWebACL -> f UpdateWebACL
updateWebACL_defaultAction = (UpdateWebACL -> Maybe WafAction)
-> (UpdateWebACL -> Maybe WafAction -> UpdateWebACL)
-> Lens
UpdateWebACL UpdateWebACL (Maybe WafAction) (Maybe WafAction)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateWebACL' {Maybe WafAction
defaultAction :: Maybe WafAction
$sel:defaultAction:UpdateWebACL' :: UpdateWebACL -> Maybe WafAction
defaultAction} -> Maybe WafAction
defaultAction) (\s :: UpdateWebACL
s@UpdateWebACL' {} Maybe WafAction
a -> UpdateWebACL
s {$sel:defaultAction:UpdateWebACL' :: Maybe WafAction
defaultAction = Maybe WafAction
a} :: UpdateWebACL)
updateWebACL_webACLId :: Lens.Lens' UpdateWebACL Prelude.Text
updateWebACL_webACLId :: (Text -> f Text) -> UpdateWebACL -> f UpdateWebACL
updateWebACL_webACLId = (UpdateWebACL -> Text)
-> (UpdateWebACL -> Text -> UpdateWebACL)
-> Lens UpdateWebACL UpdateWebACL Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateWebACL' {Text
webACLId :: Text
$sel:webACLId:UpdateWebACL' :: UpdateWebACL -> Text
webACLId} -> Text
webACLId) (\s :: UpdateWebACL
s@UpdateWebACL' {} Text
a -> UpdateWebACL
s {$sel:webACLId:UpdateWebACL' :: Text
webACLId = Text
a} :: UpdateWebACL)
updateWebACL_changeToken :: Lens.Lens' UpdateWebACL Prelude.Text
updateWebACL_changeToken :: (Text -> f Text) -> UpdateWebACL -> f UpdateWebACL
updateWebACL_changeToken = (UpdateWebACL -> Text)
-> (UpdateWebACL -> Text -> UpdateWebACL)
-> Lens UpdateWebACL UpdateWebACL Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateWebACL' {Text
changeToken :: Text
$sel:changeToken:UpdateWebACL' :: UpdateWebACL -> Text
changeToken} -> Text
changeToken) (\s :: UpdateWebACL
s@UpdateWebACL' {} Text
a -> UpdateWebACL
s {$sel:changeToken:UpdateWebACL' :: Text
changeToken = Text
a} :: UpdateWebACL)
instance Core.AWSRequest UpdateWebACL where
type AWSResponse UpdateWebACL = UpdateWebACLResponse
request :: UpdateWebACL -> Request UpdateWebACL
request = Service -> UpdateWebACL -> Request UpdateWebACL
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdateWebACL
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateWebACL)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse UpdateWebACL))
-> Logger
-> Service
-> Proxy UpdateWebACL
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateWebACL)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
( \Int
s ResponseHeaders
h Object
x ->
Maybe Text -> Int -> UpdateWebACLResponse
UpdateWebACLResponse'
(Maybe Text -> Int -> UpdateWebACLResponse)
-> Either String (Maybe Text)
-> Either String (Int -> UpdateWebACLResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"ChangeToken")
Either String (Int -> UpdateWebACLResponse)
-> Either String Int -> Either String UpdateWebACLResponse
forall (f :: * -> *) a b. Applicative f => 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 UpdateWebACL
instance Prelude.NFData UpdateWebACL
instance Core.ToHeaders UpdateWebACL where
toHeaders :: UpdateWebACL -> ResponseHeaders
toHeaders =
ResponseHeaders -> UpdateWebACL -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"AWSWAF_20150824.UpdateWebACL" ::
Prelude.ByteString
),
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 UpdateWebACL where
toJSON :: UpdateWebACL -> Value
toJSON UpdateWebACL' {Maybe [WebACLUpdate]
Maybe WafAction
Text
changeToken :: Text
webACLId :: Text
defaultAction :: Maybe WafAction
updates :: Maybe [WebACLUpdate]
$sel:changeToken:UpdateWebACL' :: UpdateWebACL -> Text
$sel:webACLId:UpdateWebACL' :: UpdateWebACL -> Text
$sel:defaultAction:UpdateWebACL' :: UpdateWebACL -> Maybe WafAction
$sel:updates:UpdateWebACL' :: UpdateWebACL -> Maybe [WebACLUpdate]
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"Updates" Text -> [WebACLUpdate] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) ([WebACLUpdate] -> Pair) -> Maybe [WebACLUpdate] -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [WebACLUpdate]
updates,
(Text
"DefaultAction" Text -> WafAction -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (WafAction -> Pair) -> Maybe WafAction -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe WafAction
defaultAction,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"WebACLId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
webACLId),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"ChangeToken" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
changeToken)
]
)
instance Core.ToPath UpdateWebACL where
toPath :: UpdateWebACL -> ByteString
toPath = ByteString -> UpdateWebACL -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery UpdateWebACL where
toQuery :: UpdateWebACL -> QueryString
toQuery = QueryString -> UpdateWebACL -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdateWebACLResponse = UpdateWebACLResponse'
{
UpdateWebACLResponse -> Maybe Text
changeToken :: Prelude.Maybe Prelude.Text,
UpdateWebACLResponse -> Int
httpStatus :: Prelude.Int
}
deriving (UpdateWebACLResponse -> UpdateWebACLResponse -> Bool
(UpdateWebACLResponse -> UpdateWebACLResponse -> Bool)
-> (UpdateWebACLResponse -> UpdateWebACLResponse -> Bool)
-> Eq UpdateWebACLResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateWebACLResponse -> UpdateWebACLResponse -> Bool
$c/= :: UpdateWebACLResponse -> UpdateWebACLResponse -> Bool
== :: UpdateWebACLResponse -> UpdateWebACLResponse -> Bool
$c== :: UpdateWebACLResponse -> UpdateWebACLResponse -> Bool
Prelude.Eq, ReadPrec [UpdateWebACLResponse]
ReadPrec UpdateWebACLResponse
Int -> ReadS UpdateWebACLResponse
ReadS [UpdateWebACLResponse]
(Int -> ReadS UpdateWebACLResponse)
-> ReadS [UpdateWebACLResponse]
-> ReadPrec UpdateWebACLResponse
-> ReadPrec [UpdateWebACLResponse]
-> Read UpdateWebACLResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateWebACLResponse]
$creadListPrec :: ReadPrec [UpdateWebACLResponse]
readPrec :: ReadPrec UpdateWebACLResponse
$creadPrec :: ReadPrec UpdateWebACLResponse
readList :: ReadS [UpdateWebACLResponse]
$creadList :: ReadS [UpdateWebACLResponse]
readsPrec :: Int -> ReadS UpdateWebACLResponse
$creadsPrec :: Int -> ReadS UpdateWebACLResponse
Prelude.Read, Int -> UpdateWebACLResponse -> ShowS
[UpdateWebACLResponse] -> ShowS
UpdateWebACLResponse -> String
(Int -> UpdateWebACLResponse -> ShowS)
-> (UpdateWebACLResponse -> String)
-> ([UpdateWebACLResponse] -> ShowS)
-> Show UpdateWebACLResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateWebACLResponse] -> ShowS
$cshowList :: [UpdateWebACLResponse] -> ShowS
show :: UpdateWebACLResponse -> String
$cshow :: UpdateWebACLResponse -> String
showsPrec :: Int -> UpdateWebACLResponse -> ShowS
$cshowsPrec :: Int -> UpdateWebACLResponse -> ShowS
Prelude.Show, (forall x. UpdateWebACLResponse -> Rep UpdateWebACLResponse x)
-> (forall x. Rep UpdateWebACLResponse x -> UpdateWebACLResponse)
-> Generic UpdateWebACLResponse
forall x. Rep UpdateWebACLResponse x -> UpdateWebACLResponse
forall x. UpdateWebACLResponse -> Rep UpdateWebACLResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateWebACLResponse x -> UpdateWebACLResponse
$cfrom :: forall x. UpdateWebACLResponse -> Rep UpdateWebACLResponse x
Prelude.Generic)
newUpdateWebACLResponse ::
Prelude.Int ->
UpdateWebACLResponse
newUpdateWebACLResponse :: Int -> UpdateWebACLResponse
newUpdateWebACLResponse Int
pHttpStatus_ =
UpdateWebACLResponse' :: Maybe Text -> Int -> UpdateWebACLResponse
UpdateWebACLResponse'
{ $sel:changeToken:UpdateWebACLResponse' :: Maybe Text
changeToken =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:UpdateWebACLResponse' :: Int
httpStatus = Int
pHttpStatus_
}
updateWebACLResponse_changeToken :: Lens.Lens' UpdateWebACLResponse (Prelude.Maybe Prelude.Text)
updateWebACLResponse_changeToken :: (Maybe Text -> f (Maybe Text))
-> UpdateWebACLResponse -> f UpdateWebACLResponse
updateWebACLResponse_changeToken = (UpdateWebACLResponse -> Maybe Text)
-> (UpdateWebACLResponse -> Maybe Text -> UpdateWebACLResponse)
-> Lens
UpdateWebACLResponse UpdateWebACLResponse (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateWebACLResponse' {Maybe Text
changeToken :: Maybe Text
$sel:changeToken:UpdateWebACLResponse' :: UpdateWebACLResponse -> Maybe Text
changeToken} -> Maybe Text
changeToken) (\s :: UpdateWebACLResponse
s@UpdateWebACLResponse' {} Maybe Text
a -> UpdateWebACLResponse
s {$sel:changeToken:UpdateWebACLResponse' :: Maybe Text
changeToken = Maybe Text
a} :: UpdateWebACLResponse)
updateWebACLResponse_httpStatus :: Lens.Lens' UpdateWebACLResponse Prelude.Int
updateWebACLResponse_httpStatus :: (Int -> f Int) -> UpdateWebACLResponse -> f UpdateWebACLResponse
updateWebACLResponse_httpStatus = (UpdateWebACLResponse -> Int)
-> (UpdateWebACLResponse -> Int -> UpdateWebACLResponse)
-> Lens UpdateWebACLResponse UpdateWebACLResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateWebACLResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateWebACLResponse' :: UpdateWebACLResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateWebACLResponse
s@UpdateWebACLResponse' {} Int
a -> UpdateWebACLResponse
s {$sel:httpStatus:UpdateWebACLResponse' :: Int
httpStatus = Int
a} :: UpdateWebACLResponse)
instance Prelude.NFData UpdateWebACLResponse