{-# 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.CloudDirectory.GetDirectory
(
GetDirectory (..),
newGetDirectory,
getDirectory_directoryArn,
GetDirectoryResponse (..),
newGetDirectoryResponse,
getDirectoryResponse_httpStatus,
getDirectoryResponse_directory,
)
where
import Amazonka.CloudDirectory.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
data GetDirectory = GetDirectory'
{
GetDirectory -> Text
directoryArn :: Prelude.Text
}
deriving (GetDirectory -> GetDirectory -> Bool
(GetDirectory -> GetDirectory -> Bool)
-> (GetDirectory -> GetDirectory -> Bool) -> Eq GetDirectory
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetDirectory -> GetDirectory -> Bool
$c/= :: GetDirectory -> GetDirectory -> Bool
== :: GetDirectory -> GetDirectory -> Bool
$c== :: GetDirectory -> GetDirectory -> Bool
Prelude.Eq, ReadPrec [GetDirectory]
ReadPrec GetDirectory
Int -> ReadS GetDirectory
ReadS [GetDirectory]
(Int -> ReadS GetDirectory)
-> ReadS [GetDirectory]
-> ReadPrec GetDirectory
-> ReadPrec [GetDirectory]
-> Read GetDirectory
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetDirectory]
$creadListPrec :: ReadPrec [GetDirectory]
readPrec :: ReadPrec GetDirectory
$creadPrec :: ReadPrec GetDirectory
readList :: ReadS [GetDirectory]
$creadList :: ReadS [GetDirectory]
readsPrec :: Int -> ReadS GetDirectory
$creadsPrec :: Int -> ReadS GetDirectory
Prelude.Read, Int -> GetDirectory -> ShowS
[GetDirectory] -> ShowS
GetDirectory -> String
(Int -> GetDirectory -> ShowS)
-> (GetDirectory -> String)
-> ([GetDirectory] -> ShowS)
-> Show GetDirectory
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetDirectory] -> ShowS
$cshowList :: [GetDirectory] -> ShowS
show :: GetDirectory -> String
$cshow :: GetDirectory -> String
showsPrec :: Int -> GetDirectory -> ShowS
$cshowsPrec :: Int -> GetDirectory -> ShowS
Prelude.Show, (forall x. GetDirectory -> Rep GetDirectory x)
-> (forall x. Rep GetDirectory x -> GetDirectory)
-> Generic GetDirectory
forall x. Rep GetDirectory x -> GetDirectory
forall x. GetDirectory -> Rep GetDirectory x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetDirectory x -> GetDirectory
$cfrom :: forall x. GetDirectory -> Rep GetDirectory x
Prelude.Generic)
newGetDirectory ::
Prelude.Text ->
GetDirectory
newGetDirectory :: Text -> GetDirectory
newGetDirectory Text
pDirectoryArn_ =
GetDirectory' :: Text -> GetDirectory
GetDirectory' {$sel:directoryArn:GetDirectory' :: Text
directoryArn = Text
pDirectoryArn_}
getDirectory_directoryArn :: Lens.Lens' GetDirectory Prelude.Text
getDirectory_directoryArn :: (Text -> f Text) -> GetDirectory -> f GetDirectory
getDirectory_directoryArn = (GetDirectory -> Text)
-> (GetDirectory -> Text -> GetDirectory)
-> Lens GetDirectory GetDirectory Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetDirectory' {Text
directoryArn :: Text
$sel:directoryArn:GetDirectory' :: GetDirectory -> Text
directoryArn} -> Text
directoryArn) (\s :: GetDirectory
s@GetDirectory' {} Text
a -> GetDirectory
s {$sel:directoryArn:GetDirectory' :: Text
directoryArn = Text
a} :: GetDirectory)
instance Core.AWSRequest GetDirectory where
type AWSResponse GetDirectory = GetDirectoryResponse
request :: GetDirectory -> Request GetDirectory
request = Service -> GetDirectory -> Request GetDirectory
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy GetDirectory
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse GetDirectory)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse GetDirectory))
-> Logger
-> Service
-> Proxy GetDirectory
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse GetDirectory)))
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 -> Directory -> GetDirectoryResponse
GetDirectoryResponse'
(Int -> Directory -> GetDirectoryResponse)
-> Either String Int
-> Either String (Directory -> GetDirectoryResponse)
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 (Directory -> GetDirectoryResponse)
-> Either String Directory -> Either String GetDirectoryResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String Directory
forall a. FromJSON a => Object -> Text -> Either String a
Core..:> Text
"Directory")
)
instance Prelude.Hashable GetDirectory
instance Prelude.NFData GetDirectory
instance Core.ToHeaders GetDirectory where
toHeaders :: GetDirectory -> ResponseHeaders
toHeaders GetDirectory' {Text
directoryArn :: Text
$sel:directoryArn:GetDirectory' :: GetDirectory -> Text
..} =
[ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[HeaderName
"x-amz-data-partition" HeaderName -> Text -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# Text
directoryArn]
instance Core.ToJSON GetDirectory where
toJSON :: GetDirectory -> Value
toJSON = Value -> GetDirectory -> Value
forall a b. a -> b -> a
Prelude.const (Object -> Value
Core.Object Object
forall a. Monoid a => a
Prelude.mempty)
instance Core.ToPath GetDirectory where
toPath :: GetDirectory -> ByteString
toPath =
ByteString -> GetDirectory -> ByteString
forall a b. a -> b -> a
Prelude.const
ByteString
"/amazonclouddirectory/2017-01-11/directory/get"
instance Core.ToQuery GetDirectory where
toQuery :: GetDirectory -> QueryString
toQuery = QueryString -> GetDirectory -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data GetDirectoryResponse = GetDirectoryResponse'
{
GetDirectoryResponse -> Int
httpStatus :: Prelude.Int,
GetDirectoryResponse -> Directory
directory :: Directory
}
deriving (GetDirectoryResponse -> GetDirectoryResponse -> Bool
(GetDirectoryResponse -> GetDirectoryResponse -> Bool)
-> (GetDirectoryResponse -> GetDirectoryResponse -> Bool)
-> Eq GetDirectoryResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetDirectoryResponse -> GetDirectoryResponse -> Bool
$c/= :: GetDirectoryResponse -> GetDirectoryResponse -> Bool
== :: GetDirectoryResponse -> GetDirectoryResponse -> Bool
$c== :: GetDirectoryResponse -> GetDirectoryResponse -> Bool
Prelude.Eq, ReadPrec [GetDirectoryResponse]
ReadPrec GetDirectoryResponse
Int -> ReadS GetDirectoryResponse
ReadS [GetDirectoryResponse]
(Int -> ReadS GetDirectoryResponse)
-> ReadS [GetDirectoryResponse]
-> ReadPrec GetDirectoryResponse
-> ReadPrec [GetDirectoryResponse]
-> Read GetDirectoryResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetDirectoryResponse]
$creadListPrec :: ReadPrec [GetDirectoryResponse]
readPrec :: ReadPrec GetDirectoryResponse
$creadPrec :: ReadPrec GetDirectoryResponse
readList :: ReadS [GetDirectoryResponse]
$creadList :: ReadS [GetDirectoryResponse]
readsPrec :: Int -> ReadS GetDirectoryResponse
$creadsPrec :: Int -> ReadS GetDirectoryResponse
Prelude.Read, Int -> GetDirectoryResponse -> ShowS
[GetDirectoryResponse] -> ShowS
GetDirectoryResponse -> String
(Int -> GetDirectoryResponse -> ShowS)
-> (GetDirectoryResponse -> String)
-> ([GetDirectoryResponse] -> ShowS)
-> Show GetDirectoryResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetDirectoryResponse] -> ShowS
$cshowList :: [GetDirectoryResponse] -> ShowS
show :: GetDirectoryResponse -> String
$cshow :: GetDirectoryResponse -> String
showsPrec :: Int -> GetDirectoryResponse -> ShowS
$cshowsPrec :: Int -> GetDirectoryResponse -> ShowS
Prelude.Show, (forall x. GetDirectoryResponse -> Rep GetDirectoryResponse x)
-> (forall x. Rep GetDirectoryResponse x -> GetDirectoryResponse)
-> Generic GetDirectoryResponse
forall x. Rep GetDirectoryResponse x -> GetDirectoryResponse
forall x. GetDirectoryResponse -> Rep GetDirectoryResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetDirectoryResponse x -> GetDirectoryResponse
$cfrom :: forall x. GetDirectoryResponse -> Rep GetDirectoryResponse x
Prelude.Generic)
newGetDirectoryResponse ::
Prelude.Int ->
Directory ->
GetDirectoryResponse
newGetDirectoryResponse :: Int -> Directory -> GetDirectoryResponse
newGetDirectoryResponse Int
pHttpStatus_ Directory
pDirectory_ =
GetDirectoryResponse' :: Int -> Directory -> GetDirectoryResponse
GetDirectoryResponse'
{ $sel:httpStatus:GetDirectoryResponse' :: Int
httpStatus = Int
pHttpStatus_,
$sel:directory:GetDirectoryResponse' :: Directory
directory = Directory
pDirectory_
}
getDirectoryResponse_httpStatus :: Lens.Lens' GetDirectoryResponse Prelude.Int
getDirectoryResponse_httpStatus :: (Int -> f Int) -> GetDirectoryResponse -> f GetDirectoryResponse
getDirectoryResponse_httpStatus = (GetDirectoryResponse -> Int)
-> (GetDirectoryResponse -> Int -> GetDirectoryResponse)
-> Lens GetDirectoryResponse GetDirectoryResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetDirectoryResponse' {Int
httpStatus :: Int
$sel:httpStatus:GetDirectoryResponse' :: GetDirectoryResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: GetDirectoryResponse
s@GetDirectoryResponse' {} Int
a -> GetDirectoryResponse
s {$sel:httpStatus:GetDirectoryResponse' :: Int
httpStatus = Int
a} :: GetDirectoryResponse)
getDirectoryResponse_directory :: Lens.Lens' GetDirectoryResponse Directory
getDirectoryResponse_directory :: (Directory -> f Directory)
-> GetDirectoryResponse -> f GetDirectoryResponse
getDirectoryResponse_directory = (GetDirectoryResponse -> Directory)
-> (GetDirectoryResponse -> Directory -> GetDirectoryResponse)
-> Lens
GetDirectoryResponse GetDirectoryResponse Directory Directory
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetDirectoryResponse' {Directory
directory :: Directory
$sel:directory:GetDirectoryResponse' :: GetDirectoryResponse -> Directory
directory} -> Directory
directory) (\s :: GetDirectoryResponse
s@GetDirectoryResponse' {} Directory
a -> GetDirectoryResponse
s {$sel:directory:GetDirectoryResponse' :: Directory
directory = Directory
a} :: GetDirectoryResponse)
instance Prelude.NFData GetDirectoryResponse