amazonka-codecommit-2.0: gen/Amazonka/CodeCommit/Types/Difference.hs
{-# 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.Difference
-- 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.Difference where
import Amazonka.CodeCommit.Types.BlobMetadata
import Amazonka.CodeCommit.Types.ChangeTypeEnum
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
-- | Returns information about a set of differences for a commit specifier.
--
-- /See:/ 'newDifference' smart constructor.
data Difference = Difference'
{ -- | Information about an @afterBlob@ data type object, including the ID, the
-- file mode permission code, and the path.
afterBlob :: Prelude.Maybe BlobMetadata,
-- | Information about a @beforeBlob@ data type object, including the ID, the
-- file mode permission code, and the path.
beforeBlob :: Prelude.Maybe BlobMetadata,
-- | Whether the change type of the difference is an addition (A), deletion
-- (D), or modification (M).
changeType :: Prelude.Maybe ChangeTypeEnum
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'Difference' 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:
--
-- 'afterBlob', 'difference_afterBlob' - Information about an @afterBlob@ data type object, including the ID, the
-- file mode permission code, and the path.
--
-- 'beforeBlob', 'difference_beforeBlob' - Information about a @beforeBlob@ data type object, including the ID, the
-- file mode permission code, and the path.
--
-- 'changeType', 'difference_changeType' - Whether the change type of the difference is an addition (A), deletion
-- (D), or modification (M).
newDifference ::
Difference
newDifference =
Difference'
{ afterBlob = Prelude.Nothing,
beforeBlob = Prelude.Nothing,
changeType = Prelude.Nothing
}
-- | Information about an @afterBlob@ data type object, including the ID, the
-- file mode permission code, and the path.
difference_afterBlob :: Lens.Lens' Difference (Prelude.Maybe BlobMetadata)
difference_afterBlob = Lens.lens (\Difference' {afterBlob} -> afterBlob) (\s@Difference' {} a -> s {afterBlob = a} :: Difference)
-- | Information about a @beforeBlob@ data type object, including the ID, the
-- file mode permission code, and the path.
difference_beforeBlob :: Lens.Lens' Difference (Prelude.Maybe BlobMetadata)
difference_beforeBlob = Lens.lens (\Difference' {beforeBlob} -> beforeBlob) (\s@Difference' {} a -> s {beforeBlob = a} :: Difference)
-- | Whether the change type of the difference is an addition (A), deletion
-- (D), or modification (M).
difference_changeType :: Lens.Lens' Difference (Prelude.Maybe ChangeTypeEnum)
difference_changeType = Lens.lens (\Difference' {changeType} -> changeType) (\s@Difference' {} a -> s {changeType = a} :: Difference)
instance Data.FromJSON Difference where
parseJSON =
Data.withObject
"Difference"
( \x ->
Difference'
Prelude.<$> (x Data..:? "afterBlob")
Prelude.<*> (x Data..:? "beforeBlob")
Prelude.<*> (x Data..:? "changeType")
)
instance Prelude.Hashable Difference where
hashWithSalt _salt Difference' {..} =
_salt
`Prelude.hashWithSalt` afterBlob
`Prelude.hashWithSalt` beforeBlob
`Prelude.hashWithSalt` changeType
instance Prelude.NFData Difference where
rnf Difference' {..} =
Prelude.rnf afterBlob
`Prelude.seq` Prelude.rnf beforeBlob
`Prelude.seq` Prelude.rnf changeType