{-# 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.RepositoryMetadata
-- 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.RepositoryMetadata 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 a repository.
--
-- /See:/ 'newRepositoryMetadata' smart constructor.
data RepositoryMetadata = RepositoryMetadata'
  { -- | The Amazon Resource Name (ARN) of the repository.
    RepositoryMetadata -> Maybe Text
arn :: Prelude.Maybe Prelude.Text,
    -- | The ID of the AWS account associated with the repository.
    RepositoryMetadata -> Maybe Text
accountId :: Prelude.Maybe Prelude.Text,
    -- | The URL to use for cloning the repository over HTTPS.
    RepositoryMetadata -> Maybe Text
cloneUrlHttp :: Prelude.Maybe Prelude.Text,
    -- | The URL to use for cloning the repository over SSH.
    RepositoryMetadata -> Maybe Text
cloneUrlSsh :: Prelude.Maybe Prelude.Text,
    -- | The date and time the repository was created, in timestamp format.
    RepositoryMetadata -> Maybe POSIX
creationDate :: Prelude.Maybe Data.POSIX,
    -- | The repository\'s default branch name.
    RepositoryMetadata -> Maybe Text
defaultBranch :: Prelude.Maybe Prelude.Text,
    -- | The date and time the repository was last modified, in timestamp format.
    RepositoryMetadata -> Maybe POSIX
lastModifiedDate :: Prelude.Maybe Data.POSIX,
    -- | A comment or description about the repository.
    RepositoryMetadata -> Maybe Text
repositoryDescription :: Prelude.Maybe Prelude.Text,
    -- | The ID of the repository.
    RepositoryMetadata -> Maybe Text
repositoryId :: Prelude.Maybe Prelude.Text,
    -- | The repository\'s name.
    RepositoryMetadata -> Maybe Text
repositoryName :: Prelude.Maybe Prelude.Text
  }
  deriving (RepositoryMetadata -> RepositoryMetadata -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: RepositoryMetadata -> RepositoryMetadata -> Bool
$c/= :: RepositoryMetadata -> RepositoryMetadata -> Bool
== :: RepositoryMetadata -> RepositoryMetadata -> Bool
$c== :: RepositoryMetadata -> RepositoryMetadata -> Bool
Prelude.Eq, ReadPrec [RepositoryMetadata]
ReadPrec RepositoryMetadata
Int -> ReadS RepositoryMetadata
ReadS [RepositoryMetadata]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [RepositoryMetadata]
$creadListPrec :: ReadPrec [RepositoryMetadata]
readPrec :: ReadPrec RepositoryMetadata
$creadPrec :: ReadPrec RepositoryMetadata
readList :: ReadS [RepositoryMetadata]
$creadList :: ReadS [RepositoryMetadata]
readsPrec :: Int -> ReadS RepositoryMetadata
$creadsPrec :: Int -> ReadS RepositoryMetadata
Prelude.Read, Int -> RepositoryMetadata -> ShowS
[RepositoryMetadata] -> ShowS
RepositoryMetadata -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [RepositoryMetadata] -> ShowS
$cshowList :: [RepositoryMetadata] -> ShowS
show :: RepositoryMetadata -> String
$cshow :: RepositoryMetadata -> String
showsPrec :: Int -> RepositoryMetadata -> ShowS
$cshowsPrec :: Int -> RepositoryMetadata -> ShowS
Prelude.Show, forall x. Rep RepositoryMetadata x -> RepositoryMetadata
forall x. RepositoryMetadata -> Rep RepositoryMetadata x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep RepositoryMetadata x -> RepositoryMetadata
$cfrom :: forall x. RepositoryMetadata -> Rep RepositoryMetadata x
Prelude.Generic)

-- |
-- Create a value of 'RepositoryMetadata' 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:
--
-- 'arn', 'repositoryMetadata_arn' - The Amazon Resource Name (ARN) of the repository.
--
-- 'accountId', 'repositoryMetadata_accountId' - The ID of the AWS account associated with the repository.
--
-- 'cloneUrlHttp', 'repositoryMetadata_cloneUrlHttp' - The URL to use for cloning the repository over HTTPS.
--
-- 'cloneUrlSsh', 'repositoryMetadata_cloneUrlSsh' - The URL to use for cloning the repository over SSH.
--
-- 'creationDate', 'repositoryMetadata_creationDate' - The date and time the repository was created, in timestamp format.
--
-- 'defaultBranch', 'repositoryMetadata_defaultBranch' - The repository\'s default branch name.
--
-- 'lastModifiedDate', 'repositoryMetadata_lastModifiedDate' - The date and time the repository was last modified, in timestamp format.
--
-- 'repositoryDescription', 'repositoryMetadata_repositoryDescription' - A comment or description about the repository.
--
-- 'repositoryId', 'repositoryMetadata_repositoryId' - The ID of the repository.
--
-- 'repositoryName', 'repositoryMetadata_repositoryName' - The repository\'s name.
newRepositoryMetadata ::
  RepositoryMetadata
newRepositoryMetadata :: RepositoryMetadata
newRepositoryMetadata =
  RepositoryMetadata'
    { $sel:arn:RepositoryMetadata' :: Maybe Text
arn = forall a. Maybe a
Prelude.Nothing,
      $sel:accountId:RepositoryMetadata' :: Maybe Text
accountId = forall a. Maybe a
Prelude.Nothing,
      $sel:cloneUrlHttp:RepositoryMetadata' :: Maybe Text
cloneUrlHttp = forall a. Maybe a
Prelude.Nothing,
      $sel:cloneUrlSsh:RepositoryMetadata' :: Maybe Text
cloneUrlSsh = forall a. Maybe a
Prelude.Nothing,
      $sel:creationDate:RepositoryMetadata' :: Maybe POSIX
creationDate = forall a. Maybe a
Prelude.Nothing,
      $sel:defaultBranch:RepositoryMetadata' :: Maybe Text
defaultBranch = forall a. Maybe a
Prelude.Nothing,
      $sel:lastModifiedDate:RepositoryMetadata' :: Maybe POSIX
lastModifiedDate = forall a. Maybe a
Prelude.Nothing,
      $sel:repositoryDescription:RepositoryMetadata' :: Maybe Text
repositoryDescription = forall a. Maybe a
Prelude.Nothing,
      $sel:repositoryId:RepositoryMetadata' :: Maybe Text
repositoryId = forall a. Maybe a
Prelude.Nothing,
      $sel:repositoryName:RepositoryMetadata' :: Maybe Text
repositoryName = forall a. Maybe a
Prelude.Nothing
    }

-- | The Amazon Resource Name (ARN) of the repository.
repositoryMetadata_arn :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.Text)
repositoryMetadata_arn :: Lens' RepositoryMetadata (Maybe Text)
repositoryMetadata_arn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe Text
arn :: Maybe Text
$sel:arn:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
arn} -> Maybe Text
arn) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe Text
a -> RepositoryMetadata
s {$sel:arn:RepositoryMetadata' :: Maybe Text
arn = Maybe Text
a} :: RepositoryMetadata)

