{-# 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.DetachPolicy
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Detaches a policy from an object.
module Amazonka.CloudDirectory.DetachPolicy
  ( -- * Creating a Request
    DetachPolicy (..),
    newDetachPolicy,

    -- * Request Lenses
    detachPolicy_directoryArn,
    detachPolicy_policyReference,
    detachPolicy_objectReference,

    -- * Destructuring the Response
    DetachPolicyResponse (..),
    newDetachPolicyResponse,

    -- * Response Lenses
    detachPolicyResponse_httpStatus,
  )
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:/ 'newDetachPolicy' smart constructor.
data DetachPolicy = DetachPolicy'
  { -- | The Amazon Resource Name (ARN) that is associated with the Directory
    -- where both objects reside. For more information, see arns.
    DetachPolicy -> Text
directoryArn :: Prelude.Text,
    -- | Reference that identifies the policy object.
    DetachPolicy -> ObjectReference
policyReference :: ObjectReference,
    -- | Reference that identifies the object whose policy object will be
    -- detached.
    DetachPolicy -> ObjectReference
objectReference :: ObjectReference
  }
  deriving (DetachPolicy -> DetachPolicy -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DetachPolicy -> DetachPolicy -> Bool
$c/= :: DetachPolicy -> DetachPolicy -> Bool
== :: DetachPolicy -> DetachPolicy -> Bool
$c== :: DetachPolicy -> DetachPolicy -> Bool
Prelude.Eq, ReadPrec [DetachPolicy]
ReadPrec DetachPolicy
Int -> ReadS DetachPolicy
ReadS [DetachPolicy]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DetachPolicy]
$creadListPrec :: ReadPrec [DetachPolicy]
readPrec :: ReadPrec DetachPolicy
$creadPrec :: ReadPrec DetachPolicy
readList :: ReadS [DetachPolicy]
$creadList :: ReadS [DetachPolicy]
readsPrec :: Int -> ReadS DetachPolicy
$creadsPrec :: Int -> ReadS DetachPolicy
Prelude.Read, Int -> DetachPolicy -> ShowS
[DetachPolicy] -> ShowS
DetachPolicy -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DetachPolicy] -> ShowS
$cshowList :: [DetachPolicy] -> ShowS
show :: DetachPolicy -> String
$cshow :: DetachPolicy -> String
showsPrec :: Int -> DetachPolicy -> ShowS
$cshowsPrec :: Int -> DetachPolicy -> ShowS
Prelude.Show, forall x. Rep DetachPolicy x -> DetachPolicy
forall x. DetachPolicy -> Rep DetachPolicy x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DetachPolicy x -> DetachPolicy
$cfrom :: forall x. DetachPolicy -> Rep DetachPolicy x
Prelude.Generic)

-- |
-- Create a value of 'DetachPolicy' 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:
--
-- 'directoryArn', 'detachPolicy_directoryArn' - The Amazon Resource Name (ARN) that is associated with the Directory
-- where both objects reside. For more information, see arns.
--
-- 'policyReference', 'detachPolicy_policyReference' - Reference that identifies the policy object.
--
-- 'objectReference', 'detachPolicy_objectReference' - Reference that identifies the object whose policy object will be
-- detached.
newDetachPolicy ::
  -- | 'directoryArn'
  Prelude.Text ->
  -- | 'policyReference'
  ObjectReference ->
  -- | 'objectReference'
  ObjectReference ->
  DetachPolicy
newDetachPolicy :: Text -> ObjectReference -> ObjectReference -> DetachPolicy
newDetachPolicy
  Text
pDirectoryArn_
  ObjectReference
pPolicyReference_
  ObjectReference
pObjectReference_ =
    DetachPolicy'
      { $sel:directoryArn:DetachPolicy' :: Text
directoryArn = Text
pDirectoryArn_,
        $sel:policyReference:DetachPolicy' :: ObjectReference
policyReference = ObjectReference
pPolicyReference_,
        $sel:objectReference:DetachPolicy' :: ObjectReference
objectReference = ObjectReference
pObjectReference_
      }

