{-# 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.AppRunner.DeleteService
-- 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)
--
-- Delete an App Runner service.
--
-- This is an asynchronous operation. On a successful call, you can use the
-- returned @OperationId@ and the ListOperations call to track the
-- operation\'s progress.
module Amazonka.AppRunner.DeleteService
  ( -- * Creating a Request
    DeleteService (..),
    newDeleteService,

    -- * Request Lenses
    deleteService_serviceArn,

    -- * Destructuring the Response
    DeleteServiceResponse (..),
    newDeleteServiceResponse,

    -- * Response Lenses
    deleteServiceResponse_httpStatus,
    deleteServiceResponse_service,
    deleteServiceResponse_operationId,
  )
where

import Amazonka.AppRunner.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

-- | /See:/ 'newDeleteService' smart constructor.
data DeleteService = DeleteService'
  { -- | The Amazon Resource Name (ARN) of the App Runner service that you want
    -- to delete.
    DeleteService -> Text
serviceArn :: Prelude.Text
  }
  deriving (DeleteService -> DeleteService -> Bool
(DeleteService -> DeleteService -> Bool)
-> (DeleteService -> DeleteService -> Bool) -> Eq DeleteService
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteService -> DeleteService -> Bool
$c/= :: DeleteService -> DeleteService -> Bool
== :: DeleteService -> DeleteService -> Bool
$c== :: DeleteService -> DeleteService -> Bool
Prelude.Eq, ReadPrec [DeleteService]
ReadPrec DeleteService
Int -> ReadS DeleteService
ReadS [DeleteService]
(Int -> ReadS DeleteService)
-> ReadS [DeleteService]
-> ReadPrec DeleteService
-> ReadPrec [DeleteService]
-> Read DeleteService
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteService]
$creadListPrec :: ReadPrec [DeleteService]
readPrec :: ReadPrec DeleteService
$creadPrec :: ReadPrec DeleteService
readList :: ReadS [DeleteService]
$creadList :: ReadS [DeleteService]
readsPrec :: Int -> ReadS DeleteService
$creadsPrec :: Int -> ReadS DeleteService
Prelude.Read, Int -> DeleteService -> ShowS
[DeleteService] -> ShowS
DeleteService -> String
(Int -> DeleteService -> ShowS)
-> (DeleteService -> String)
-> ([DeleteService] -> ShowS)
-> Show DeleteService
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteService] -> ShowS
$cshowList :: [DeleteService] -> ShowS
show :: DeleteService -> String
$cshow :: DeleteService -> String
showsPrec :: Int -> DeleteService -> ShowS
$cshowsPrec :: Int -> DeleteService -> ShowS
Prelude.Show, (forall x. DeleteService -> Rep DeleteService x)
-> (forall x. Rep DeleteService x -> DeleteService)
-> Generic DeleteService
forall x. Rep DeleteService x -> DeleteService
forall x. DeleteService -> Rep DeleteService x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteService x -> DeleteService
$cfrom :: forall x. DeleteService -> Rep DeleteService x
Prelude.Generic)

-- |
-- Create a value of 'DeleteService' 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:
--
-- 'serviceArn', 'deleteService_serviceArn' - The Amazon Resource Name (ARN) of the App Runner service that you want
-- to delete.
newDeleteService ::
  -- | 'serviceArn'
  Prelude.Text ->
  DeleteService
newDeleteService :: Text -> DeleteService
newDeleteService Text
pServiceArn_ =
  DeleteService' :: Text -> DeleteService
DeleteService' {$sel:serviceArn:DeleteService' :: Text
serviceArn = Text
pServiceArn_}

-- | The Amazon Resource Name (ARN) of the App Runner service that you want
-- to delete.
deleteService_serviceArn :: Lens.Lens' DeleteService Prelude.Text
deleteService_serviceArn :: (Text -> f Text) -> DeleteService -> f DeleteService
deleteService_serviceArn = (DeleteService -> Text)
-> (DeleteService -> Text -> DeleteService)
-> Lens DeleteService DeleteService Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteService' {Text
serviceArn :: Text
$sel:serviceArn:DeleteService' :: DeleteService -> Text
serviceArn} -> Text
serviceArn) (\s :: DeleteService
s@DeleteService' {} Text
a -> DeleteService
s {$sel:serviceArn:DeleteService' :: Text
serviceArn = Text
a} :: DeleteService)

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

instance Prelude.Hashable DeleteService

instance Prelude.NFData DeleteService

instance Core.ToHeaders DeleteService where
  toHeaders :: DeleteService -> ResponseHeaders
toHeaders =
    ResponseHeaders -> DeleteService -> 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
"AppRunner.DeleteService" :: Prelude.ByteString),
            HeaderName
"Content-Type"
              HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.0" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Core.ToJSON DeleteService where
  toJSON :: DeleteService -> Value
toJSON DeleteService' {Text
serviceArn :: Text
$sel:serviceArn:DeleteService' :: DeleteService -> Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"ServiceArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
serviceArn)]
      )

instance Core.ToPath DeleteService where
  toPath :: DeleteService -> ByteString
toPath = ByteString -> DeleteService -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"

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

