{-# 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 #-}
module Amazonka.DeviceFarm.Types.Artifact where
import qualified Amazonka.Core as Core
import Amazonka.DeviceFarm.Types.ArtifactType
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data Artifact = Artifact'
{
Artifact -> Maybe Text
arn :: Prelude.Maybe Prelude.Text,
Artifact -> Maybe Text
url :: Prelude.Maybe Prelude.Text,
Artifact -> Maybe Text
extension :: Prelude.Maybe Prelude.Text,
Artifact -> Maybe Text
name :: Prelude.Maybe Prelude.Text,
Artifact -> Maybe ArtifactType
type' :: Prelude.Maybe ArtifactType
}
deriving (Artifact -> Artifact -> Bool
(Artifact -> Artifact -> Bool)
-> (Artifact -> Artifact -> Bool) -> Eq Artifact
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Artifact -> Artifact -> Bool
$c/= :: Artifact -> Artifact -> Bool
== :: Artifact -> Artifact -> Bool
$c== :: Artifact -> Artifact -> Bool
Prelude.Eq, ReadPrec [Artifact]
ReadPrec Artifact
Int -> ReadS Artifact
ReadS [Artifact]
(Int -> ReadS Artifact)
-> ReadS [Artifact]
-> ReadPrec Artifact
-> ReadPrec [Artifact]
-> Read Artifact
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Artifact]
$creadListPrec :: ReadPrec [Artifact]
readPrec :: ReadPrec Artifact
$creadPrec :: ReadPrec Artifact
readList :: ReadS [Artifact]
$creadList :: ReadS [Artifact]
readsPrec :: Int -> ReadS Artifact
$creadsPrec :: Int -> ReadS Artifact
Prelude.Read, Int -> Artifact -> ShowS
[Artifact] -> ShowS
Artifact -> String
(Int -> Artifact -> ShowS)
-> (Artifact -> String) -> ([Artifact] -> ShowS) -> Show Artifact
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Artifact] -> ShowS
$cshowList :: [Artifact] -> ShowS
show :: Artifact -> String
$cshow :: Artifact -> String
showsPrec :: Int -> Artifact -> ShowS
$cshowsPrec :: Int -> Artifact -> ShowS
Prelude.Show, (forall x. Artifact -> Rep Artifact x)
-> (forall x. Rep Artifact x -> Artifact) -> Generic Artifact
forall x. Rep Artifact x -> Artifact
forall x. Artifact -> Rep Artifact x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Artifact x -> Artifact
$cfrom :: forall x. Artifact -> Rep Artifact x
Prelude.Generic)
newArtifact ::
Artifact
newArtifact :: Artifact
newArtifact =
Artifact' :: Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe ArtifactType
-> Artifact
Artifact'
{ $sel:arn:Artifact' :: Maybe Text
arn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:url:Artifact' :: Maybe Text
url = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:extension:Artifact' :: Maybe Text
extension = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:name:Artifact' :: Maybe Text
name = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:type':Artifact' :: Maybe ArtifactType
type' = Maybe ArtifactType
forall a. Maybe a
Prelude.Nothing
}
artifact_arn :: Lens.Lens' Artifact (Prelude.Maybe Prelude.Text)
artifact_arn :: (Maybe Text -> f (Maybe Text)) -> Artifact -> f Artifact
artifact_arn = (Artifact -> Maybe Text)
-> (Artifact -> Maybe Text -> Artifact)
-> Lens Artifact Artifact (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Artifact' {Maybe Text
arn :: Maybe Text
$sel:arn:Artifact' :: Artifact -> Maybe Text
arn} -> Maybe Text
arn) (\s :: Artifact
s@Artifact' {} Maybe Text
a -> Artifact
s {$sel:arn:Artifact' :: Maybe Text
arn = Maybe Text
a} :: Artifact)
artifact_url :: Lens.Lens' Artifact (Prelude.Maybe Prelude.Text)
artifact_url :: (Maybe Text -> f (Maybe Text)) -> Artifact -> f Artifact
artifact_url = (Artifact -> Maybe Text)
-> (Artifact -> Maybe Text -> Artifact)
-> Lens Artifact Artifact (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Artifact' {Maybe Text
url :: Maybe Text
$sel:url:Artifact' :: Artifact -> Maybe Text
url} -> Maybe Text
url) (\s :: Artifact
s@Artifact' {} Maybe Text
a -> Artifact
s {$sel:url:Artifact' :: Maybe Text
url = Maybe Text
a} :: Artifact)
artifact_extension :: Lens.Lens' Artifact (Prelude.Maybe Prelude.Text)
artifact_extension :: (Maybe Text -> f (Maybe Text)) -> Artifact -> f Artifact
artifact_extension = (Artifact -> Maybe Text)
-> (Artifact -> Maybe Text -> Artifact)
-> Lens Artifact Artifact (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Artifact' {Maybe Text
extension :: Maybe Text
$sel:extension:Artifact' :: Artifact -> Maybe Text
extension} -> Maybe Text
extension) (\s :: Artifact
s@Artifact' {} Maybe Text
a -> Artifact
s {$sel:extension:Artifact' :: Maybe Text
extension = Maybe Text
a} :: Artifact)
artifact_name :: Lens.Lens' Artifact (Prelude.Maybe Prelude.Text)
artifact_name :: (Maybe Text -> f (Maybe Text)) -> Artifact -> f Artifact
artifact_name = (Artifact -> Maybe Text)
-> (Artifact -> Maybe Text -> Artifact)
-> Lens Artifact Artifact (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Artifact' {Maybe Text
name :: Maybe Text
$sel:name:Artifact' :: Artifact -> Maybe Text
name} -> Maybe Text
name) (\s :: Artifact
s@Artifact' {} Maybe Text
a -> Artifact
s {$sel:name:Artifact' :: Maybe Text
name = Maybe Text
a} :: Artifact)
artifact_type :: Lens.Lens' Artifact (Prelude.Maybe ArtifactType)
artifact_type :: (Maybe ArtifactType -> f (Maybe ArtifactType))
-> Artifact -> f Artifact
artifact_type = (Artifact -> Maybe ArtifactType)
-> (Artifact -> Maybe ArtifactType -> Artifact)
-> Lens Artifact Artifact (Maybe ArtifactType) (Maybe ArtifactType)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Artifact' {Maybe ArtifactType
type' :: Maybe ArtifactType
$sel:type':Artifact' :: Artifact -> Maybe ArtifactType
type'} -> Maybe ArtifactType
type') (\s :: Artifact
s@Artifact' {} Maybe ArtifactType
a -> Artifact
s {$sel:type':Artifact' :: Maybe ArtifactType
type' = Maybe ArtifactType
a} :: Artifact)
instance Core.FromJSON Artifact where
parseJSON :: Value -> Parser Artifact
parseJSON =
String -> (Object -> Parser Artifact) -> Value -> Parser Artifact
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"Artifact"
( \Object
x ->
Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe ArtifactType
-> Artifact
Artifact'
(Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe ArtifactType
-> Artifact)
-> Parser (Maybe Text)
-> Parser
(Maybe Text
-> Maybe Text -> Maybe Text -> Maybe ArtifactType -> Artifact)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"arn")
Parser
(Maybe Text
-> Maybe Text -> Maybe Text -> Maybe ArtifactType -> Artifact)
-> Parser (Maybe Text)
-> Parser
(Maybe Text -> Maybe Text -> Maybe ArtifactType -> Artifact)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"url")
Parser (Maybe Text -> Maybe Text -> Maybe ArtifactType -> Artifact)
-> Parser (Maybe Text)
-> Parser (Maybe Text -> Maybe ArtifactType -> Artifact)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"extension")
Parser (Maybe Text -> Maybe ArtifactType -> Artifact)
-> Parser (Maybe Text) -> Parser (Maybe ArtifactType -> Artifact)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"name")
Parser (Maybe ArtifactType -> Artifact)
-> Parser (Maybe ArtifactType) -> Parser Artifact
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe ArtifactType)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"type")
)
instance Prelude.Hashable Artifact
instance Prelude.NFData Artifact