{-# 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.CloudDirectory.CreateDirectory
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Creates a Directory by copying the published schema into the directory.
-- A directory cannot be created without a schema.
--
-- You can also quickly create a directory using a managed schema, called
-- the @QuickStartSchema@. For more information, see
-- <https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_managed.html Managed Schema>
-- in the /Amazon Cloud Directory Developer Guide/.
module Amazonka.CloudDirectory.CreateDirectory
  ( -- * Creating a Request
    CreateDirectory (..),
    newCreateDirectory,

    -- * Request Lenses
    createDirectory_name,
    createDirectory_schemaArn,

    -- * Destructuring the Response
    CreateDirectoryResponse (..),
    newCreateDirectoryResponse,

    -- * Response Lenses
    createDirectoryResponse_httpStatus,
    createDirectoryResponse_directoryArn,
    createDirectoryResponse_name,
    createDirectoryResponse_objectIdentifier,
    createDirectoryResponse_appliedSchemaArn,
  )
where

import Amazonka.CloudDirectory.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:/ 'newCreateDirectory' smart constructor.
data CreateDirectory = CreateDirectory'
  { -- | The name of the Directory. Should be unique per account, per region.
    CreateDirectory -> Text
name :: Prelude.Text,
    -- | The Amazon Resource Name (ARN) of the published schema that will be
    -- copied into the data Directory. For more information, see arns.
    CreateDirectory -> Text
schemaArn :: Prelude.Text
  }
  deriving (CreateDirectory -> CreateDirectory -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateDirectory -> CreateDirectory -> Bool
$c/= :: CreateDirectory -> CreateDirectory -> Bool
== :: CreateDirectory -> CreateDirectory -> Bool
$c== :: CreateDirectory -> CreateDirectory -> Bool
Prelude.Eq, ReadPrec [CreateDirectory]
ReadPrec CreateDirectory
Int -> ReadS CreateDirectory
ReadS [CreateDirectory]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateDirectory]
$creadListPrec :: ReadPrec [CreateDirectory]
readPrec :: ReadPrec CreateDirectory
$creadPrec :: ReadPrec CreateDirectory
readList :: ReadS [CreateDirectory]
$creadList :: ReadS [CreateDirectory]
readsPrec :: Int -> ReadS CreateDirectory
$creadsPrec :: Int -> ReadS CreateDirectory
Prelude.Read, Int -> CreateDirectory -> ShowS
[CreateDirectory] -> ShowS
CreateDirectory -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateDirectory] -> ShowS
$cshowList :: [CreateDirectory] -> ShowS
show :: CreateDirectory -> String
$cshow :: CreateDirectory -> String
showsPrec :: Int -> CreateDirectory -> ShowS
$cshowsPrec :: Int -> CreateDirectory -> ShowS
Prelude.Show, forall x. Rep CreateDirectory x -> CreateDirectory
forall x. CreateDirectory -> Rep CreateDirectory x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateDirectory x -> CreateDirectory
$cfrom :: forall x. CreateDirectory -> Rep CreateDirectory x
Prelude.Generic)

-- |
-- Create a value of 'CreateDirectory' 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:
--
-- 'name', 'createDirectory_name' - The name of the Directory. Should be unique per account, per region.
--
-- 'schemaArn', 'createDirectory_schemaArn' - The Amazon Resource Name (ARN) of the published schema that will be
-- copied into the data Directory. For more information, see arns.
newCreateDirectory ::
  -- | 'name'
  Prelude.Text ->
  -- | 'schemaArn'
  Prelude.Text ->
  CreateDirectory
newCreateDirectory :: Text -> Text -> CreateDirectory
newCreateDirectory Text
pName_ Text
pSchemaArn_ =
  CreateDirectory'
    { $sel:name:CreateDirectory' :: Text
name = Text
pName_,
      $sel:schemaArn:CreateDirectory' :: Text
schemaArn = Text
pSchemaArn_
    }

-- | The name of the Directory. Should be unique per account, per region.
createDirectory_name :: Lens.Lens' CreateDirectory Prelude.Text
createDirectory_name :: Lens' CreateDirectory Text
createDirectory_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateDirectory' {Text
name :: Text
$sel:name:CreateDirectory' :: CreateDirectory -> Text
name} -> Text
name) (\s :: CreateDirectory
s@CreateDirectory' {} Text
a -> CreateDirectory
s {$sel:name:CreateDirectory' :: Text
name = Text
a} :: CreateDirectory)

-- | The Amazon Resource Name (ARN) of the published schema that will be
-- copied into the data Directory. For more information, see arns.
createDirectory_schemaArn :: Lens.Lens' CreateDirectory Prelude.Text
createDirectory_schemaArn :: Lens' CreateDirectory Text
createDirectory_schemaArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateDirectory' {Text
schemaArn :: Text
$sel:schemaArn:CreateDirectory' :: CreateDirectory -> Text
schemaArn} -> Text
schemaArn) (\s :: CreateDirectory
s@CreateDirectory' {} Text
a -> CreateDirectory
s {$sel:schemaArn:CreateDirectory' :: Text
schemaArn = Text
a} :: CreateDirectory)

instance Core.AWSRequest CreateDirectory where
  type
    AWSResponse CreateDirectory =
      CreateDirectoryResponse
  request :: (Service -> Service) -> CreateDirectory -> Request CreateDirectory
request Service -> Service
overrides =
    forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.putJSON (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy CreateDirectory
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreateDirectory)))
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 -> Text -> Text -> Text -> Text -> CreateDirectoryResponse
CreateDirectoryResponse'
            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
"DirectoryArn")
            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
"Name")
            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
"ObjectIdentifier")
            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
"AppliedSchemaArn")
      )

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

instance Prelude.NFData CreateDirectory where
  rnf :: CreateDirectory -> ()
rnf CreateDirectory' {Text
schemaArn :: Text
name :: Text
$sel:schemaArn:CreateDirectory' :: CreateDirectory -> Text
$sel:name:CreateDirectory' :: CreateDirectory -> Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Text
name
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
schemaArn

instance Data.ToHeaders CreateDirectory where
  toHeaders :: CreateDirectory -> ResponseHeaders
toHeaders CreateDirectory' {Text
schemaArn :: Text
name :: Text
$sel:schemaArn:CreateDirectory' :: CreateDirectory -> Text
$sel:name:CreateDirectory' :: CreateDirectory -> Text
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [HeaderName
"x-amz-data-partition" forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# Text
schemaArn]

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

instance Data.ToPath CreateDirectory where
  toPath :: CreateDirectory -> ByteString
toPath =
    forall a b. a -> b -> a
Prelude.const
      ByteString
"/amazonclouddirectory/2017-01-11/directory/create"

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