-- | /See:/ 'newDeleteServiceResponse' smart constructor.
data DeleteServiceResponse = DeleteServiceResponse'
  { -- | The response's http status code.
    DeleteServiceResponse -> Int
httpStatus :: Prelude.Int,
    -- | A description of the App Runner service that this request just deleted.
    DeleteServiceResponse -> Service
service :: Service,
    -- | The unique ID of the asynchronous operation that this request started.
    -- You can use it combined with the ListOperations call to track the
    -- operation\'s progress.
    DeleteServiceResponse -> Text
operationId :: Prelude.Text
  }
  deriving (DeleteServiceResponse -> DeleteServiceResponse -> Bool
(DeleteServiceResponse -> DeleteServiceResponse -> Bool)
-> (DeleteServiceResponse -> DeleteServiceResponse -> Bool)
-> Eq DeleteServiceResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteServiceResponse -> DeleteServiceResponse -> Bool
$c/= :: DeleteServiceResponse -> DeleteServiceResponse -> Bool
== :: DeleteServiceResponse -> DeleteServiceResponse -> Bool
$c== :: DeleteServiceResponse -> DeleteServiceResponse -> Bool
Prelude.Eq, Int -> DeleteServiceResponse -> ShowS
[DeleteServiceResponse] -> ShowS
DeleteServiceResponse -> String
(Int -> DeleteServiceResponse -> ShowS)
-> (DeleteServiceResponse -> String)
-> ([DeleteServiceResponse] -> ShowS)
-> Show DeleteServiceResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteServiceResponse] -> ShowS
$cshowList :: [DeleteServiceResponse] -> ShowS
show :: DeleteServiceResponse -> String
$cshow :: DeleteServiceResponse -> String
showsPrec :: Int -> DeleteServiceResponse -> ShowS
$cshowsPrec :: Int -> DeleteServiceResponse -> ShowS
Prelude.Show, (forall x. DeleteServiceResponse -> Rep DeleteServiceResponse x)
-> (forall x. Rep DeleteServiceResponse x -> DeleteServiceResponse)
-> Generic DeleteServiceResponse
forall x. Rep DeleteServiceResponse x -> DeleteServiceResponse
forall x. DeleteServiceResponse -> Rep DeleteServiceResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteServiceResponse x -> DeleteServiceResponse
$cfrom :: forall x. DeleteServiceResponse -> Rep DeleteServiceResponse x
Prelude.Generic)

-- |
-- Create a value of 'DeleteServiceResponse' 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', 'deleteServiceResponse_httpStatus' - The response's http status code.
--
-- 'service', 'deleteServiceResponse_service' - A description of the App Runner service that this request just deleted.
--
-- 'operationId', 'deleteServiceResponse_operationId' - The unique ID of the asynchronous operation that this request started.
-- You can use it combined with the ListOperations call to track the
-- operation\'s progress.
newDeleteServiceResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  -- | 'service'
  Service ->
  -- | 'operationId'
  Prelude.Text ->
  DeleteServiceResponse
newDeleteServiceResponse :: Int -> Service -> Text -> DeleteServiceResponse
newDeleteServiceResponse
  Int
pHttpStatus_
  Service
pService_
  Text
pOperationId_ =
    DeleteServiceResponse' :: Int -> Service -> Text -> DeleteServiceResponse
DeleteServiceResponse'
      { $sel:httpStatus:DeleteServiceResponse' :: Int
httpStatus = Int
pHttpStatus_,
        $sel:service:DeleteServiceResponse' :: Service
service = Service
pService_,
        $sel:operationId:DeleteServiceResponse' :: Text
operationId = Text
pOperationId_
      }

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

-- | A description of the App Runner service that this request just deleted.
deleteServiceResponse_service :: Lens.Lens' DeleteServiceResponse Service
deleteServiceResponse_service :: (Service -> f Service)
-> DeleteServiceResponse -> f DeleteServiceResponse
deleteServiceResponse_service = (DeleteServiceResponse -> Service)
-> (DeleteServiceResponse -> Service -> DeleteServiceResponse)
-> Lens DeleteServiceResponse DeleteServiceResponse Service Service
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteServiceResponse' {Service
service :: Service
$sel:service:DeleteServiceResponse' :: DeleteServiceResponse -> Service
service} -> Service
service) (\s :: DeleteServiceResponse
s@DeleteServiceResponse' {} Service
a -> DeleteServiceResponse
s {$sel:service:DeleteServiceResponse' :: Service
service = Service
a} :: DeleteServiceResponse)

-- | The unique ID of the asynchronous operation that this request started.
-- You can use it combined with the ListOperations call to track the
-- operation\'s progress.
deleteServiceResponse_operationId :: Lens.Lens' DeleteServiceResponse Prelude.Text
deleteServiceResponse_operationId :: (Text -> f Text)
-> DeleteServiceResponse -> f DeleteServiceResponse
deleteServiceResponse_operationId = (DeleteServiceResponse -> Text)
-> (DeleteServiceResponse -> Text -> DeleteServiceResponse)
-> Lens DeleteServiceResponse DeleteServiceResponse Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteServiceResponse' {Text
operationId :: Text
$sel:operationId:DeleteServiceResponse' :: DeleteServiceResponse -> Text
operationId} -> Text
operationId) (\s :: DeleteServiceResponse
s@DeleteServiceResponse' {} Text
a -> DeleteServiceResponse
s {$sel:operationId:DeleteServiceResponse' :: Text
operationId = Text
a} :: DeleteServiceResponse)

instance Prelude.NFData DeleteServiceResponse