{-# 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.GetAppliedSchemaVersion
-- 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)
--
-- Returns current applied schema version ARN, including the minor version
-- in use.
module Amazonka.CloudDirectory.GetAppliedSchemaVersion
  ( -- * Creating a Request
    GetAppliedSchemaVersion (..),
    newGetAppliedSchemaVersion,

    -- * Request Lenses
    getAppliedSchemaVersion_schemaArn,

    -- * Destructuring the Response
    GetAppliedSchemaVersionResponse (..),
    newGetAppliedSchemaVersionResponse,

    -- * Response Lenses
    getAppliedSchemaVersionResponse_appliedSchemaArn,
    getAppliedSchemaVersionResponse_httpStatus,
  )
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

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

-- |
-- Create a value of 'GetAppliedSchemaVersion' 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:
--
-- 'schemaArn', 'getAppliedSchemaVersion_schemaArn' - The ARN of the applied schema.
newGetAppliedSchemaVersion ::
  -- | 'schemaArn'
  Prelude.Text ->
  GetAppliedSchemaVersion
newGetAppliedSchemaVersion :: Text -> GetAppliedSchemaVersion
newGetAppliedSchemaVersion Text
pSchemaArn_ =
  GetAppliedSchemaVersion' :: Text -> GetAppliedSchemaVersion
GetAppliedSchemaVersion' {$sel:schemaArn:GetAppliedSchemaVersion' :: Text
schemaArn = Text
pSchemaArn_}

-- | The ARN of the applied schema.
getAppliedSchemaVersion_schemaArn :: Lens.Lens' GetAppliedSchemaVersion Prelude.Text
getAppliedSchemaVersion_schemaArn :: (Text -> f Text)
-> GetAppliedSchemaVersion -> f GetAppliedSchemaVersion
getAppliedSchemaVersion_schemaArn = (GetAppliedSchemaVersion -> Text)
-> (GetAppliedSchemaVersion -> Text -> GetAppliedSchemaVersion)
-> Lens GetAppliedSchemaVersion GetAppliedSchemaVersion Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetAppliedSchemaVersion' {Text
schemaArn :: Text
$sel:schemaArn:GetAppliedSchemaVersion' :: GetAppliedSchemaVersion -> Text
schemaArn} -> Text
schemaArn) (\s :: GetAppliedSchemaVersion
s@GetAppliedSchemaVersion' {} Text
a -> GetAppliedSchemaVersion
s {$sel:schemaArn:GetAppliedSchemaVersion' :: Text
schemaArn = Text
a} :: GetAppliedSchemaVersion)

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

instance Prelude.Hashable GetAppliedSchemaVersion

instance Prelude.NFData GetAppliedSchemaVersion

instance Core.ToHeaders GetAppliedSchemaVersion where
  toHeaders :: GetAppliedSchemaVersion -> ResponseHeaders
toHeaders = ResponseHeaders -> GetAppliedSchemaVersion -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty

instance Core.ToJSON GetAppliedSchemaVersion where
  toJSON :: GetAppliedSchemaVersion -> Value
toJSON GetAppliedSchemaVersion' {Text
schemaArn :: Text
$sel:schemaArn:GetAppliedSchemaVersion' :: GetAppliedSchemaVersion -> 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
"SchemaArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
schemaArn)]
      )

instance Core.ToPath GetAppliedSchemaVersion where
  toPath :: GetAppliedSchemaVersion -> ByteString
toPath =
    ByteString -> GetAppliedSchemaVersion -> ByteString
forall a b. a -> b -> a
Prelude.const
      ByteString
"/amazonclouddirectory/2017-01-11/schema/getappliedschema"

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