-- | /See:/ 'newCreateDirectoryResponse' smart constructor.
data CreateDirectoryResponse = CreateDirectoryResponse'
  { -- | The response's http status code.
    CreateDirectoryResponse -> Int
httpStatus :: Prelude.Int,
    -- | The ARN that is associated with the Directory. For more information, see
    -- arns.
    CreateDirectoryResponse -> Text
directoryArn :: Prelude.Text,
    -- | The name of the Directory.
    CreateDirectoryResponse -> Text
name :: Prelude.Text,
    -- | The root object node of the created directory.
    CreateDirectoryResponse -> Text
objectIdentifier :: Prelude.Text,
    -- | The ARN of the published schema in the Directory. Once a published
    -- schema is copied into the directory, it has its own ARN, which is
    -- referred to applied schema ARN. For more information, see arns.
    CreateDirectoryResponse -> Text
appliedSchemaArn :: Prelude.Text
  }
  deriving (CreateDirectoryResponse -> CreateDirectoryResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateDirectoryResponse -> CreateDirectoryResponse -> Bool
$c/= :: CreateDirectoryResponse -> CreateDirectoryResponse -> Bool
== :: CreateDirectoryResponse -> CreateDirectoryResponse -> Bool
$c== :: CreateDirectoryResponse -> CreateDirectoryResponse -> Bool
Prelude.Eq, ReadPrec [CreateDirectoryResponse]
ReadPrec CreateDirectoryResponse
Int -> ReadS CreateDirectoryResponse
ReadS [CreateDirectoryResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateDirectoryResponse]
$creadListPrec :: ReadPrec [CreateDirectoryResponse]
readPrec :: ReadPrec CreateDirectoryResponse
$creadPrec :: ReadPrec CreateDirectoryResponse
readList :: ReadS [CreateDirectoryResponse]
$creadList :: ReadS [CreateDirectoryResponse]
readsPrec :: Int -> ReadS CreateDirectoryResponse
$creadsPrec :: Int -> ReadS CreateDirectoryResponse
Prelude.Read, Int -> CreateDirectoryResponse -> ShowS
[CreateDirectoryResponse] -> ShowS
CreateDirectoryResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateDirectoryResponse] -> ShowS
$cshowList :: [CreateDirectoryResponse] -> ShowS
show :: CreateDirectoryResponse -> String
$cshow :: CreateDirectoryResponse -> String
showsPrec :: Int -> CreateDirectoryResponse -> ShowS
$cshowsPrec :: Int -> CreateDirectoryResponse -> ShowS
Prelude.Show, forall x. Rep CreateDirectoryResponse x -> CreateDirectoryResponse
forall x. CreateDirectoryResponse -> Rep CreateDirectoryResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateDirectoryResponse x -> CreateDirectoryResponse
$cfrom :: forall x. CreateDirectoryResponse -> Rep CreateDirectoryResponse x
Prelude.Generic)

-- |
-- Create a value of 'CreateDirectoryResponse' 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', 'createDirectoryResponse_httpStatus' - The response's http status code.
--
-- 'directoryArn', 'createDirectoryResponse_directoryArn' - The ARN that is associated with the Directory. For more information, see
-- arns.
--
-- 'name', 'createDirectoryResponse_name' - The name of the Directory.
--
-- 'objectIdentifier', 'createDirectoryResponse_objectIdentifier' - The root object node of the created directory.
--
-- 'appliedSchemaArn', 'createDirectoryResponse_appliedSchemaArn' - The ARN of the published schema in the Directory. Once a published
-- schema is copied into the directory, it has its own ARN, which is
-- referred to applied schema ARN. For more information, see arns.
newCreateDirectoryResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  -- | 'directoryArn'
  Prelude.Text ->
  -- | 'name'
  Prelude.Text ->
  -- | 'objectIdentifier'
  Prelude.Text ->
  -- | 'appliedSchemaArn'
  Prelude.Text ->
  CreateDirectoryResponse
newCreateDirectoryResponse :: Int -> Text -> Text -> Text -> Text -> CreateDirectoryResponse
newCreateDirectoryResponse
  Int
pHttpStatus_
  Text
pDirectoryArn_
  Text
pName_
  Text
pObjectIdentifier_
  Text
pAppliedSchemaArn_ =
    CreateDirectoryResponse'
      { $sel:httpStatus:CreateDirectoryResponse' :: Int
httpStatus = Int
pHttpStatus_,
        $sel:directoryArn:CreateDirectoryResponse' :: Text
directoryArn = Text
pDirectoryArn_,
        $sel:name:CreateDirectoryResponse' :: Text
name = Text
pName_,
        $sel:objectIdentifier:CreateDirectoryResponse' :: Text
objectIdentifier = Text
pObjectIdentifier_,
        $sel:appliedSchemaArn:CreateDirectoryResponse' :: Text
appliedSchemaArn = Text
pAppliedSchemaArn_
      }

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

