{-# 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.Amplify.CreateWebhook
-- 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)
--
-- Creates a new webhook on an Amplify app.
module Amazonka.Amplify.CreateWebhook
  ( -- * Creating a Request
    CreateWebhook (..),
    newCreateWebhook,

    -- * Request Lenses
    createWebhook_description,
    createWebhook_appId,
    createWebhook_branchName,

    -- * Destructuring the Response
    CreateWebhookResponse (..),
    newCreateWebhookResponse,

    -- * Response Lenses
    createWebhookResponse_httpStatus,
    createWebhookResponse_webhook,
  )
where

import Amazonka.Amplify.Types
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

-- | The request structure for the create webhook request.
--
-- /See:/ 'newCreateWebhook' smart constructor.
data CreateWebhook = CreateWebhook'
  { -- | The description for a webhook.
    CreateWebhook -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
    -- | The unique ID for an Amplify app.
    CreateWebhook -> Text
appId :: Prelude.Text,
    -- | The name for a branch that is part of an Amplify app.
    CreateWebhook -> Text
branchName :: Prelude.Text
  }
  deriving (CreateWebhook -> CreateWebhook -> Bool
(CreateWebhook -> CreateWebhook -> Bool)
-> (CreateWebhook -> CreateWebhook -> Bool) -> Eq CreateWebhook
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateWebhook -> CreateWebhook -> Bool
$c/= :: CreateWebhook -> CreateWebhook -> Bool
== :: CreateWebhook -> CreateWebhook -> Bool
$c== :: CreateWebhook -> CreateWebhook -> Bool
Prelude.Eq, ReadPrec [CreateWebhook]
ReadPrec CreateWebhook
Int -> ReadS CreateWebhook
ReadS [CreateWebhook]
(Int -> ReadS CreateWebhook)
-> ReadS [CreateWebhook]
-> ReadPrec CreateWebhook
-> ReadPrec [CreateWebhook]
-> Read CreateWebhook
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateWebhook]
$creadListPrec :: ReadPrec [CreateWebhook]
readPrec :: ReadPrec CreateWebhook
$creadPrec :: ReadPrec CreateWebhook
readList :: ReadS [CreateWebhook]
$creadList :: ReadS [CreateWebhook]
readsPrec :: Int -> ReadS CreateWebhook
$creadsPrec :: Int -> ReadS CreateWebhook
Prelude.Read, Int -> CreateWebhook -> ShowS
[CreateWebhook] -> ShowS
CreateWebhook -> String
(Int -> CreateWebhook -> ShowS)
-> (CreateWebhook -> String)
-> ([CreateWebhook] -> ShowS)
-> Show CreateWebhook
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateWebhook] -> ShowS
$cshowList :: [CreateWebhook] -> ShowS
show :: CreateWebhook -> String
$cshow :: CreateWebhook -> String
showsPrec :: Int -> CreateWebhook -> ShowS
$cshowsPrec :: Int -> CreateWebhook -> ShowS
Prelude.Show, (forall x. CreateWebhook -> Rep CreateWebhook x)
-> (forall x. Rep CreateWebhook x -> CreateWebhook)
-> Generic CreateWebhook
forall x. Rep CreateWebhook x -> CreateWebhook
forall x. CreateWebhook -> Rep CreateWebhook x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateWebhook x -> CreateWebhook
$cfrom :: forall x. CreateWebhook -> Rep CreateWebhook x
Prelude.Generic)

-- |
-- Create a value of 'CreateWebhook' 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:
--
-- 'description', 'createWebhook_description' - The description for a webhook.
--
-- 'appId', 'createWebhook_appId' - The unique ID for an Amplify app.
--
-- 'branchName', 'createWebhook_branchName' - The name for a branch that is part of an Amplify app.
newCreateWebhook ::
  -- | 'appId'
  Prelude.Text ->
  -- | 'branchName'
  Prelude.Text ->
  CreateWebhook
newCreateWebhook :: Text -> Text -> CreateWebhook
newCreateWebhook Text
pAppId_ Text
pBranchName_ =
  CreateWebhook' :: Maybe Text -> Text -> Text -> CreateWebhook
CreateWebhook'
    { $sel:description:CreateWebhook' :: Maybe Text
description = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:appId:CreateWebhook' :: Text
appId = Text
pAppId_,
      $sel:branchName:CreateWebhook' :: Text
branchName = Text
pBranchName_
    }

-- | The description for a webhook.
createWebhook_description :: Lens.Lens' CreateWebhook (Prelude.Maybe Prelude.Text)
createWebhook_description :: (Maybe Text -> f (Maybe Text)) -> CreateWebhook -> f CreateWebhook
createWebhook_description = (CreateWebhook -> Maybe Text)
-> (CreateWebhook -> Maybe Text -> CreateWebhook)
-> Lens CreateWebhook CreateWebhook (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateWebhook' {Maybe Text
description :: Maybe Text
$sel:description:CreateWebhook' :: CreateWebhook -> Maybe Text
description} -> Maybe Text
description) (\s :: CreateWebhook
s@CreateWebhook' {} Maybe Text
a -> CreateWebhook
s {$sel:description:CreateWebhook' :: Maybe Text
description = Maybe Text
a} :: CreateWebhook)

-- | The unique ID for an Amplify app.
createWebhook_appId :: Lens.Lens' CreateWebhook Prelude.Text
createWebhook_appId :: (Text -> f Text) -> CreateWebhook -> f CreateWebhook
createWebhook_appId = (CreateWebhook -> Text)
-> (CreateWebhook -> Text -> CreateWebhook)
-> Lens CreateWebhook CreateWebhook Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateWebhook' {Text
appId :: Text
$sel:appId:CreateWebhook' :: CreateWebhook -> Text
appId} -> Text
appId) (\s :: CreateWebhook
s@CreateWebhook' {} Text
a -> CreateWebhook
s {$sel:appId:CreateWebhook' :: Text
appId = Text
a} :: CreateWebhook)

-- | The name for a branch that is part of an Amplify app.
createWebhook_branchName :: Lens.Lens' CreateWebhook Prelude.Text
createWebhook_branchName :: (Text -> f Text) -> CreateWebhook -> f CreateWebhook
createWebhook_branchName = (CreateWebhook -> Text)
-> (CreateWebhook -> Text -> CreateWebhook)
-> Lens CreateWebhook CreateWebhook Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateWebhook' {Text
branchName :: Text
$sel:branchName:CreateWebhook' :: CreateWebhook -> Text
branchName} -> Text
branchName) (\s :: CreateWebhook
s@CreateWebhook' {} Text
a -> CreateWebhook
s {$sel:branchName:CreateWebhook' :: Text
branchName = Text
a} :: CreateWebhook)

instance Core.AWSRequest CreateWebhook where
  type
    AWSResponse CreateWebhook =
      CreateWebhookResponse
  request :: CreateWebhook -> Request CreateWebhook
request = Service -> CreateWebhook -> Request CreateWebhook
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy CreateWebhook
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreateWebhook)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse CreateWebhook))
-> Logger
-> Service
-> Proxy CreateWebhook
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreateWebhook)))
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 ->
          Int -> Webhook -> CreateWebhookResponse
CreateWebhookResponse'
            (Int -> Webhook -> CreateWebhookResponse)
-> Either String Int
-> Either String (Webhook -> CreateWebhookResponse)
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))
            Either String (Webhook -> CreateWebhookResponse)
-> Either String Webhook -> Either String CreateWebhookResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String Webhook
forall a. FromJSON a => Object -> Text -> Either String a
Core..:> Text
"webhook")
      )

instance Prelude.Hashable CreateWebhook

instance Prelude.NFData CreateWebhook

instance Core.ToHeaders CreateWebhook where
  toHeaders :: CreateWebhook -> ResponseHeaders
toHeaders =
    ResponseHeaders -> CreateWebhook -> 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 CreateWebhook where
  toJSON :: CreateWebhook -> Value
toJSON CreateWebhook' {Maybe Text
Text
branchName :: Text
appId :: Text
description :: Maybe Text
$sel:branchName:CreateWebhook' :: CreateWebhook -> Text
$sel:appId:CreateWebhook' :: CreateWebhook -> Text
$sel:description:CreateWebhook' :: CreateWebhook -> 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
"branchName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
branchName)
          ]
      )

instance Core.ToPath CreateWebhook where
  toPath :: CreateWebhook -> ByteString
toPath CreateWebhook' {Maybe Text
Text
branchName :: Text
appId :: Text
description :: Maybe Text
$sel:branchName:CreateWebhook' :: CreateWebhook -> Text
$sel:appId:CreateWebhook' :: CreateWebhook -> Text
$sel:description:CreateWebhook' :: CreateWebhook -> Maybe Text
..} =
    [ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ByteString
"/apps/", Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
appId, ByteString
"/webhooks"]

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

