{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# 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.Types.PullRequestSourceReferenceUpdatedEventMetadata -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.CodeCommit.Types.PullRequestSourceReferenceUpdatedEventMetadata 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 -- | Information about an update to the source branch of a pull request. -- -- /See:/ 'newPullRequestSourceReferenceUpdatedEventMetadata' smart constructor. data PullRequestSourceReferenceUpdatedEventMetadata = PullRequestSourceReferenceUpdatedEventMetadata' { -- | The full commit ID of the commit in the source branch that was the tip -- of the branch at the time the pull request was updated. afterCommitId :: Prelude.Maybe Prelude.Text, -- | The full commit ID of the commit in the destination branch that was the -- tip of the branch at the time the pull request was updated. beforeCommitId :: Prelude.Maybe Prelude.Text, -- | The commit ID of the most recent commit that the source branch and the -- destination branch have in common. mergeBase :: Prelude.Maybe Prelude.Text, -- | The name of the repository where the pull request was updated. repositoryName :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PullRequestSourceReferenceUpdatedEventMetadata' 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: -- -- 'afterCommitId', 'pullRequestSourceReferenceUpdatedEventMetadata_afterCommitId' - The full commit ID of the commit in the source branch that was the tip -- of the branch at the time the pull request was updated. -- -- 'beforeCommitId', 'pullRequestSourceReferenceUpdatedEventMetadata_beforeCommitId' - The full commit ID of the commit in the destination branch that was the -- tip of the branch at the time the pull request was updated. -- -- 'mergeBase', 'pullRequestSourceReferenceUpdatedEventMetadata_mergeBase' - The commit ID of the most recent commit that the source branch and the -- destination branch have in common. -- -- 'repositoryName', 'pullRequestSourceReferenceUpdatedEventMetadata_repositoryName' - The name of the repository where the pull request was updated. newPullRequestSourceReferenceUpdatedEventMetadata :: PullRequestSourceReferenceUpdatedEventMetadata newPullRequestSourceReferenceUpdatedEventMetadata = PullRequestSourceReferenceUpdatedEventMetadata' { afterCommitId = Prelude.Nothing, beforeCommitId = Prelude.Nothing, mergeBase = Prelude.Nothing, repositoryName = Prelude.Nothing } -- | The full commit ID of the commit in the source branch that was the tip -- of the branch at the time the pull request was updated. pullRequestSourceReferenceUpdatedEventMetadata_afterCommitId :: Lens.Lens' PullRequestSourceReferenceUpdatedEventMetadata (Prelude.Maybe Prelude.Text) pullRequestSourceReferenceUpdatedEventMetadata_afterCommitId = Lens.lens (\PullRequestSourceReferenceUpdatedEventMetadata' {afterCommitId} -> afterCommitId) (\s@PullRequestSourceReferenceUpdatedEventMetadata' {} a -> s {afterCommitId = a} :: PullRequestSourceReferenceUpdatedEventMetadata) -- | The full commit ID of the commit in the destination branch that was the -- tip of the branch at the time the pull request was updated. pullRequestSourceReferenceUpdatedEventMetadata_beforeCommitId :: Lens.Lens' PullRequestSourceReferenceUpdatedEventMetadata (Prelude.Maybe Prelude.Text) pullRequestSourceReferenceUpdatedEventMetadata_beforeCommitId = Lens.lens (\PullRequestSourceReferenceUpdatedEventMetadata' {beforeCommitId} -> beforeCommitId) (\s@PullRequestSourceReferenceUpdatedEventMetadata' {} a -> s {beforeCommitId = a} :: PullRequestSourceReferenceUpdatedEventMetadata) -- | The commit ID of the most recent commit that the source branch and the -- destination branch have in common. pullRequestSourceReferenceUpdatedEventMetadata_mergeBase :: Lens.Lens' PullRequestSourceReferenceUpdatedEventMetadata (Prelude.Maybe Prelude.Text) pullRequestSourceReferenceUpdatedEventMetadata_mergeBase = Lens.lens (\PullRequestSourceReferenceUpdatedEventMetadata' {mergeBase} -> mergeBase) (\s@PullRequestSourceReferenceUpdatedEventMetadata' {} a -> s {mergeBase = a} :: PullRequestSourceReferenceUpdatedEventMetadata) -- | The name of the repository where the pull request was updated. pullRequestSourceReferenceUpdatedEventMetadata_repositoryName :: Lens.Lens' PullRequestSourceReferenceUpdatedEventMetadata (Prelude.Maybe Prelude.Text) pullRequestSourceReferenceUpdatedEventMetadata_repositoryName = Lens.lens (\PullRequestSourceReferenceUpdatedEventMetadata' {repositoryName} -> repositoryName) (\s@PullRequestSourceReferenceUpdatedEventMetadata' {} a -> s {repositoryName = a} :: PullRequestSourceReferenceUpdatedEventMetadata) instance Data.FromJSON PullRequestSourceReferenceUpdatedEventMetadata where parseJSON = Data.withObject "PullRequestSourceReferenceUpdatedEventMetadata" ( \x -> PullRequestSourceReferenceUpdatedEventMetadata' Prelude.<$> (x Data..:? "afterCommitId") Prelude.<*> (x Data..:? "beforeCommitId") Prelude.<*> (x Data..:? "mergeBase") Prelude.<*> (x Data..:? "repositoryName") ) instance Prelude.Hashable PullRequestSourceReferenceUpdatedEventMetadata where hashWithSalt _salt PullRequestSourceReferenceUpdatedEventMetadata' {..} = _salt `Prelude.hashWithSalt` afterCommitId `Prelude.hashWithSalt` beforeCommitId `Prelude.hashWithSalt` mergeBase `Prelude.hashWithSalt` repositoryName instance Prelude.NFData PullRequestSourceReferenceUpdatedEventMetadata where rnf PullRequestSourceReferenceUpdatedEventMetadata' {..} = Prelude.rnf afterCommitId `Prelude.seq` Prelude.rnf beforeCommitId `Prelude.seq` Prelude.rnf mergeBase `Prelude.seq` Prelude.rnf repositoryName