{-# 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.Schemas.DeleteResourcePolicy
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Delete the resource-based policy attached to the specified registry.
module Amazonka.Schemas.DeleteResourcePolicy
  ( -- * Creating a Request
    DeleteResourcePolicy (..),
    newDeleteResourcePolicy,

    -- * Request Lenses
    deleteResourcePolicy_registryName,

    -- * Destructuring the Response
    DeleteResourcePolicyResponse (..),
    newDeleteResourcePolicyResponse,
  )
where

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
import Amazonka.Schemas.Types

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

-- |
-- Create a value of 'DeleteResourcePolicy' 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:
--
-- 'registryName', 'deleteResourcePolicy_registryName' - The name of the registry.
newDeleteResourcePolicy ::
  DeleteResourcePolicy
newDeleteResourcePolicy :: DeleteResourcePolicy
newDeleteResourcePolicy =
  DeleteResourcePolicy'
    { $sel:registryName:DeleteResourcePolicy' :: Maybe Text
registryName =
        forall a. Maybe a
Prelude.Nothing
    }

-- | The name of the registry.
deleteResourcePolicy_registryName :: Lens.Lens' DeleteResourcePolicy (Prelude.Maybe Prelude.Text)
deleteResourcePolicy_registryName :: Lens' DeleteResourcePolicy (Maybe Text)
deleteResourcePolicy_registryName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteResourcePolicy' {Maybe Text
registryName :: Maybe Text
$sel:registryName:DeleteResourcePolicy' :: DeleteResourcePolicy -> Maybe Text
registryName} -> Maybe Text
registryName) (\s :: DeleteResourcePolicy
s@DeleteResourcePolicy' {} Maybe Text
a -> DeleteResourcePolicy
s {$sel:registryName:DeleteResourcePolicy' :: Maybe Text
registryName = Maybe Text
a} :: DeleteResourcePolicy)

instance Core.AWSRequest DeleteResourcePolicy where
  type
    AWSResponse DeleteResourcePolicy =
      DeleteResourcePolicyResponse
  request :: (Service -> Service)
-> DeleteResourcePolicy -> Request DeleteResourcePolicy
request Service -> Service
overrides =
    forall a. ToRequest a => Service -> a -> Request a
Request.delete (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy DeleteResourcePolicy
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse DeleteResourcePolicy)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull DeleteResourcePolicyResponse
DeleteResourcePolicyResponse'

instance Prelude.Hashable DeleteResourcePolicy where
  hashWithSalt :: Int -> DeleteResourcePolicy -> Int
hashWithSalt Int
_salt DeleteResourcePolicy' {Maybe Text
registryName :: Maybe Text
$sel:registryName:DeleteResourcePolicy' :: DeleteResourcePolicy -> Maybe Text
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
registryName

instance Prelude.NFData DeleteResourcePolicy where
  rnf :: DeleteResourcePolicy -> ()
rnf DeleteResourcePolicy' {Maybe Text
registryName :: Maybe Text
$sel:registryName:DeleteResourcePolicy' :: DeleteResourcePolicy -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
registryName

instance Data.ToHeaders DeleteResourcePolicy where
  toHeaders :: DeleteResourcePolicy -> [Header]
toHeaders =
    forall a b. a -> b -> a
Prelude.const
      ( forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> [Header]
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Data.ToPath DeleteResourcePolicy where
  toPath :: DeleteResourcePolicy -> ByteString
toPath = forall a b. a -> b -> a
Prelude.const ByteString
"/v1/policy"

instance Data.ToQuery DeleteResourcePolicy where
  toQuery :: DeleteResourcePolicy -> QueryString
toQuery DeleteResourcePolicy' {Maybe Text
registryName :: Maybe Text
$sel:registryName:DeleteResourcePolicy' :: DeleteResourcePolicy -> Maybe Text
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ByteString
"registryName" forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: Maybe Text
registryName]

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

-- |
-- Create a value of 'DeleteResourcePolicyResponse' 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.
newDeleteResourcePolicyResponse ::
  DeleteResourcePolicyResponse
newDeleteResourcePolicyResponse :: DeleteResourcePolicyResponse
newDeleteResourcePolicyResponse =
  DeleteResourcePolicyResponse
DeleteResourcePolicyResponse'

instance Prelude.NFData DeleteResourcePolicyResponse where
  rnf :: DeleteResourcePolicyResponse -> ()
rnf DeleteResourcePolicyResponse
_ = ()