-- | The Amazon Resource Name (ARN) that is associated with the Directory
-- where both objects reside. For more information, see arns.
detachPolicy_directoryArn :: Lens.Lens' DetachPolicy Prelude.Text
detachPolicy_directoryArn :: Lens' DetachPolicy Text
detachPolicy_directoryArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DetachPolicy' {Text
directoryArn :: Text
$sel:directoryArn:DetachPolicy' :: DetachPolicy -> Text
directoryArn} -> Text
directoryArn) (\s :: DetachPolicy
s@DetachPolicy' {} Text
a -> DetachPolicy
s {$sel:directoryArn:DetachPolicy' :: Text
directoryArn = Text
a} :: DetachPolicy)

-- | Reference that identifies the policy object.
detachPolicy_policyReference :: Lens.Lens' DetachPolicy ObjectReference
detachPolicy_policyReference :: Lens' DetachPolicy ObjectReference
detachPolicy_policyReference = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DetachPolicy' {ObjectReference
policyReference :: ObjectReference
$sel:policyReference:DetachPolicy' :: DetachPolicy -> ObjectReference
policyReference} -> ObjectReference
policyReference) (\s :: DetachPolicy
s@DetachPolicy' {} ObjectReference
a -> DetachPolicy
s {$sel:policyReference:DetachPolicy' :: ObjectReference
policyReference = ObjectReference
a} :: DetachPolicy)

-- | Reference that identifies the object whose policy object will be
-- detached.
detachPolicy_objectReference :: Lens.Lens' DetachPolicy ObjectReference
detachPolicy_objectReference :: Lens' DetachPolicy ObjectReference
detachPolicy_objectReference = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DetachPolicy' {ObjectReference
objectReference :: ObjectReference
$sel:objectReference:DetachPolicy' :: DetachPolicy -> ObjectReference
objectReference} -> ObjectReference
objectReference) (\s :: DetachPolicy
s@DetachPolicy' {} ObjectReference
a -> DetachPolicy
s {$sel:objectReference:DetachPolicy' :: ObjectReference
objectReference = ObjectReference
a} :: DetachPolicy)

instance Core.AWSRequest DetachPolicy where
  type AWSResponse DetachPolicy = DetachPolicyResponse
  request :: (Service -> Service) -> DetachPolicy -> Request DetachPolicy
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 DetachPolicy
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DetachPolicy)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
      ( \Int
s ResponseHeaders
h ()
x ->
          Int -> DetachPolicyResponse
DetachPolicyResponse'
            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))
      )

instance Prelude.Hashable DetachPolicy where
  hashWithSalt :: Int -> DetachPolicy -> Int
hashWithSalt Int
_salt DetachPolicy' {Text
ObjectReference
objectReference :: ObjectReference
policyReference :: ObjectReference
directoryArn :: Text
$sel:objectReference:DetachPolicy' :: DetachPolicy -> ObjectReference
$sel:policyReference:DetachPolicy' :: DetachPolicy -> ObjectReference
$sel:directoryArn:DetachPolicy' :: DetachPolicy -> Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
directoryArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` ObjectReference
policyReference
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` ObjectReference
objectReference

instance Prelude.NFData DetachPolicy where
  rnf :: DetachPolicy -> ()
rnf DetachPolicy' {Text
ObjectReference
objectReference :: ObjectReference
policyReference :: ObjectReference
directoryArn :: Text
$sel:objectReference:DetachPolicy' :: DetachPolicy -> ObjectReference
$sel:policyReference:DetachPolicy' :: DetachPolicy -> ObjectReference
$sel:directoryArn:DetachPolicy' :: DetachPolicy -> Text
..} =
    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 ObjectReference
policyReference
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf ObjectReference
objectReference

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

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

instance Data.ToPath DetachPolicy where
  toPath :: DetachPolicy -> ByteString
toPath =
    forall a b. a -> b -> a
Prelude.const
      ByteString
"/amazonclouddirectory/2017-01-11/policy/detach"

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

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

-- |
-- Create a value of 'DetachPolicyResponse' 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', 'detachPolicyResponse_httpStatus' - The response's http status code.
newDetachPolicyResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  DetachPolicyResponse
newDetachPolicyResponse :: Int -> DetachPolicyResponse
newDetachPolicyResponse Int
pHttpStatus_ =
  DetachPolicyResponse' {$sel:httpStatus:DetachPolicyResponse' :: Int
httpStatus = Int
pHttpStatus_}

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

instance Prelude.NFData DetachPolicyResponse where
  rnf :: DetachPolicyResponse -> ()
rnf DetachPolicyResponse' {Int
httpStatus :: Int
$sel:httpStatus:DetachPolicyResponse' :: DetachPolicyResponse -> Int
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus