{-# 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.CodeBuild.GetResourcePolicy
-- 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)
--
-- Gets a resource policy that is identified by its resource ARN.
module Amazonka.CodeBuild.GetResourcePolicy
  ( -- * Creating a Request
    GetResourcePolicy (..),
    newGetResourcePolicy,

    -- * Request Lenses
    getResourcePolicy_resourceArn,

    -- * Destructuring the Response
    GetResourcePolicyResponse (..),
    newGetResourcePolicyResponse,

    -- * Response Lenses
    getResourcePolicyResponse_policy,
    getResourcePolicyResponse_httpStatus,
  )
where

import Amazonka.CodeBuild.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:/ 'newGetResourcePolicy' smart constructor.
data GetResourcePolicy = GetResourcePolicy'
  { -- | The ARN of the resource that is associated with the resource policy.
    GetResourcePolicy -> Text
resourceArn :: Prelude.Text
  }
  deriving (GetResourcePolicy -> GetResourcePolicy -> Bool
(GetResourcePolicy -> GetResourcePolicy -> Bool)
-> (GetResourcePolicy -> GetResourcePolicy -> Bool)
-> Eq GetResourcePolicy
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetResourcePolicy -> GetResourcePolicy -> Bool
$c/= :: GetResourcePolicy -> GetResourcePolicy -> Bool
== :: GetResourcePolicy -> GetResourcePolicy -> Bool
$c== :: GetResourcePolicy -> GetResourcePolicy -> Bool
Prelude.Eq, ReadPrec [GetResourcePolicy]
ReadPrec GetResourcePolicy
Int -> ReadS GetResourcePolicy
ReadS [GetResourcePolicy]
(Int -> ReadS GetResourcePolicy)
-> ReadS [GetResourcePolicy]
-> ReadPrec GetResourcePolicy
-> ReadPrec [GetResourcePolicy]
-> Read GetResourcePolicy
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetResourcePolicy]
$creadListPrec :: ReadPrec [GetResourcePolicy]
readPrec :: ReadPrec GetResourcePolicy
$creadPrec :: ReadPrec GetResourcePolicy
readList :: ReadS [GetResourcePolicy]
$creadList :: ReadS [GetResourcePolicy]
readsPrec :: Int -> ReadS GetResourcePolicy
$creadsPrec :: Int -> ReadS GetResourcePolicy
Prelude.Read, Int -> GetResourcePolicy -> ShowS
[GetResourcePolicy] -> ShowS
GetResourcePolicy -> String
(Int -> GetResourcePolicy -> ShowS)
-> (GetResourcePolicy -> String)
-> ([GetResourcePolicy] -> ShowS)
-> Show GetResourcePolicy
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetResourcePolicy] -> ShowS
$cshowList :: [GetResourcePolicy] -> ShowS
show :: GetResourcePolicy -> String
$cshow :: GetResourcePolicy -> String
showsPrec :: Int -> GetResourcePolicy -> ShowS
$cshowsPrec :: Int -> GetResourcePolicy -> ShowS
Prelude.Show, (forall x. GetResourcePolicy -> Rep GetResourcePolicy x)
-> (forall x. Rep GetResourcePolicy x -> GetResourcePolicy)
-> Generic GetResourcePolicy
forall x. Rep GetResourcePolicy x -> GetResourcePolicy
forall x. GetResourcePolicy -> Rep GetResourcePolicy x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetResourcePolicy x -> GetResourcePolicy
$cfrom :: forall x. GetResourcePolicy -> Rep GetResourcePolicy x
Prelude.Generic)

-- |
-- Create a value of 'GetResourcePolicy' 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:
--
-- 'resourceArn', 'getResourcePolicy_resourceArn' - The ARN of the resource that is associated with the resource policy.
newGetResourcePolicy ::
  -- | 'resourceArn'
  Prelude.Text ->
  GetResourcePolicy
newGetResourcePolicy :: Text -> GetResourcePolicy
newGetResourcePolicy Text
pResourceArn_ =
  GetResourcePolicy' :: Text -> GetResourcePolicy