-- | The ID of the AWS account associated with the repository.
repositoryMetadata_accountId :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.Text)
repositoryMetadata_accountId :: Lens' RepositoryMetadata (Maybe Text)
repositoryMetadata_accountId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe Text
accountId :: Maybe Text
$sel:accountId:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
accountId} -> Maybe Text
accountId) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe Text
a -> RepositoryMetadata
s {$sel:accountId:RepositoryMetadata' :: Maybe Text
accountId = Maybe Text
a} :: RepositoryMetadata)

-- | The URL to use for cloning the repository over HTTPS.
repositoryMetadata_cloneUrlHttp :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.Text)
repositoryMetadata_cloneUrlHttp :: Lens' RepositoryMetadata (Maybe Text)
repositoryMetadata_cloneUrlHttp = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe Text
cloneUrlHttp :: Maybe Text
$sel:cloneUrlHttp:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
cloneUrlHttp} -> Maybe Text
cloneUrlHttp) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe Text
a -> RepositoryMetadata
s {$sel:cloneUrlHttp:RepositoryMetadata' :: Maybe Text
cloneUrlHttp = Maybe Text
a} :: RepositoryMetadata)

-- | The URL to use for cloning the repository over SSH.
repositoryMetadata_cloneUrlSsh :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.Text)
repositoryMetadata_cloneUrlSsh :: Lens' RepositoryMetadata (Maybe Text)
repositoryMetadata_cloneUrlSsh = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe Text
cloneUrlSsh :: Maybe Text
$sel:cloneUrlSsh:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
cloneUrlSsh} -> Maybe Text
cloneUrlSsh) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe Text
a -> RepositoryMetadata
s {$sel:cloneUrlSsh:RepositoryMetadata' :: Maybe Text
cloneUrlSsh = Maybe Text
a} :: RepositoryMetadata)

