{-# 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.ECR.DeleteRegistryPolicy -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Deletes the registry permissions policy. module Amazonka.ECR.DeleteRegistryPolicy ( -- * Creating a Request DeleteRegistryPolicy (..), newDeleteRegistryPolicy, -- * Destructuring the Response DeleteRegistryPolicyResponse (..), newDeleteRegistryPolicyResponse, -- * Response Lenses deleteRegistryPolicyResponse_policyText, deleteRegistryPolicyResponse_registryId, deleteRegistryPolicyResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.ECR.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newDeleteRegistryPolicy' smart constructor. data DeleteRegistryPolicy = DeleteRegistryPolicy' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteRegistryPolicy' with all optional fields omitted. -- -- Use or to modify other optional fields. newDeleteRegistryPolicy :: DeleteRegistryPolicy newDeleteRegistryPolicy = DeleteRegistryPolicy' instance Core.AWSRequest DeleteRegistryPolicy where type AWSResponse DeleteRegistryPolicy = DeleteRegistryPolicyResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> DeleteRegistryPolicyResponse' Prelude.<$> (x Data..?> "policyText") Prelude.<*> (x Data..?> "registryId") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteRegistryPolicy where hashWithSalt _salt _ = _salt `Prelude.hashWithSalt` () instance Prelude.NFData DeleteRegistryPolicy where rnf _ = () instance Data.ToHeaders DeleteRegistryPolicy where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AmazonEC2ContainerRegistry_V20150921.DeleteRegistryPolicy" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON DeleteRegistryPolicy where toJSON = Prelude.const (Data.Object Prelude.mempty) instance Data.ToPath DeleteRegistryPolicy where toPath = Prelude.const "/" instance Data.ToQuery DeleteRegistryPolicy where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDeleteRegistryPolicyResponse' smart constructor. data DeleteRegistryPolicyResponse = DeleteRegistryPolicyResponse' { -- | The contents of the registry permissions policy that was deleted. policyText :: Prelude.Maybe Prelude.Text, -- | The registry ID associated with the request. registryId :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteRegistryPolicyResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'policyText', 'deleteRegistryPolicyResponse_policyText' - The contents of the registry permissions policy that was deleted. -- -- 'registryId', 'deleteRegistryPolicyResponse_registryId' - The registry ID associated with the request. -- -- 'httpStatus', 'deleteRegistryPolicyResponse_httpStatus' - The response's http status code. newDeleteRegistryPolicyResponse :: -- | 'httpStatus' Prelude.Int -> DeleteRegistryPolicyResponse newDeleteRegistryPolicyResponse pHttpStatus_ = DeleteRegistryPolicyResponse' { policyText = Prelude.Nothing, registryId = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The contents of the registry permissions policy that was deleted. deleteRegistryPolicyResponse_policyText :: Lens.Lens' DeleteRegistryPolicyResponse (Prelude.Maybe Prelude.Text) deleteRegistryPolicyResponse_policyText = Lens.lens (\DeleteRegistryPolicyResponse' {policyText} -> policyText) (\s@DeleteRegistryPolicyResponse' {} a -> s {policyText = a} :: DeleteRegistryPolicyResponse) -- | The registry ID associated with the request. deleteRegistryPolicyResponse_registryId :: Lens.Lens' DeleteRegistryPolicyResponse (Prelude.Maybe Prelude.Text) deleteRegistryPolicyResponse_registryId = Lens.lens (\DeleteRegistryPolicyResponse' {registryId} -> registryId) (\s@DeleteRegistryPolicyResponse' {} a -> s {registryId = a} :: DeleteRegistryPolicyResponse) -- | The response's http status code. deleteRegistryPolicyResponse_httpStatus :: Lens.Lens' DeleteRegistryPolicyResponse Prelude.Int deleteRegistryPolicyResponse_httpStatus = Lens.lens (\DeleteRegistryPolicyResponse' {httpStatus} -> httpStatus) (\s@DeleteRegistryPolicyResponse' {} a -> s {httpStatus = a} :: DeleteRegistryPolicyResponse) instance Prelude.NFData DeleteRegistryPolicyResponse where rnf DeleteRegistryPolicyResponse' {..} = Prelude.rnf policyText `Prelude.seq` Prelude.rnf registryId `Prelude.seq` Prelude.rnf httpStatus