GetResourcePolicy' {$sel:resourceArn:GetResourcePolicy' :: Text
resourceArn = Text
pResourceArn_}

-- | The ARN of the resource that is associated with the resource policy.
getResourcePolicy_resourceArn :: Lens.Lens' GetResourcePolicy Prelude.Text
getResourcePolicy_resourceArn :: (Text -> f Text) -> GetResourcePolicy -> f GetResourcePolicy
getResourcePolicy_resourceArn = (GetResourcePolicy -> Text)
-> (GetResourcePolicy -> Text -> GetResourcePolicy)
-> Lens GetResourcePolicy GetResourcePolicy Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetResourcePolicy' {Text
resourceArn :: Text
$sel:resourceArn:GetResourcePolicy' :: GetResourcePolicy -> Text
resourceArn} -> Text
resourceArn) (\s :: GetResourcePolicy
s@GetResourcePolicy' {} Text
a -> GetResourcePolicy
s {$sel:resourceArn:GetResourcePolicy' :: Text
resourceArn = Text
a} :: GetResourcePolicy)

instance Core.AWSRequest GetResourcePolicy where
  type
    AWSResponse GetResourcePolicy =
      GetResourcePolicyResponse
  request :: GetResourcePolicy -> Request GetResourcePolicy
request = Service -> GetResourcePolicy -> Request GetResourcePolicy
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy GetResourcePolicy
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse GetResourcePolicy)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse GetResourcePolicy))
-> Logger
-> Service
-> Proxy GetResourcePolicy
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse GetResourcePolicy)))
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 -> GetResourcePolicyResponse
GetResourcePolicyResponse'
            (Maybe Text -> Int -> GetResourcePolicyResponse)
-> Either String (Maybe Text)
-> Either String (Int -> GetResourcePolicyResponse)
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
"policy")
            Either String (Int -> GetResourcePolicyResponse)
-> Either String Int -> Either String GetResourcePolicyResponse
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 GetResourcePolicy

instance Prelude.NFData GetResourcePolicy

instance Core.ToHeaders GetResourcePolicy where
  toHeaders :: GetResourcePolicy -> ResponseHeaders
toHeaders =
    ResponseHeaders -> GetResourcePolicy -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
      ( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"X-Amz-Target"
              HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"CodeBuild_20161006.GetResourcePolicy" ::
                          Prelude.ByteString
                      ),
            HeaderName
"Content-Type"
              HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

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

instance Core.ToPath GetResourcePolicy where
  toPath :: GetResourcePolicy -> ByteString
toPath = ByteString -> GetResourcePolicy -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"

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