-- | /See:/ 'newGetAppliedSchemaVersionResponse' smart constructor.
data GetAppliedSchemaVersionResponse = GetAppliedSchemaVersionResponse'
  { -- | Current applied schema ARN, including the minor version in use if one
    -- was provided.
    GetAppliedSchemaVersionResponse -> Maybe Text
appliedSchemaArn :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    GetAppliedSchemaVersionResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (GetAppliedSchemaVersionResponse
-> GetAppliedSchemaVersionResponse -> Bool
(GetAppliedSchemaVersionResponse
 -> GetAppliedSchemaVersionResponse -> Bool)
-> (GetAppliedSchemaVersionResponse
    -> GetAppliedSchemaVersionResponse -> Bool)
-> Eq GetAppliedSchemaVersionResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetAppliedSchemaVersionResponse
-> GetAppliedSchemaVersionResponse -> Bool
$c/= :: GetAppliedSchemaVersionResponse
-> GetAppliedSchemaVersionResponse -> Bool
== :: GetAppliedSchemaVersionResponse
-> GetAppliedSchemaVersionResponse -> Bool
$c== :: GetAppliedSchemaVersionResponse
-> GetAppliedSchemaVersionResponse -> Bool
Prelude.Eq, ReadPrec [GetAppliedSchemaVersionResponse]
ReadPrec GetAppliedSchemaVersionResponse
Int -> ReadS GetAppliedSchemaVersionResponse
ReadS [GetAppliedSchemaVersionResponse]
(Int -> ReadS GetAppliedSchemaVersionResponse)
-> ReadS [GetAppliedSchemaVersionResponse]
-> ReadPrec GetAppliedSchemaVersionResponse
-> ReadPrec [GetAppliedSchemaVersionResponse]
-> Read GetAppliedSchemaVersionResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetAppliedSchemaVersionResponse]
$creadListPrec :: ReadPrec [GetAppliedSchemaVersionResponse]
readPrec :: ReadPrec GetAppliedSchemaVersionResponse
$creadPrec :: ReadPrec GetAppliedSchemaVersionResponse
readList :: ReadS [GetAppliedSchemaVersionResponse]
$creadList :: ReadS [GetAppliedSchemaVersionResponse]
readsPrec :: Int -> ReadS GetAppliedSchemaVersionResponse
$creadsPrec :: Int -> ReadS GetAppliedSchemaVersionResponse
Prelude.Read, Int -> GetAppliedSchemaVersionResponse -> ShowS
[GetAppliedSchemaVersionResponse] -> ShowS
GetAppliedSchemaVersionResponse -> String
(Int -> GetAppliedSchemaVersionResponse -> ShowS)
-> (GetAppliedSchemaVersionResponse -> String)
-> ([GetAppliedSchemaVersionResponse] -> ShowS)
-> Show GetAppliedSchemaVersionResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetAppliedSchemaVersionResponse] -> ShowS
$cshowList :: [GetAppliedSchemaVersionResponse] -> ShowS
show :: GetAppliedSchemaVersionResponse -> String
$cshow :: GetAppliedSchemaVersionResponse -> String
showsPrec :: Int -> GetAppliedSchemaVersionResponse -> ShowS
$cshowsPrec :: Int -> GetAppliedSchemaVersionResponse -> ShowS
Prelude.Show, (forall x.
 GetAppliedSchemaVersionResponse
 -> Rep GetAppliedSchemaVersionResponse x)
-> (forall x.
    Rep GetAppliedSchemaVersionResponse x
    -> GetAppliedSchemaVersionResponse)
-> Generic GetAppliedSchemaVersionResponse
forall x.
Rep GetAppliedSchemaVersionResponse x
-> GetAppliedSchemaVersionResponse
forall x.
GetAppliedSchemaVersionResponse
-> Rep GetAppliedSchemaVersionResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep GetAppliedSchemaVersionResponse x
-> GetAppliedSchemaVersionResponse
$cfrom :: forall x.
GetAppliedSchemaVersionResponse
-> Rep GetAppliedSchemaVersionResponse x
Prelude.Generic)

-- |
-- Create a value of 'GetAppliedSchemaVersionResponse' 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:
--
-- 'appliedSchemaArn', 'getAppliedSchemaVersionResponse_appliedSchemaArn' - Current applied schema ARN, including the minor version in use if one
-- was provided.
--
-- 'httpStatus', 'getAppliedSchemaVersionResponse_httpStatus' - The response's http status code.
newGetAppliedSchemaVersionResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  GetAppliedSchemaVersionResponse
newGetAppliedSchemaVersionResponse :: Int -> GetAppliedSchemaVersionResponse
newGetAppliedSchemaVersionResponse Int
pHttpStatus_ =
  GetAppliedSchemaVersionResponse' :: Maybe Text -> Int -> GetAppliedSchemaVersionResponse
GetAppliedSchemaVersionResponse'
    { $sel:appliedSchemaArn:GetAppliedSchemaVersionResponse' :: Maybe Text
appliedSchemaArn =
        Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:GetAppliedSchemaVersionResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | Current applied schema ARN, including the minor version in use if one
-- was provided.
getAppliedSchemaVersionResponse_appliedSchemaArn :: Lens.Lens' GetAppliedSchemaVersionResponse (Prelude.Maybe Prelude.Text)
getAppliedSchemaVersionResponse_appliedSchemaArn :: (Maybe Text -> f (Maybe Text))
-> GetAppliedSchemaVersionResponse
-> f GetAppliedSchemaVersionResponse
getAppliedSchemaVersionResponse_appliedSchemaArn = (GetAppliedSchemaVersionResponse -> Maybe Text)
-> (GetAppliedSchemaVersionResponse
    -> Maybe Text -> GetAppliedSchemaVersionResponse)
-> Lens
     GetAppliedSchemaVersionResponse
     GetAppliedSchemaVersionResponse
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetAppliedSchemaVersionResponse' {Maybe Text
appliedSchemaArn :: Maybe Text
$sel:appliedSchemaArn:GetAppliedSchemaVersionResponse' :: GetAppliedSchemaVersionResponse -> Maybe Text
appliedSchemaArn} -> Maybe Text
appliedSchemaArn) (\s :: GetAppliedSchemaVersionResponse
s@GetAppliedSchemaVersionResponse' {} Maybe Text
a -> GetAppliedSchemaVersionResponse
s {$sel:appliedSchemaArn:GetAppliedSchemaVersionResponse' :: Maybe Text
appliedSchemaArn = Maybe Text
a} :: GetAppliedSchemaVersionResponse)

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

instance
  Prelude.NFData
    GetAppliedSchemaVersionResponse