{-# 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.Kafka.UpdateConfiguration
(
UpdateConfiguration (..),
newUpdateConfiguration,
updateConfiguration_description,
updateConfiguration_arn,
updateConfiguration_serverProperties,
UpdateConfigurationResponse (..),
newUpdateConfigurationResponse,
updateConfigurationResponse_arn,
updateConfigurationResponse_latestRevision,
updateConfigurationResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.Kafka.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
data UpdateConfiguration = UpdateConfiguration'
{
UpdateConfiguration -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
UpdateConfiguration -> Text
arn :: Prelude.Text,
UpdateConfiguration -> Base64
serverProperties :: Core.Base64
}
deriving (UpdateConfiguration -> UpdateConfiguration -> Bool
(UpdateConfiguration -> UpdateConfiguration -> Bool)
-> (UpdateConfiguration -> UpdateConfiguration -> Bool)
-> Eq UpdateConfiguration
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateConfiguration -> UpdateConfiguration -> Bool
$c/= :: UpdateConfiguration -> UpdateConfiguration -> Bool
== :: UpdateConfiguration -> UpdateConfiguration -> Bool
$c== :: UpdateConfiguration -> UpdateConfiguration -> Bool
Prelude.Eq, ReadPrec [UpdateConfiguration]
ReadPrec UpdateConfiguration
Int -> ReadS UpdateConfiguration
ReadS [UpdateConfiguration]
(Int -> ReadS UpdateConfiguration)
-> ReadS [UpdateConfiguration]
-> ReadPrec UpdateConfiguration
-> ReadPrec [UpdateConfiguration]
-> Read UpdateConfiguration
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateConfiguration]
$creadListPrec :: ReadPrec [UpdateConfiguration]
readPrec :: ReadPrec UpdateConfiguration
$creadPrec :: ReadPrec UpdateConfiguration
readList :: ReadS [UpdateConfiguration]
$creadList :: ReadS [UpdateConfiguration]
readsPrec :: Int -> ReadS UpdateConfiguration
$creadsPrec :: Int -> ReadS UpdateConfiguration
Prelude.Read, Int -> UpdateConfiguration -> ShowS
[UpdateConfiguration] -> ShowS
UpdateConfiguration -> String
(Int -> UpdateConfiguration -> ShowS)
-> (UpdateConfiguration -> String)
-> ([UpdateConfiguration] -> ShowS)
-> Show UpdateConfiguration
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateConfiguration] -> ShowS
$cshowList :: [UpdateConfiguration] -> ShowS
show :: UpdateConfiguration -> String
$cshow :: UpdateConfiguration -> String
showsPrec :: Int -> UpdateConfiguration -> ShowS
$cshowsPrec :: Int -> UpdateConfiguration -> ShowS
Prelude.Show, (forall x. UpdateConfiguration -> Rep UpdateConfiguration x)
-> (forall x. Rep UpdateConfiguration x -> UpdateConfiguration)
-> Generic UpdateConfiguration
forall x. Rep UpdateConfiguration x -> UpdateConfiguration
forall x. UpdateConfiguration -> Rep UpdateConfiguration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateConfiguration x -> UpdateConfiguration
$cfrom :: forall x. UpdateConfiguration -> Rep UpdateConfiguration x
Prelude.Generic)
newUpdateConfiguration ::
Prelude.Text ->
Prelude.ByteString ->
UpdateConfiguration
newUpdateConfiguration :: Text -> ByteString -> UpdateConfiguration
newUpdateConfiguration Text
pArn_ ByteString
pServerProperties_ =
UpdateConfiguration' :: Maybe Text -> Text -> Base64 -> UpdateConfiguration
UpdateConfiguration'
{ $sel:description:UpdateConfiguration' :: Maybe Text
description = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:arn:UpdateConfiguration' :: Text
arn = Text
pArn_,
$sel:serverProperties:UpdateConfiguration' :: Base64
serverProperties =
Tagged ByteString (Identity ByteString)
-> Tagged Base64 (Identity Base64)
Iso' Base64 ByteString
Core._Base64 (Tagged ByteString (Identity ByteString)
-> Tagged Base64 (Identity Base64))
-> ByteString -> Base64
forall t b. AReview t b -> b -> t
Lens.# ByteString
pServerProperties_
}
updateConfiguration_description :: Lens.Lens' UpdateConfiguration (Prelude.Maybe Prelude.Text)
updateConfiguration_description :: (Maybe Text -> f (Maybe Text))
-> UpdateConfiguration -> f UpdateConfiguration
updateConfiguration_description = (UpdateConfiguration -> Maybe Text)
-> (UpdateConfiguration -> Maybe Text -> UpdateConfiguration)
-> Lens
UpdateConfiguration UpdateConfiguration (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateConfiguration' {Maybe Text
description :: Maybe Text
$sel:description:UpdateConfiguration' :: UpdateConfiguration -> Maybe Text
description} -> Maybe Text
description) (\s :: UpdateConfiguration
s@UpdateConfiguration' {} Maybe Text
a -> UpdateConfiguration
s {$sel:description:UpdateConfiguration' :: Maybe Text
description = Maybe Text
a} :: UpdateConfiguration)
updateConfiguration_arn :: Lens.Lens' UpdateConfiguration Prelude.Text
updateConfiguration_arn :: (Text -> f Text) -> UpdateConfiguration -> f UpdateConfiguration
updateConfiguration_arn = (UpdateConfiguration -> Text)
-> (UpdateConfiguration -> Text -> UpdateConfiguration)
-> Lens UpdateConfiguration UpdateConfiguration Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateConfiguration' {Text
arn :: Text
$sel:arn:UpdateConfiguration' :: UpdateConfiguration -> Text
arn} -> Text
arn) (\s :: UpdateConfiguration
s@UpdateConfiguration' {} Text
a -> UpdateConfiguration
s {$sel:arn:UpdateConfiguration' :: Text
arn = Text
a} :: UpdateConfiguration)
updateConfiguration_serverProperties :: Lens.Lens' UpdateConfiguration Prelude.ByteString
updateConfiguration_serverProperties :: (ByteString -> f ByteString)
-> UpdateConfiguration -> f UpdateConfiguration
updateConfiguration_serverProperties = (UpdateConfiguration -> Base64)
-> (UpdateConfiguration -> Base64 -> UpdateConfiguration)
-> Lens UpdateConfiguration UpdateConfiguration Base64 Base64
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateConfiguration' {Base64
serverProperties :: Base64
$sel:serverProperties:UpdateConfiguration' :: UpdateConfiguration -> Base64
serverProperties} -> Base64
serverProperties) (\s :: UpdateConfiguration
s@UpdateConfiguration' {} Base64
a -> UpdateConfiguration
s {$sel:serverProperties:UpdateConfiguration' :: Base64
serverProperties = Base64
a} :: UpdateConfiguration) ((Base64 -> f Base64)
-> UpdateConfiguration -> f UpdateConfiguration)
-> ((ByteString -> f ByteString) -> Base64 -> f Base64)
-> (ByteString -> f ByteString)
-> UpdateConfiguration
-> f UpdateConfiguration
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (ByteString -> f ByteString) -> Base64 -> f Base64
Iso' Base64 ByteString
Core._Base64
instance Core.AWSRequest UpdateConfiguration where
type
AWSResponse UpdateConfiguration =
UpdateConfigurationResponse
request :: UpdateConfiguration -> Request UpdateConfiguration
request = Service -> UpdateConfiguration -> Request UpdateConfiguration
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.putJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdateConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateConfiguration)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse UpdateConfiguration))
-> Logger
-> Service
-> Proxy UpdateConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateConfiguration)))
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
-> Maybe ConfigurationRevision
-> Int
-> UpdateConfigurationResponse
UpdateConfigurationResponse'
(Maybe Text
-> Maybe ConfigurationRevision
-> Int
-> UpdateConfigurationResponse)
-> Either String (Maybe Text)
-> Either
String
(Maybe ConfigurationRevision -> Int -> UpdateConfigurationResponse)
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
"arn")
Either
String
(Maybe ConfigurationRevision -> Int -> UpdateConfigurationResponse)
-> Either String (Maybe ConfigurationRevision)
-> Either String (Int -> UpdateConfigurationResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe ConfigurationRevision)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"latestRevision")
Either String (Int -> UpdateConfigurationResponse)
-> Either String Int -> Either String UpdateConfigurationResponse
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 UpdateConfiguration
instance Prelude.NFData UpdateConfiguration
instance Core.ToHeaders UpdateConfiguration where
toHeaders :: UpdateConfiguration -> ResponseHeaders
toHeaders =
ResponseHeaders -> UpdateConfiguration -> 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 UpdateConfiguration where
toJSON :: UpdateConfiguration -> Value
toJSON UpdateConfiguration' {Maybe Text
Text
Base64
serverProperties :: Base64
arn :: Text
description :: Maybe Text
$sel:serverProperties:UpdateConfiguration' :: UpdateConfiguration -> Base64
$sel:arn:UpdateConfiguration' :: UpdateConfiguration -> Text
$sel:description:UpdateConfiguration' :: UpdateConfiguration -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"description" 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
description,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"serverProperties" Text -> Base64 -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Base64
serverProperties)
]
)
instance Core.ToPath UpdateConfiguration where
toPath :: UpdateConfiguration -> ByteString
toPath UpdateConfiguration' {Maybe Text
Text
Base64
serverProperties :: Base64
arn :: Text
description :: Maybe Text
$sel:serverProperties:UpdateConfiguration' :: UpdateConfiguration -> Base64
$sel:arn:UpdateConfiguration' :: UpdateConfiguration -> Text
$sel:description:UpdateConfiguration' :: UpdateConfiguration -> Maybe Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ByteString
"/v1/configurations/", Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
arn]
instance Core.ToQuery UpdateConfiguration where
toQuery :: UpdateConfiguration -> QueryString
toQuery = QueryString -> UpdateConfiguration -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdateConfigurationResponse = UpdateConfigurationResponse'
{
UpdateConfigurationResponse -> Maybe Text
arn :: Prelude.Maybe Prelude.Text,
UpdateConfigurationResponse -> Maybe ConfigurationRevision
latestRevision :: Prelude.Maybe ConfigurationRevision,
UpdateConfigurationResponse -> Int
httpStatus :: Prelude.Int
}
deriving (UpdateConfigurationResponse -> UpdateConfigurationResponse -> Bool
(UpdateConfigurationResponse
-> UpdateConfigurationResponse -> Bool)
-> (UpdateConfigurationResponse
-> UpdateConfigurationResponse -> Bool)
-> Eq UpdateConfigurationResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateConfigurationResponse -> UpdateConfigurationResponse -> Bool
$c/= :: UpdateConfigurationResponse -> UpdateConfigurationResponse -> Bool
== :: UpdateConfigurationResponse -> UpdateConfigurationResponse -> Bool
$c== :: UpdateConfigurationResponse -> UpdateConfigurationResponse -> Bool
Prelude.Eq, ReadPrec [UpdateConfigurationResponse]
ReadPrec UpdateConfigurationResponse
Int -> ReadS UpdateConfigurationResponse
ReadS [UpdateConfigurationResponse]
(Int -> ReadS UpdateConfigurationResponse)
-> ReadS [UpdateConfigurationResponse]
-> ReadPrec UpdateConfigurationResponse
-> ReadPrec [UpdateConfigurationResponse]
-> Read UpdateConfigurationResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateConfigurationResponse]
$creadListPrec :: ReadPrec [UpdateConfigurationResponse]
readPrec :: ReadPrec UpdateConfigurationResponse
$creadPrec :: ReadPrec UpdateConfigurationResponse
readList :: ReadS [UpdateConfigurationResponse]
$creadList :: ReadS [UpdateConfigurationResponse]
readsPrec :: Int -> ReadS UpdateConfigurationResponse
$creadsPrec :: Int -> ReadS UpdateConfigurationResponse
Prelude.Read, Int -> UpdateConfigurationResponse -> ShowS
[UpdateConfigurationResponse] -> ShowS
UpdateConfigurationResponse -> String
(Int -> UpdateConfigurationResponse -> ShowS)
-> (UpdateConfigurationResponse -> String)
-> ([UpdateConfigurationResponse] -> ShowS)
-> Show UpdateConfigurationResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateConfigurationResponse] -> ShowS
$cshowList :: [UpdateConfigurationResponse] -> ShowS
show :: UpdateConfigurationResponse -> String
$cshow :: UpdateConfigurationResponse -> String
showsPrec :: Int -> UpdateConfigurationResponse -> ShowS
$cshowsPrec :: Int -> UpdateConfigurationResponse -> ShowS
Prelude.Show, (forall x.
UpdateConfigurationResponse -> Rep UpdateConfigurationResponse x)
-> (forall x.
Rep UpdateConfigurationResponse x -> UpdateConfigurationResponse)
-> Generic UpdateConfigurationResponse
forall x.
Rep UpdateConfigurationResponse x -> UpdateConfigurationResponse
forall x.
UpdateConfigurationResponse -> Rep UpdateConfigurationResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateConfigurationResponse x -> UpdateConfigurationResponse
$cfrom :: forall x.
UpdateConfigurationResponse -> Rep UpdateConfigurationResponse x
Prelude.Generic)
newUpdateConfigurationResponse ::
Prelude.Int ->
UpdateConfigurationResponse
newUpdateConfigurationResponse :: Int -> UpdateConfigurationResponse
newUpdateConfigurationResponse Int
pHttpStatus_ =
UpdateConfigurationResponse' :: Maybe Text
-> Maybe ConfigurationRevision
-> Int
-> UpdateConfigurationResponse
UpdateConfigurationResponse'
{ $sel:arn:UpdateConfigurationResponse' :: Maybe Text
arn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:latestRevision:UpdateConfigurationResponse' :: Maybe ConfigurationRevision
latestRevision = Maybe ConfigurationRevision
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:UpdateConfigurationResponse' :: Int
httpStatus = Int
pHttpStatus_
}
updateConfigurationResponse_arn :: Lens.Lens' UpdateConfigurationResponse (Prelude.Maybe Prelude.Text)
updateConfigurationResponse_arn :: (Maybe Text -> f (Maybe Text))
-> UpdateConfigurationResponse -> f UpdateConfigurationResponse
updateConfigurationResponse_arn = (UpdateConfigurationResponse -> Maybe Text)
-> (UpdateConfigurationResponse
-> Maybe Text -> UpdateConfigurationResponse)
-> Lens
UpdateConfigurationResponse
UpdateConfigurationResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateConfigurationResponse' {Maybe Text
arn :: Maybe Text
$sel:arn:UpdateConfigurationResponse' :: UpdateConfigurationResponse -> Maybe Text
arn} -> Maybe Text
arn) (\s :: UpdateConfigurationResponse
s@UpdateConfigurationResponse' {} Maybe Text
a -> UpdateConfigurationResponse
s {$sel:arn:UpdateConfigurationResponse' :: Maybe Text
arn = Maybe Text
a} :: UpdateConfigurationResponse)
updateConfigurationResponse_latestRevision :: Lens.Lens' UpdateConfigurationResponse (Prelude.Maybe ConfigurationRevision)
updateConfigurationResponse_latestRevision :: (Maybe ConfigurationRevision -> f (Maybe ConfigurationRevision))
-> UpdateConfigurationResponse -> f UpdateConfigurationResponse
updateConfigurationResponse_latestRevision = (UpdateConfigurationResponse -> Maybe ConfigurationRevision)
-> (UpdateConfigurationResponse
-> Maybe ConfigurationRevision -> UpdateConfigurationResponse)
-> Lens
UpdateConfigurationResponse
UpdateConfigurationResponse
(Maybe ConfigurationRevision)
(Maybe ConfigurationRevision)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateConfigurationResponse' {Maybe ConfigurationRevision
latestRevision :: Maybe ConfigurationRevision
$sel:latestRevision:UpdateConfigurationResponse' :: UpdateConfigurationResponse -> Maybe ConfigurationRevision
latestRevision} -> Maybe ConfigurationRevision
latestRevision) (\s :: UpdateConfigurationResponse
s@UpdateConfigurationResponse' {} Maybe ConfigurationRevision
a -> UpdateConfigurationResponse
s {$sel:latestRevision:UpdateConfigurationResponse' :: Maybe ConfigurationRevision
latestRevision = Maybe ConfigurationRevision
a} :: UpdateConfigurationResponse)
updateConfigurationResponse_httpStatus :: Lens.Lens' UpdateConfigurationResponse Prelude.Int
updateConfigurationResponse_httpStatus :: (Int -> f Int)
-> UpdateConfigurationResponse -> f UpdateConfigurationResponse
updateConfigurationResponse_httpStatus = (UpdateConfigurationResponse -> Int)
-> (UpdateConfigurationResponse
-> Int -> UpdateConfigurationResponse)
-> Lens
UpdateConfigurationResponse UpdateConfigurationResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateConfigurationResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateConfigurationResponse' :: UpdateConfigurationResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateConfigurationResponse
s@UpdateConfigurationResponse' {} Int
a -> UpdateConfigurationResponse
s {$sel:httpStatus:UpdateConfigurationResponse' :: Int
httpStatus = Int
a} :: UpdateConfigurationResponse)
instance Prelude.NFData UpdateConfigurationResponse