-- | /See:/ 'newGetResourcePolicyResponse' smart constructor.
data GetResourcePolicyResponse = GetResourcePolicyResponse'
  { -- | The resource policy for the resource identified by the input ARN
    -- parameter.
    GetResourcePolicyResponse -> Maybe Text
policy :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    GetResourcePolicyResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (GetResourcePolicyResponse -> GetResourcePolicyResponse -> Bool
(GetResourcePolicyResponse -> GetResourcePolicyResponse -> Bool)
-> (GetResourcePolicyResponse -> GetResourcePolicyResponse -> Bool)
-> Eq GetResourcePolicyResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetResourcePolicyResponse -> GetResourcePolicyResponse -> Bool
$c/= :: GetResourcePolicyResponse -> GetResourcePolicyResponse -> Bool
== :: GetResourcePolicyResponse -> GetResourcePolicyResponse -> Bool
$c== :: GetResourcePolicyResponse -> GetResourcePolicyResponse -> Bool
Prelude.Eq, ReadPrec [GetResourcePolicyResponse]
ReadPrec GetResourcePolicyResponse
Int -> ReadS GetResourcePolicyResponse
ReadS [GetResourcePolicyResponse]
(Int -> ReadS GetResourcePolicyResponse)
-> ReadS [GetResourcePolicyResponse]
-> ReadPrec GetResourcePolicyResponse
-> ReadPrec [GetResourcePolicyResponse]
-> Read GetResourcePolicyResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetResourcePolicyResponse]
$creadListPrec :: ReadPrec [GetResourcePolicyResponse]
readPrec :: ReadPrec GetResourcePolicyResponse
$creadPrec :: ReadPrec GetResourcePolicyResponse
readList :: ReadS [GetResourcePolicyResponse]
$creadList :: ReadS [GetResourcePolicyResponse]
readsPrec :: Int -> ReadS GetResourcePolicyResponse
$creadsPrec :: Int -> ReadS GetResourcePolicyResponse
Prelude.Read, Int -> GetResourcePolicyResponse -> ShowS
[GetResourcePolicyResponse] -> ShowS
GetResourcePolicyResponse -> String
(Int -> GetResourcePolicyResponse -> ShowS)
-> (GetResourcePolicyResponse -> String)
-> ([GetResourcePolicyResponse] -> ShowS)
-> Show GetResourcePolicyResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetResourcePolicyResponse] -> ShowS
$cshowList :: [GetResourcePolicyResponse] -> ShowS
show :: GetResourcePolicyResponse -> String
$cshow :: GetResourcePolicyResponse -> String
showsPrec :: Int -> GetResourcePolicyResponse -> ShowS
$cshowsPrec :: Int -> GetResourcePolicyResponse -> ShowS
Prelude.Show, (forall x.
 GetResourcePolicyResponse -> Rep GetResourcePolicyResponse x)
-> (forall x.
    Rep GetResourcePolicyResponse x -> GetResourcePolicyResponse)
-> Generic GetResourcePolicyResponse
forall x.
Rep GetResourcePolicyResponse x -> GetResourcePolicyResponse
forall x.
GetResourcePolicyResponse -> Rep GetResourcePolicyResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep GetResourcePolicyResponse x -> GetResourcePolicyResponse
$cfrom :: forall x.
GetResourcePolicyResponse -> Rep GetResourcePolicyResponse x
Prelude.Generic)

-- |
-- Create a value of 'GetResourcePolicyResponse' 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:
--
-- 'policy', 'getResourcePolicyResponse_policy' - The resource policy for the resource identified by the input ARN
-- parameter.
--
-- 'httpStatus', 'getResourcePolicyResponse_httpStatus' - The response's http status code.
newGetResourcePolicyResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  GetResourcePolicyResponse
newGetResourcePolicyResponse :: Int -> GetResourcePolicyResponse
newGetResourcePolicyResponse Int
pHttpStatus_ =
  GetResourcePolicyResponse' :: Maybe Text -> Int -> GetResourcePolicyResponse
GetResourcePolicyResponse'
    { $sel:policy:GetResourcePolicyResponse' :: Maybe Text
policy =
        Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:GetResourcePolicyResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The resource policy for the resource identified by the input ARN
-- parameter.
getResourcePolicyResponse_policy :: Lens.Lens' GetResourcePolicyResponse (Prelude.Maybe Prelude.Text)
getResourcePolicyResponse_policy :: (Maybe Text -> f (Maybe Text))
-> GetResourcePolicyResponse -> f GetResourcePolicyResponse
getResourcePolicyResponse_policy = (GetResourcePolicyResponse -> Maybe Text)
-> (GetResourcePolicyResponse
    -> Maybe Text -> GetResourcePolicyResponse)
-> Lens
     GetResourcePolicyResponse
     GetResourcePolicyResponse
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetResourcePolicyResponse' {Maybe Text
policy :: Maybe Text
$sel:policy:GetResourcePolicyResponse' :: GetResourcePolicyResponse -> Maybe Text
policy} -> Maybe Text
policy) (\s :: GetResourcePolicyResponse
s@GetResourcePolicyResponse' {} Maybe Text
a -> GetResourcePolicyResponse
s {$sel:policy:GetResourcePolicyResponse' :: Maybe Text
policy = Maybe Text
a} :: GetResourcePolicyResponse)

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

instance Prelude.NFData GetResourcePolicyResponse