{-# 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.ControlTower.GetControlOperation
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Returns the status of a particular @EnableControl@ or @DisableControl@
-- operation. Displays a message in case of error. Details for an operation
-- are available for 90 days.
module Amazonka.ControlTower.GetControlOperation
  ( -- * Creating a Request
    GetControlOperation (..),
    newGetControlOperation,

    -- * Request Lenses
    getControlOperation_operationIdentifier,

    -- * Destructuring the Response
    GetControlOperationResponse (..),
    newGetControlOperationResponse,

    -- * Response Lenses
    getControlOperationResponse_httpStatus,
    getControlOperationResponse_controlOperation,
  )
where

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

-- | /See:/ 'newGetControlOperation' smart constructor.
data GetControlOperation = GetControlOperation'
  { -- | The ID of the asynchronous operation, which is used to track status. The
    -- operation is available for 90 days.
    GetControlOperation -> Text
operationIdentifier :: Prelude.Text
  }
  deriving (GetControlOperation -> GetControlOperation -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetControlOperation -> GetControlOperation -> Bool
$c/= :: GetControlOperation -> GetControlOperation -> Bool
== :: GetControlOperation -> GetControlOperation -> Bool
$c== :: GetControlOperation -> GetControlOperation -> Bool
Prelude.Eq, ReadPrec [GetControlOperation]
ReadPrec GetControlOperation
Int -> ReadS GetControlOperation
ReadS [GetControlOperation]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetControlOperation]
$creadListPrec :: ReadPrec [GetControlOperation]
readPrec :: ReadPrec GetControlOperation
$creadPrec :: ReadPrec GetControlOperation
readList :: ReadS [GetControlOperation]
$creadList :: ReadS [GetControlOperation]
readsPrec :: Int -> ReadS GetControlOperation
$creadsPrec :: Int -> ReadS GetControlOperation
Prelude.Read, Int -> GetControlOperation -> ShowS
[GetControlOperation] -> ShowS
GetControlOperation -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetControlOperation] -> ShowS
$cshowList :: [GetControlOperation] -> ShowS
show :: GetControlOperation -> String
$cshow :: GetControlOperation -> String
showsPrec :: Int -> GetControlOperation -> ShowS
$cshowsPrec :: Int -> GetControlOperation -> ShowS
Prelude.Show, forall x. Rep GetControlOperation x -> GetControlOperation
forall x. GetControlOperation -> Rep GetControlOperation x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetControlOperation x -> GetControlOperation
$cfrom :: forall x. GetControlOperation -> Rep GetControlOperation x
Prelude.Generic)

-- |
-- Create a value of 'GetControlOperation' 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:
--
-- 'operationIdentifier', 'getControlOperation_operationIdentifier' - The ID of the asynchronous operation, which is used to track status. The
-- operation is available for 90 days.
newGetControlOperation ::
  -- | 'operationIdentifier'
  Prelude.Text ->
  GetControlOperation
newGetControlOperation :: Text -> GetControlOperation
newGetControlOperation Text
pOperationIdentifier_ =
  GetControlOperation'
    { $sel:operationIdentifier:GetControlOperation' :: Text
operationIdentifier =
        Text
pOperationIdentifier_
    }

-- | The ID of the asynchronous operation, which is used to track status. The
-- operation is available for 90 days.
getControlOperation_operationIdentifier :: Lens.Lens' GetControlOperation Prelude.Text
getControlOperation_operationIdentifier :: Lens' GetControlOperation Text
getControlOperation_operationIdentifier = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetControlOperation' {Text
operationIdentifier :: Text
$sel:operationIdentifier:GetControlOperation' :: GetControlOperation -> Text
operationIdentifier} -> Text
operationIdentifier) (\s :: GetControlOperation
s@GetControlOperation' {} Text
a -> GetControlOperation
s {$sel:operationIdentifier:GetControlOperation' :: Text
operationIdentifier = Text
a} :: GetControlOperation)

instance Core.AWSRequest GetControlOperation where
  type
    AWSResponse GetControlOperation =
      GetControlOperationResponse
  request :: (Service -> Service)
-> GetControlOperation -> Request GetControlOperation
request Service -> Service
overrides =
    forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy GetControlOperation
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse GetControlOperation)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
      ( \Int
s ResponseHeaders
h Object
x ->
          Int -> ControlOperation -> GetControlOperationResponse
GetControlOperationResponse'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Either String a
Data..:> Key
"controlOperation")
      )

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

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

instance Data.ToHeaders GetControlOperation where
  toHeaders :: GetControlOperation -> ResponseHeaders
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 -> ResponseHeaders
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

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

instance Data.ToPath GetControlOperation where
  toPath :: GetControlOperation -> ByteString
toPath = forall a b. a -> b -> a
Prelude.const ByteString
"/get-control-operation"

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

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

-- |
-- Create a value of 'GetControlOperationResponse' 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', 'getControlOperationResponse_httpStatus' - The response's http status code.
--
-- 'controlOperation', 'getControlOperationResponse_controlOperation' -
newGetControlOperationResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  -- | 'controlOperation'
  ControlOperation ->
  GetControlOperationResponse
newGetControlOperationResponse :: Int -> ControlOperation -> GetControlOperationResponse
newGetControlOperationResponse
  Int
pHttpStatus_
  ControlOperation
pControlOperation_ =
    GetControlOperationResponse'
      { $sel:httpStatus:GetControlOperationResponse' :: Int
httpStatus =
          Int
pHttpStatus_,
        $sel:controlOperation:GetControlOperationResponse' :: ControlOperation
controlOperation = ControlOperation
pControlOperation_
      }

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

getControlOperationResponse_controlOperation :: Lens.Lens' GetControlOperationResponse ControlOperation
getControlOperationResponse_controlOperation :: Lens' GetControlOperationResponse ControlOperation
getControlOperationResponse_controlOperation = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetControlOperationResponse' {ControlOperation
controlOperation :: ControlOperation
$sel:controlOperation:GetControlOperationResponse' :: GetControlOperationResponse -> ControlOperation
controlOperation} -> ControlOperation
controlOperation) (\s :: GetControlOperationResponse
s@GetControlOperationResponse' {} ControlOperation
a -> GetControlOperationResponse
s {$sel:controlOperation:GetControlOperationResponse' :: ControlOperation
controlOperation = ControlOperation
a} :: GetControlOperationResponse)

instance Prelude.NFData GetControlOperationResponse where
  rnf :: GetControlOperationResponse -> ()
rnf GetControlOperationResponse' {Int
ControlOperation
controlOperation :: ControlOperation
httpStatus :: Int
$sel:controlOperation:GetControlOperationResponse' :: GetControlOperationResponse -> ControlOperation
$sel:httpStatus:GetControlOperationResponse' :: GetControlOperationResponse -> Int
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf ControlOperation
controlOperation