{-# 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.Omics.DeleteRun
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Deletes a workflow run.
module Amazonka.Omics.DeleteRun
  ( -- * Creating a Request
    DeleteRun (..),
    newDeleteRun,

    -- * Request Lenses
    deleteRun_id,

    -- * Destructuring the Response
    DeleteRunResponse (..),
    newDeleteRunResponse,
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.Omics.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

-- | /See:/ 'newDeleteRun' smart constructor.
data DeleteRun = DeleteRun'
  { -- | The run\'s ID.
    DeleteRun -> Text
id :: Prelude.Text
  }
  deriving (DeleteRun -> DeleteRun -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRun -> DeleteRun -> Bool
$c/= :: DeleteRun -> DeleteRun -> Bool
== :: DeleteRun -> DeleteRun -> Bool
$c== :: DeleteRun -> DeleteRun -> Bool
Prelude.Eq, ReadPrec [DeleteRun]
ReadPrec DeleteRun
Int -> ReadS DeleteRun
ReadS [DeleteRun]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRun]
$creadListPrec :: ReadPrec [DeleteRun]
readPrec :: ReadPrec DeleteRun
$creadPrec :: ReadPrec DeleteRun
readList :: ReadS [DeleteRun]
$creadList :: ReadS [DeleteRun]
readsPrec :: Int -> ReadS DeleteRun
$creadsPrec :: Int -> ReadS DeleteRun
Prelude.Read, Int -> DeleteRun -> ShowS
[DeleteRun] -> ShowS
DeleteRun -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRun] -> ShowS
$cshowList :: [DeleteRun] -> ShowS
show :: DeleteRun -> String
$cshow :: DeleteRun -> String
showsPrec :: Int -> DeleteRun -> ShowS
$cshowsPrec :: Int -> DeleteRun -> ShowS
Prelude.Show, forall x. Rep DeleteRun x -> DeleteRun
forall x. DeleteRun -> Rep DeleteRun x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteRun x -> DeleteRun
$cfrom :: forall x. DeleteRun -> Rep DeleteRun x
Prelude.Generic)

-- |
-- Create a value of 'DeleteRun' 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:
--
-- 'id', 'deleteRun_id' - The run\'s ID.
newDeleteRun ::
  -- | 'id'
  Prelude.Text ->
  DeleteRun
newDeleteRun :: Text -> DeleteRun
newDeleteRun Text
pId_ = DeleteRun' {$sel:id:DeleteRun' :: Text
id = Text
pId_}

-- | The run\'s ID.
deleteRun_id :: Lens.Lens' DeleteRun Prelude.Text
deleteRun_id :: Lens' DeleteRun Text
deleteRun_id = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRun' {Text
id :: Text
$sel:id:DeleteRun' :: DeleteRun -> Text
id} -> Text
id) (\s :: DeleteRun
s@DeleteRun' {} Text
a -> DeleteRun
s {$sel:id:DeleteRun' :: Text
id = Text
a} :: DeleteRun)

instance Core.AWSRequest DeleteRun where
  type AWSResponse DeleteRun = DeleteRunResponse
  request :: (Service -> Service) -> DeleteRun -> Request DeleteRun
request Service -> Service
overrides =
    forall a. ToRequest a => Service -> a -> Request a
Request.delete (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy DeleteRun
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteRun)))
response = forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull DeleteRunResponse
DeleteRunResponse'

instance Prelude.Hashable DeleteRun where
  hashWithSalt :: Int -> DeleteRun -> Int
hashWithSalt Int
_salt DeleteRun' {Text
id :: Text
$sel:id:DeleteRun' :: DeleteRun -> Text
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
id

instance Prelude.NFData DeleteRun where
  rnf :: DeleteRun -> ()
rnf DeleteRun' {Text
id :: Text
$sel:id:DeleteRun' :: DeleteRun -> Text
..} = forall a. NFData a => a -> ()
Prelude.rnf Text
id

instance Data.ToHeaders DeleteRun where
  toHeaders :: DeleteRun -> [Header]
toHeaders =
    forall a b. a -> b -> a
Prelude.const
      ( forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> [Header]
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Data.ToPath DeleteRun where
  toPath :: DeleteRun -> ByteString
toPath DeleteRun' {Text
id :: Text
$sel:id:DeleteRun' :: DeleteRun -> Text
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat [ByteString
"/run/", forall a. ToByteString a => a -> ByteString
Data.toBS Text
id]

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

-- | /See:/ 'newDeleteRunResponse' smart constructor.
data DeleteRunResponse = DeleteRunResponse'
  {
  }
  deriving (DeleteRunResponse -> DeleteRunResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRunResponse -> DeleteRunResponse -> Bool
$c/= :: DeleteRunResponse -> DeleteRunResponse -> Bool
== :: DeleteRunResponse -> DeleteRunResponse -> Bool
$c== :: DeleteRunResponse -> DeleteRunResponse -> Bool
Prelude.Eq, ReadPrec [DeleteRunResponse]
ReadPrec DeleteRunResponse
Int -> ReadS DeleteRunResponse
ReadS [DeleteRunResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRunResponse]
$creadListPrec :: ReadPrec [DeleteRunResponse]
readPrec :: ReadPrec DeleteRunResponse
$creadPrec :: ReadPrec DeleteRunResponse
readList :: ReadS [DeleteRunResponse]
$creadList :: ReadS [DeleteRunResponse]
readsPrec :: Int -> ReadS DeleteRunResponse
$creadsPrec :: Int -> ReadS DeleteRunResponse
Prelude.Read, Int -> DeleteRunResponse -> ShowS
[DeleteRunResponse] -> ShowS
DeleteRunResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRunResponse] -> ShowS
$cshowList :: [DeleteRunResponse] -> ShowS
show :: DeleteRunResponse -> String
$cshow :: DeleteRunResponse -> String
showsPrec :: Int -> DeleteRunResponse -> ShowS
$cshowsPrec :: Int -> DeleteRunResponse -> ShowS
Prelude.Show, forall x. Rep DeleteRunResponse x -> DeleteRunResponse
forall x. DeleteRunResponse -> Rep DeleteRunResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteRunResponse x -> DeleteRunResponse
$cfrom :: forall x. DeleteRunResponse -> Rep DeleteRunResponse x
Prelude.Generic)

-- |
-- Create a value of 'DeleteRunResponse' 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.
newDeleteRunResponse ::
  DeleteRunResponse
newDeleteRunResponse :: DeleteRunResponse
newDeleteRunResponse = DeleteRunResponse
DeleteRunResponse'

instance Prelude.NFData DeleteRunResponse where
  rnf :: DeleteRunResponse -> ()
rnf DeleteRunResponse
_ = ()