-- | The result structure for the create webhook request.
--
-- /See:/ 'newCreateWebhookResponse' smart constructor.
data CreateWebhookResponse = CreateWebhookResponse'
  { -- | The response's http status code.
    CreateWebhookResponse -> Int
httpStatus :: Prelude.Int,
    -- | Describes a webhook that connects repository events to an Amplify app.
    CreateWebhookResponse -> Webhook
webhook :: Webhook
  }
  deriving (CreateWebhookResponse -> CreateWebhookResponse -> Bool
(CreateWebhookResponse -> CreateWebhookResponse -> Bool)
-> (CreateWebhookResponse -> CreateWebhookResponse -> Bool)
-> Eq CreateWebhookResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateWebhookResponse -> CreateWebhookResponse -> Bool
$c/= :: CreateWebhookResponse -> CreateWebhookResponse -> Bool
== :: CreateWebhookResponse -> CreateWebhookResponse -> Bool
$c== :: CreateWebhookResponse -> CreateWebhookResponse -> Bool
Prelude.Eq, ReadPrec [CreateWebhookResponse]
ReadPrec CreateWebhookResponse
Int -> ReadS CreateWebhookResponse
ReadS [CreateWebhookResponse]
(Int -> ReadS CreateWebhookResponse)
-> ReadS [CreateWebhookResponse]
-> ReadPrec CreateWebhookResponse
-> ReadPrec [CreateWebhookResponse]
-> Read CreateWebhookResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateWebhookResponse]
$creadListPrec :: ReadPrec [CreateWebhookResponse]
readPrec :: ReadPrec CreateWebhookResponse
$creadPrec :: ReadPrec CreateWebhookResponse
readList :: ReadS [CreateWebhookResponse]
$creadList :: ReadS [CreateWebhookResponse]
readsPrec :: Int -> ReadS CreateWebhookResponse
$creadsPrec :: Int -> ReadS CreateWebhookResponse
Prelude.Read, Int -> CreateWebhookResponse -> ShowS
[CreateWebhookResponse] -> ShowS
CreateWebhookResponse -> String
(Int -> CreateWebhookResponse -> ShowS)
-> (CreateWebhookResponse -> String)
-> ([CreateWebhookResponse] -> ShowS)
-> Show CreateWebhookResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateWebhookResponse] -> ShowS
$cshowList :: [CreateWebhookResponse] -> ShowS
show :: CreateWebhookResponse -> String
$cshow :: CreateWebhookResponse -> String
showsPrec :: Int -> CreateWebhookResponse -> ShowS
$cshowsPrec :: Int -> CreateWebhookResponse -> ShowS
Prelude.Show, (forall x. CreateWebhookResponse -> Rep CreateWebhookResponse x)
-> (forall x. Rep CreateWebhookResponse x -> CreateWebhookResponse)
-> Generic CreateWebhookResponse
forall x. Rep CreateWebhookResponse x -> CreateWebhookResponse
forall x. CreateWebhookResponse -> Rep CreateWebhookResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateWebhookResponse x -> CreateWebhookResponse
$cfrom :: forall x. CreateWebhookResponse -> Rep CreateWebhookResponse x
Prelude.Generic)

-- |
-- Create a value of 'CreateWebhookResponse' 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', 'createWebhookResponse_httpStatus' - The response's http status code.
--
-- 'webhook', 'createWebhookResponse_webhook' - Describes a webhook that connects repository events to an Amplify app.
newCreateWebhookResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  -- | 'webhook'
  Webhook ->
  CreateWebhookResponse
newCreateWebhookResponse :: Int -> Webhook -> CreateWebhookResponse
newCreateWebhookResponse Int
pHttpStatus_ Webhook
pWebhook_ =
  CreateWebhookResponse' :: Int -> Webhook -> CreateWebhookResponse
CreateWebhookResponse'
    { $sel:httpStatus:CreateWebhookResponse' :: Int
httpStatus = Int
pHttpStatus_,
      $sel:webhook:CreateWebhookResponse' :: Webhook
webhook = Webhook
pWebhook_
    }

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

-- | Describes a webhook that connects repository events to an Amplify app.
createWebhookResponse_webhook :: Lens.Lens' CreateWebhookResponse Webhook
createWebhookResponse_webhook :: (Webhook -> f Webhook)
-> CreateWebhookResponse -> f CreateWebhookResponse
createWebhookResponse_webhook = (CreateWebhookResponse -> Webhook)
-> (CreateWebhookResponse -> Webhook -> CreateWebhookResponse)
-> Lens CreateWebhookResponse CreateWebhookResponse Webhook Webhook
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateWebhookResponse' {Webhook
webhook :: Webhook
$sel:webhook:CreateWebhookResponse' :: CreateWebhookResponse -> Webhook
webhook} -> Webhook
webhook) (\s :: CreateWebhookResponse
s@CreateWebhookResponse' {} Webhook
a -> CreateWebhookResponse
s {$sel:webhook:CreateWebhookResponse' :: Webhook
webhook = Webhook
a} :: CreateWebhookResponse)

instance Prelude.NFData CreateWebhookResponse