-- | The date and time the repository was created, in timestamp format.
repositoryMetadata_creationDate :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.UTCTime)
repositoryMetadata_creationDate :: Lens' RepositoryMetadata (Maybe UTCTime)
repositoryMetadata_creationDate = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe POSIX
creationDate :: Maybe POSIX
$sel:creationDate:RepositoryMetadata' :: RepositoryMetadata -> Maybe POSIX
creationDate} -> Maybe POSIX
creationDate) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe POSIX
a -> RepositoryMetadata
s {$sel:creationDate:RepositoryMetadata' :: Maybe POSIX
creationDate = Maybe POSIX
a} :: RepositoryMetadata) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | The repository\'s default branch name.
repositoryMetadata_defaultBranch :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.Text)
repositoryMetadata_defaultBranch :: Lens' RepositoryMetadata (Maybe Text)
repositoryMetadata_defaultBranch = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe Text
defaultBranch :: Maybe Text
$sel:defaultBranch:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
defaultBranch} -> Maybe Text
defaultBranch) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe Text
a -> RepositoryMetadata
s {$sel:defaultBranch:RepositoryMetadata' :: Maybe Text
defaultBranch = Maybe Text
a} :: RepositoryMetadata)

-- | The date and time the repository was last modified, in timestamp format.
repositoryMetadata_lastModifiedDate :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.UTCTime)
repositoryMetadata_lastModifiedDate :: Lens' RepositoryMetadata (Maybe UTCTime)
repositoryMetadata_lastModifiedDate = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe POSIX
lastModifiedDate :: Maybe POSIX
$sel:lastModifiedDate:RepositoryMetadata' :: RepositoryMetadata -> Maybe POSIX
lastModifiedDate} -> Maybe POSIX
lastModifiedDate) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe POSIX
a -> RepositoryMetadata
s {$sel:lastModifiedDate:RepositoryMetadata' :: Maybe POSIX
lastModifiedDate = Maybe POSIX
a} :: RepositoryMetadata) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | A comment or description about the repository.
repositoryMetadata_repositoryDescription :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.Text)
repositoryMetadata_repositoryDescription :: Lens' RepositoryMetadata (Maybe Text)
repositoryMetadata_repositoryDescription = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe Text
repositoryDescription :: Maybe Text
$sel:repositoryDescription:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
repositoryDescription} -> Maybe Text
repositoryDescription) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe Text
a -> RepositoryMetadata
s {$sel:repositoryDescription:RepositoryMetadata' :: Maybe Text
repositoryDescription = Maybe Text
a} :: RepositoryMetadata)

-- | The ID of the repository.
repositoryMetadata_repositoryId :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.Text)
repositoryMetadata_repositoryId :: Lens' RepositoryMetadata (Maybe Text)
repositoryMetadata_repositoryId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe Text
repositoryId :: Maybe Text
$sel:repositoryId:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
repositoryId} -> Maybe Text
repositoryId) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe Text
a -> RepositoryMetadata
s {$sel:repositoryId:RepositoryMetadata' :: Maybe Text
repositoryId = Maybe Text
a} :: RepositoryMetadata)