-- | The ARN that is associated with the Directory. For more information, see
-- arns.
createDirectoryResponse_directoryArn :: Lens.Lens' CreateDirectoryResponse Prelude.Text
createDirectoryResponse_directoryArn :: Lens' CreateDirectoryResponse Text
createDirectoryResponse_directoryArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateDirectoryResponse' {Text
directoryArn :: Text
$sel:directoryArn:CreateDirectoryResponse' :: CreateDirectoryResponse -> Text
directoryArn} -> Text
directoryArn) (\s :: CreateDirectoryResponse
s@CreateDirectoryResponse' {} Text
a -> CreateDirectoryResponse
s {$sel:directoryArn:CreateDirectoryResponse' :: Text
directoryArn = Text
a} :: CreateDirectoryResponse)

-- | The name of the Directory.
createDirectoryResponse_name :: Lens.Lens' CreateDirectoryResponse Prelude.Text
createDirectoryResponse_name :: Lens' CreateDirectoryResponse Text
createDirectoryResponse_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateDirectoryResponse' {Text
name :: Text
$sel:name:CreateDirectoryResponse' :: CreateDirectoryResponse -> Text
name} -> Text
name) (\s :: CreateDirectoryResponse
s@CreateDirectoryResponse' {} Text
a -> CreateDirectoryResponse
s {$sel:name:CreateDirectoryResponse' :: Text
name = Text
a} :: CreateDirectoryResponse)

-- | The root object node of the created directory.
createDirectoryResponse_objectIdentifier :: Lens.Lens' CreateDirectoryResponse Prelude.Text
createDirectoryResponse_objectIdentifier :: Lens' CreateDirectoryResponse Text
createDirectoryResponse_objectIdentifier = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateDirectoryResponse' {Text
objectIdentifier :: Text
$sel:objectIdentifier:CreateDirectoryResponse' :: CreateDirectoryResponse -> Text
objectIdentifier} -> Text
objectIdentifier) (\s :: CreateDirectoryResponse
s@CreateDirectoryResponse' {} Text
a -> CreateDirectoryResponse
s {$sel:objectIdentifier:CreateDirectoryResponse' :: Text
objectIdentifier = Text
a} :: CreateDirectoryResponse)

-- | The ARN of the published schema in the Directory. Once a published
-- schema is copied into the directory, it has its own ARN, which is
-- referred to applied schema ARN. For more information, see arns.
createDirectoryResponse_appliedSchemaArn :: Lens.Lens' CreateDirectoryResponse Prelude.Text
createDirectoryResponse_appliedSchemaArn :: Lens' CreateDirectoryResponse Text
createDirectoryResponse_appliedSchemaArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateDirectoryResponse' {Text
appliedSchemaArn :: Text
$sel:appliedSchemaArn:CreateDirectoryResponse' :: CreateDirectoryResponse -> Text
appliedSchemaArn} -> Text
appliedSchemaArn) (\s :: CreateDirectoryResponse
s@CreateDirectoryResponse' {} Text
a -> CreateDirectoryResponse
s {$sel:appliedSchemaArn:CreateDirectoryResponse' :: Text
appliedSchemaArn = Text
a} :: CreateDirectoryResponse)

instance Prelude.NFData CreateDirectoryResponse where
  rnf :: CreateDirectoryResponse -> ()
rnf CreateDirectoryResponse' {Int
Text
appliedSchemaArn :: Text
objectIdentifier :: Text
name :: Text
directoryArn :: Text
httpStatus :: Int
$sel:appliedSchemaArn:CreateDirectoryResponse' :: CreateDirectoryResponse -> Text
$sel:objectIdentifier:CreateDirectoryResponse' :: CreateDirectoryResponse -> Text
$sel:name:CreateDirectoryResponse' :: CreateDirectoryResponse -> Text
$sel:directoryArn:CreateDirectoryResponse' :: CreateDirectoryResponse -> Text
$sel:httpStatus:CreateDirectoryResponse' :: CreateDirectoryResponse -> 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 Text
directoryArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
name
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
objectIdentifier
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
appliedSchemaArn