{-# 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.Greengrass.UpdateGroup
(
UpdateGroup (..),
newUpdateGroup,
updateGroup_name,
updateGroup_groupId,
UpdateGroupResponse (..),
newUpdateGroupResponse,
updateGroupResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.Greengrass.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 UpdateGroup = UpdateGroup'
{
UpdateGroup -> Maybe Text
name :: Prelude.Maybe Prelude.Text,
UpdateGroup -> Text
groupId :: Prelude.Text
}
deriving (UpdateGroup -> UpdateGroup -> Bool
(UpdateGroup -> UpdateGroup -> Bool)
-> (UpdateGroup -> UpdateGroup -> Bool) -> Eq UpdateGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateGroup -> UpdateGroup -> Bool
$c/= :: UpdateGroup -> UpdateGroup -> Bool
== :: UpdateGroup -> UpdateGroup -> Bool
$c== :: UpdateGroup -> UpdateGroup -> Bool
Prelude.Eq, ReadPrec [UpdateGroup]
ReadPrec UpdateGroup
Int -> ReadS UpdateGroup
ReadS [UpdateGroup]
(Int -> ReadS UpdateGroup)
-> ReadS [UpdateGroup]
-> ReadPrec UpdateGroup
-> ReadPrec [UpdateGroup]
-> Read UpdateGroup
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateGroup]
$creadListPrec :: ReadPrec [UpdateGroup]
readPrec :: ReadPrec UpdateGroup
$creadPrec :: ReadPrec UpdateGroup
readList :: ReadS [UpdateGroup]
$creadList :: ReadS [UpdateGroup]
readsPrec :: Int -> ReadS UpdateGroup
$creadsPrec :: Int -> ReadS UpdateGroup
Prelude.Read, Int -> UpdateGroup -> ShowS
[UpdateGroup] -> ShowS
UpdateGroup -> String
(Int -> UpdateGroup -> ShowS)
-> (UpdateGroup -> String)
-> ([UpdateGroup] -> ShowS)
-> Show UpdateGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateGroup] -> ShowS
$cshowList :: [UpdateGroup] -> ShowS
show :: UpdateGroup -> String
$cshow :: UpdateGroup -> String
showsPrec :: Int -> UpdateGroup -> ShowS
$cshowsPrec :: Int -> UpdateGroup -> ShowS
Prelude.Show, (forall x. UpdateGroup -> Rep UpdateGroup x)
-> (forall x. Rep UpdateGroup x -> UpdateGroup)
-> Generic UpdateGroup
forall x. Rep UpdateGroup x -> UpdateGroup
forall x. UpdateGroup -> Rep UpdateGroup x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateGroup x -> UpdateGroup
$cfrom :: forall x. UpdateGroup -> Rep UpdateGroup x
Prelude.Generic)
newUpdateGroup ::
Prelude.Text ->
UpdateGroup
newUpdateGroup :: Text -> UpdateGroup
newUpdateGroup Text
pGroupId_ =
UpdateGroup' :: Maybe Text -> Text -> UpdateGroup
UpdateGroup'
{ $sel:name:UpdateGroup' :: Maybe Text
name = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:groupId:UpdateGroup' :: Text
groupId = Text
pGroupId_
}
updateGroup_name :: Lens.Lens' UpdateGroup (Prelude.Maybe Prelude.Text)
updateGroup_name :: (Maybe Text -> f (Maybe Text)) -> UpdateGroup -> f UpdateGroup
updateGroup_name = (UpdateGroup -> Maybe Text)
-> (UpdateGroup -> Maybe Text -> UpdateGroup)
-> Lens UpdateGroup UpdateGroup (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateGroup' {Maybe Text
name :: Maybe Text
$sel:name:UpdateGroup' :: UpdateGroup -> Maybe Text
name} -> Maybe Text
name) (\s :: UpdateGroup
s@UpdateGroup' {} Maybe Text
a -> UpdateGroup
s {$sel:name:UpdateGroup' :: Maybe Text
name = Maybe Text
a} :: UpdateGroup)
updateGroup_groupId :: Lens.Lens' UpdateGroup Prelude.Text
updateGroup_groupId :: (Text -> f Text) -> UpdateGroup -> f UpdateGroup
updateGroup_groupId = (UpdateGroup -> Text)
-> (UpdateGroup -> Text -> UpdateGroup)
-> Lens UpdateGroup UpdateGroup Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateGroup' {Text
groupId :: Text
$sel:groupId:UpdateGroup' :: UpdateGroup -> Text
groupId} -> Text
groupId) (\s :: UpdateGroup
s@UpdateGroup' {} Text
a -> UpdateGroup
s {$sel:groupId:UpdateGroup' :: Text
groupId = Text
a} :: UpdateGroup)
instance Core.AWSRequest UpdateGroup where
type AWSResponse UpdateGroup = UpdateGroupResponse
request :: UpdateGroup -> Request UpdateGroup
request = Service -> UpdateGroup -> Request UpdateGroup
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.putJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdateGroup
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateGroup)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse UpdateGroup))
-> Logger
-> Service
-> Proxy UpdateGroup
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateGroup)))
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 -> UpdateGroupResponse
UpdateGroupResponse'
(Int -> UpdateGroupResponse)
-> Either String Int -> Either String UpdateGroupResponse
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 UpdateGroup
instance Prelude.NFData UpdateGroup
instance Core.ToHeaders UpdateGroup where
toHeaders :: UpdateGroup -> ResponseHeaders
toHeaders =
ResponseHeaders -> UpdateGroup -> 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 UpdateGroup where
toJSON :: UpdateGroup -> Value
toJSON UpdateGroup' {Maybe Text
Text
groupId :: Text
name :: Maybe Text
$sel:groupId:UpdateGroup' :: UpdateGroup -> Text
$sel:name:UpdateGroup' :: UpdateGroup -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[(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 UpdateGroup where
toPath :: UpdateGroup -> ByteString
toPath UpdateGroup' {Maybe Text
Text
groupId :: Text
name :: Maybe Text
$sel:groupId:UpdateGroup' :: UpdateGroup -> Text
$sel:name:UpdateGroup' :: UpdateGroup -> Maybe Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ByteString
"/greengrass/groups/", Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
groupId]
instance Core.ToQuery UpdateGroup where
toQuery :: UpdateGroup -> QueryString
toQuery = QueryString -> UpdateGroup -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdateGroupResponse = UpdateGroupResponse'
{
UpdateGroupResponse -> Int
httpStatus :: Prelude.Int
}
deriving (UpdateGroupResponse -> UpdateGroupResponse -> Bool
(UpdateGroupResponse -> UpdateGroupResponse -> Bool)
-> (UpdateGroupResponse -> UpdateGroupResponse -> Bool)
-> Eq UpdateGroupResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateGroupResponse -> UpdateGroupResponse -> Bool
$c/= :: UpdateGroupResponse -> UpdateGroupResponse -> Bool
== :: UpdateGroupResponse -> UpdateGroupResponse -> Bool
$c== :: UpdateGroupResponse -> UpdateGroupResponse -> Bool
Prelude.Eq, ReadPrec [UpdateGroupResponse]
ReadPrec UpdateGroupResponse
Int -> ReadS UpdateGroupResponse
ReadS [UpdateGroupResponse]
(Int -> ReadS UpdateGroupResponse)
-> ReadS [UpdateGroupResponse]
-> ReadPrec UpdateGroupResponse
-> ReadPrec [UpdateGroupResponse]
-> Read UpdateGroupResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateGroupResponse]
$creadListPrec :: ReadPrec [UpdateGroupResponse]
readPrec :: ReadPrec UpdateGroupResponse
$creadPrec :: ReadPrec UpdateGroupResponse
readList :: ReadS [UpdateGroupResponse]
$creadList :: ReadS [UpdateGroupResponse]
readsPrec :: Int -> ReadS UpdateGroupResponse
$creadsPrec :: Int -> ReadS UpdateGroupResponse
Prelude.Read, Int -> UpdateGroupResponse -> ShowS
[UpdateGroupResponse] -> ShowS
UpdateGroupResponse -> String
(Int -> UpdateGroupResponse -> ShowS)
-> (UpdateGroupResponse -> String)
-> ([UpdateGroupResponse] -> ShowS)
-> Show UpdateGroupResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateGroupResponse] -> ShowS
$cshowList :: [UpdateGroupResponse] -> ShowS
show :: UpdateGroupResponse -> String
$cshow :: UpdateGroupResponse -> String
showsPrec :: Int -> UpdateGroupResponse -> ShowS
$cshowsPrec :: Int -> UpdateGroupResponse -> ShowS
Prelude.Show, (forall x. UpdateGroupResponse -> Rep UpdateGroupResponse x)
-> (forall x. Rep UpdateGroupResponse x -> UpdateGroupResponse)
-> Generic UpdateGroupResponse
forall x. Rep UpdateGroupResponse x -> UpdateGroupResponse
forall x. UpdateGroupResponse -> Rep UpdateGroupResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateGroupResponse x -> UpdateGroupResponse
$cfrom :: forall x. UpdateGroupResponse -> Rep UpdateGroupResponse x
Prelude.Generic)
newUpdateGroupResponse ::
Prelude.Int ->
UpdateGroupResponse
newUpdateGroupResponse :: Int -> UpdateGroupResponse
newUpdateGroupResponse Int
pHttpStatus_ =
UpdateGroupResponse' :: Int -> UpdateGroupResponse
UpdateGroupResponse' {$sel:httpStatus:UpdateGroupResponse' :: Int
httpStatus = Int
pHttpStatus_}
updateGroupResponse_httpStatus :: Lens.Lens' UpdateGroupResponse Prelude.Int
updateGroupResponse_httpStatus :: (Int -> f Int) -> UpdateGroupResponse -> f UpdateGroupResponse
updateGroupResponse_httpStatus = (UpdateGroupResponse -> Int)
-> (UpdateGroupResponse -> Int -> UpdateGroupResponse)
-> Lens UpdateGroupResponse UpdateGroupResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateGroupResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateGroupResponse' :: UpdateGroupResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateGroupResponse
s@UpdateGroupResponse' {} Int
a -> UpdateGroupResponse
s {$sel:httpStatus:UpdateGroupResponse' :: Int
httpStatus = Int
a} :: UpdateGroupResponse)
instance Prelude.NFData UpdateGroupResponse