-- | The repository\'s name.
repositoryMetadata_repositoryName :: Lens.Lens' RepositoryMetadata (Prelude.Maybe Prelude.Text)
repositoryMetadata_repositoryName :: Lens' RepositoryMetadata (Maybe Text)
repositoryMetadata_repositoryName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RepositoryMetadata' {Maybe Text
repositoryName :: Maybe Text
$sel:repositoryName:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
repositoryName} -> Maybe Text
repositoryName) (\s :: RepositoryMetadata
s@RepositoryMetadata' {} Maybe Text
a -> RepositoryMetadata
s {$sel:repositoryName:RepositoryMetadata' :: Maybe Text
repositoryName = Maybe Text
a} :: RepositoryMetadata)

instance Data.FromJSON RepositoryMetadata where
  parseJSON :: Value -> Parser RepositoryMetadata
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"RepositoryMetadata"
      ( \Object
x ->
          Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe POSIX
-> Maybe Text
-> Maybe POSIX
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> RepositoryMetadata
RepositoryMetadata'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Arn")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"accountId")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"cloneUrlHttp")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"cloneUrlSsh")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"creationDate")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"defaultBranch")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"lastModifiedDate")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"repositoryDescription")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"repositoryId")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"repositoryName")
      )

instance Prelude.Hashable RepositoryMetadata where
  hashWithSalt :: Int -> RepositoryMetadata -> Int
hashWithSalt Int
_salt RepositoryMetadata' {Maybe Text
Maybe POSIX
repositoryName :: Maybe Text
repositoryId :: Maybe Text
repositoryDescription :: Maybe Text
lastModifiedDate :: Maybe POSIX
defaultBranch :: Maybe Text
creationDate :: Maybe POSIX
cloneUrlSsh :: Maybe Text
cloneUrlHttp :: Maybe Text
accountId :: Maybe Text
arn :: Maybe Text
$sel:repositoryName:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:repositoryId:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:repositoryDescription:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:lastModifiedDate:RepositoryMetadata' :: RepositoryMetadata -> Maybe POSIX
$sel:defaultBranch:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:creationDate:RepositoryMetadata' :: RepositoryMetadata -> Maybe POSIX
$sel:cloneUrlSsh:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:cloneUrlHttp:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:accountId:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:arn:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
arn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
accountId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
cloneUrlHttp
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
cloneUrlSsh
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
creationDate
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
defaultBranch
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
lastModifiedDate
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
repositoryDescription
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
repositoryId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
repositoryName

instance Prelude.NFData RepositoryMetadata where
  rnf :: RepositoryMetadata -> ()
rnf RepositoryMetadata' {Maybe Text
Maybe POSIX
repositoryName :: Maybe Text
repositoryId :: Maybe Text
repositoryDescription :: Maybe Text
lastModifiedDate :: Maybe POSIX
defaultBranch :: Maybe Text
creationDate :: Maybe POSIX
cloneUrlSsh :: Maybe Text
cloneUrlHttp :: Maybe Text
accountId :: Maybe Text
arn :: Maybe Text
$sel:repositoryName:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:repositoryId:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:repositoryDescription:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:lastModifiedDate:RepositoryMetadata' :: RepositoryMetadata -> Maybe POSIX
$sel:defaultBranch:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:creationDate:RepositoryMetadata' :: RepositoryMetadata -> Maybe POSIX
$sel:cloneUrlSsh:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:cloneUrlHttp:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:accountId:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
$sel:arn:RepositoryMetadata' :: RepositoryMetadata -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
arn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
accountId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
cloneUrlHttp
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
cloneUrlSsh
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
creationDate
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
defaultBranch
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
lastModifiedDate
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
repositoryDescription
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
repositoryId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
repositoryName