amazonka-codecommit-2.0: gen/Amazonka/CodeCommit/MergeBranchesByFastForward.hs
{-# 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.CodeCommit.MergeBranchesByFastForward
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Merges two branches using the fast-forward merge strategy.
module Amazonka.CodeCommit.MergeBranchesByFastForward
( -- * Creating a Request
MergeBranchesByFastForward (..),
newMergeBranchesByFastForward,
-- * Request Lenses
mergeBranchesByFastForward_targetBranch,
mergeBranchesByFastForward_repositoryName,
mergeBranchesByFastForward_sourceCommitSpecifier,
mergeBranchesByFastForward_destinationCommitSpecifier,
-- * Destructuring the Response
MergeBranchesByFastForwardResponse (..),
newMergeBranchesByFastForwardResponse,
-- * Response Lenses
mergeBranchesByFastForwardResponse_commitId,
mergeBranchesByFastForwardResponse_treeId,
mergeBranchesByFastForwardResponse_httpStatus,
)
where
import Amazonka.CodeCommit.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:/ 'newMergeBranchesByFastForward' smart constructor.
data MergeBranchesByFastForward = MergeBranchesByFastForward'
{ -- | The branch where the merge is applied.
targetBranch :: Prelude.Maybe Prelude.Text,
-- | The name of the repository where you want to merge two branches.
repositoryName :: Prelude.Text,
-- | The branch, tag, HEAD, or other fully qualified reference used to
-- identify a commit (for example, a branch name or a full commit ID).
sourceCommitSpecifier :: Prelude.Text,
-- | The branch, tag, HEAD, or other fully qualified reference used to
-- identify a commit (for example, a branch name or a full commit ID).
destinationCommitSpecifier :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'MergeBranchesByFastForward' 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:
--
-- 'targetBranch', 'mergeBranchesByFastForward_targetBranch' - The branch where the merge is applied.
--
-- 'repositoryName', 'mergeBranchesByFastForward_repositoryName' - The name of the repository where you want to merge two branches.
--
-- 'sourceCommitSpecifier', 'mergeBranchesByFastForward_sourceCommitSpecifier' - The branch, tag, HEAD, or other fully qualified reference used to
-- identify a commit (for example, a branch name or a full commit ID).
--
-- 'destinationCommitSpecifier', 'mergeBranchesByFastForward_destinationCommitSpecifier' - The branch, tag, HEAD, or other fully qualified reference used to
-- identify a commit (for example, a branch name or a full commit ID).
newMergeBranchesByFastForward ::
-- | 'repositoryName'
Prelude.Text ->
-- | 'sourceCommitSpecifier'
Prelude.Text ->
-- | 'destinationCommitSpecifier'
Prelude.Text ->
MergeBranchesByFastForward
newMergeBranchesByFastForward
pRepositoryName_
pSourceCommitSpecifier_
pDestinationCommitSpecifier_ =
MergeBranchesByFastForward'
{ targetBranch =
Prelude.Nothing,
repositoryName = pRepositoryName_,
sourceCommitSpecifier = pSourceCommitSpecifier_,
destinationCommitSpecifier =
pDestinationCommitSpecifier_
}
-- | The branch where the merge is applied.
mergeBranchesByFastForward_targetBranch :: Lens.Lens' MergeBranchesByFastForward (Prelude.Maybe Prelude.Text)
mergeBranchesByFastForward_targetBranch = Lens.lens (\MergeBranchesByFastForward' {targetBranch} -> targetBranch) (\s@MergeBranchesByFastForward' {} a -> s {targetBranch = a} :: MergeBranchesByFastForward)
-- | The name of the repository where you want to merge two branches.
mergeBranchesByFastForward_repositoryName :: Lens.Lens' MergeBranchesByFastForward Prelude.Text
mergeBranchesByFastForward_repositoryName = Lens.lens (\MergeBranchesByFastForward' {repositoryName} -> repositoryName) (\s@MergeBranchesByFastForward' {} a -> s {repositoryName = a} :: MergeBranchesByFastForward)
-- | The branch, tag, HEAD, or other fully qualified reference used to
-- identify a commit (for example, a branch name or a full commit ID).
mergeBranchesByFastForward_sourceCommitSpecifier :: Lens.Lens' MergeBranchesByFastForward Prelude.Text
mergeBranchesByFastForward_sourceCommitSpecifier = Lens.lens (\MergeBranchesByFastForward' {sourceCommitSpecifier} -> sourceCommitSpecifier) (\s@MergeBranchesByFastForward' {} a -> s {sourceCommitSpecifier = a} :: MergeBranchesByFastForward)
-- | The branch, tag, HEAD, or other fully qualified reference used to
-- identify a commit (for example, a branch name or a full commit ID).
mergeBranchesByFastForward_destinationCommitSpecifier :: Lens.Lens' MergeBranchesByFastForward Prelude.Text
mergeBranchesByFastForward_destinationCommitSpecifier = Lens.lens (\MergeBranchesByFastForward' {destinationCommitSpecifier} -> destinationCommitSpecifier) (\s@MergeBranchesByFastForward' {} a -> s {destinationCommitSpecifier = a} :: MergeBranchesByFastForward)
instance Core.AWSRequest MergeBranchesByFastForward where
type
AWSResponse MergeBranchesByFastForward =
MergeBranchesByFastForwardResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
MergeBranchesByFastForwardResponse'
Prelude.<$> (x Data..?> "commitId")
Prelude.<*> (x Data..?> "treeId")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable MergeBranchesByFastForward where
hashWithSalt _salt MergeBranchesByFastForward' {..} =
_salt
`Prelude.hashWithSalt` targetBranch
`Prelude.hashWithSalt` repositoryName
`Prelude.hashWithSalt` sourceCommitSpecifier
`Prelude.hashWithSalt` destinationCommitSpecifier
instance Prelude.NFData MergeBranchesByFastForward where
rnf MergeBranchesByFastForward' {..} =
Prelude.rnf targetBranch
`Prelude.seq` Prelude.rnf repositoryName
`Prelude.seq` Prelude.rnf sourceCommitSpecifier
`Prelude.seq` Prelude.rnf destinationCommitSpecifier
instance Data.ToHeaders MergeBranchesByFastForward where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "CodeCommit_20150413.MergeBranchesByFastForward" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON MergeBranchesByFastForward where
toJSON MergeBranchesByFastForward' {..} =
Data.object
( Prelude.catMaybes
[ ("targetBranch" Data..=) Prelude.<$> targetBranch,
Prelude.Just
("repositoryName" Data..= repositoryName),
Prelude.Just
( "sourceCommitSpecifier"
Data..= sourceCommitSpecifier
),
Prelude.Just
( "destinationCommitSpecifier"
Data..= destinationCommitSpecifier
)
]
)
instance Data.ToPath MergeBranchesByFastForward where
toPath = Prelude.const "/"
instance Data.ToQuery MergeBranchesByFastForward where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newMergeBranchesByFastForwardResponse' smart constructor.
data MergeBranchesByFastForwardResponse = MergeBranchesByFastForwardResponse'
{ -- | The commit ID of the merge in the destination or target branch.
commitId :: Prelude.Maybe Prelude.Text,
-- | The tree ID of the merge in the destination or target branch.
treeId :: 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 'MergeBranchesByFastForwardResponse' 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:
--
-- 'commitId', 'mergeBranchesByFastForwardResponse_commitId' - The commit ID of the merge in the destination or target branch.
--
-- 'treeId', 'mergeBranchesByFastForwardResponse_treeId' - The tree ID of the merge in the destination or target branch.
--
-- 'httpStatus', 'mergeBranchesByFastForwardResponse_httpStatus' - The response's http status code.
newMergeBranchesByFastForwardResponse ::
-- | 'httpStatus'
Prelude.Int ->
MergeBranchesByFastForwardResponse
newMergeBranchesByFastForwardResponse pHttpStatus_ =
MergeBranchesByFastForwardResponse'
{ commitId =
Prelude.Nothing,
treeId = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The commit ID of the merge in the destination or target branch.
mergeBranchesByFastForwardResponse_commitId :: Lens.Lens' MergeBranchesByFastForwardResponse (Prelude.Maybe Prelude.Text)
mergeBranchesByFastForwardResponse_commitId = Lens.lens (\MergeBranchesByFastForwardResponse' {commitId} -> commitId) (\s@MergeBranchesByFastForwardResponse' {} a -> s {commitId = a} :: MergeBranchesByFastForwardResponse)
-- | The tree ID of the merge in the destination or target branch.
mergeBranchesByFastForwardResponse_treeId :: Lens.Lens' MergeBranchesByFastForwardResponse (Prelude.Maybe Prelude.Text)
mergeBranchesByFastForwardResponse_treeId = Lens.lens (\MergeBranchesByFastForwardResponse' {treeId} -> treeId) (\s@MergeBranchesByFastForwardResponse' {} a -> s {treeId = a} :: MergeBranchesByFastForwardResponse)
-- | The response's http status code.
mergeBranchesByFastForwardResponse_httpStatus :: Lens.Lens' MergeBranchesByFastForwardResponse Prelude.Int
mergeBranchesByFastForwardResponse_httpStatus = Lens.lens (\MergeBranchesByFastForwardResponse' {httpStatus} -> httpStatus) (\s@MergeBranchesByFastForwardResponse' {} a -> s {httpStatus = a} :: MergeBranchesByFastForwardResponse)
instance
Prelude.NFData
MergeBranchesByFastForwardResponse
where
rnf MergeBranchesByFastForwardResponse' {..} =
Prelude.rnf commitId
`Prelude.seq` Prelude.rnf treeId
`Prelude.seq` Prelude.rnf httpStatus