{-# 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 #-}
module Amazonka.IoTDeviceAdvisor.GetSuiteRunReport
(
GetSuiteRunReport (..),
newGetSuiteRunReport,
getSuiteRunReport_suiteDefinitionId,
getSuiteRunReport_suiteRunId,
GetSuiteRunReportResponse (..),
newGetSuiteRunReportResponse,
getSuiteRunReportResponse_qualificationReportDownloadUrl,
getSuiteRunReportResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.IoTDeviceAdvisor.Types
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data GetSuiteRunReport = GetSuiteRunReport'
{
GetSuiteRunReport -> Text
suiteDefinitionId :: Prelude.Text,
GetSuiteRunReport -> Text
suiteRunId :: Prelude.Text
}
deriving (GetSuiteRunReport -> GetSuiteRunReport -> Bool
(GetSuiteRunReport -> GetSuiteRunReport -> Bool)
-> (GetSuiteRunReport -> GetSuiteRunReport -> Bool)
-> Eq GetSuiteRunReport
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetSuiteRunReport -> GetSuiteRunReport -> Bool
$c/= :: GetSuiteRunReport -> GetSuiteRunReport -> Bool
== :: GetSuiteRunReport -> GetSuiteRunReport -> Bool
$c== :: GetSuiteRunReport -> GetSuiteRunReport -> Bool
Prelude.Eq, ReadPrec [GetSuiteRunReport]
ReadPrec GetSuiteRunReport
Int -> ReadS GetSuiteRunReport
ReadS [GetSuiteRunReport]
(Int -> ReadS GetSuiteRunReport)
-> ReadS [GetSuiteRunReport]
-> ReadPrec GetSuiteRunReport
-> ReadPrec [GetSuiteRunReport]
-> Read GetSuiteRunReport
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetSuiteRunReport]
$creadListPrec :: ReadPrec [GetSuiteRunReport]
readPrec :: ReadPrec GetSuiteRunReport
$creadPrec :: ReadPrec GetSuiteRunReport
readList :: ReadS [GetSuiteRunReport]
$creadList :: ReadS [GetSuiteRunReport]
readsPrec :: Int -> ReadS GetSuiteRunReport
$creadsPrec :: Int -> ReadS GetSuiteRunReport
Prelude.Read, Int -> GetSuiteRunReport -> ShowS
[GetSuiteRunReport] -> ShowS
GetSuiteRunReport -> String
(Int -> GetSuiteRunReport -> ShowS)
-> (GetSuiteRunReport -> String)
-> ([GetSuiteRunReport] -> ShowS)
-> Show GetSuiteRunReport
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetSuiteRunReport] -> ShowS
$cshowList :: [GetSuiteRunReport] -> ShowS
show :: GetSuiteRunReport -> String
$cshow :: GetSuiteRunReport -> String
showsPrec :: Int -> GetSuiteRunReport -> ShowS
$cshowsPrec :: Int -> GetSuiteRunReport -> ShowS
Prelude.Show, (forall x. GetSuiteRunReport -> Rep GetSuiteRunReport x)
-> (forall x. Rep GetSuiteRunReport x -> GetSuiteRunReport)
-> Generic GetSuiteRunReport
forall x. Rep GetSuiteRunReport x -> GetSuiteRunReport
forall x. GetSuiteRunReport -> Rep GetSuiteRunReport x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetSuiteRunReport x -> GetSuiteRunReport
$cfrom :: forall x. GetSuiteRunReport -> Rep GetSuiteRunReport x
Prelude.Generic)
newGetSuiteRunReport ::
Prelude.Text ->
Prelude.Text ->
GetSuiteRunReport
newGetSuiteRunReport :: Text -> Text -> GetSuiteRunReport
newGetSuiteRunReport Text
pSuiteDefinitionId_ Text
pSuiteRunId_ =
GetSuiteRunReport' :: Text -> Text -> GetSuiteRunReport
GetSuiteRunReport'
{ $sel:suiteDefinitionId:GetSuiteRunReport' :: Text
suiteDefinitionId =
Text
pSuiteDefinitionId_,
$sel:suiteRunId:GetSuiteRunReport' :: Text
suiteRunId = Text
pSuiteRunId_
}
getSuiteRunReport_suiteDefinitionId :: Lens.Lens' GetSuiteRunReport Prelude.Text
getSuiteRunReport_suiteDefinitionId :: (Text -> f Text) -> GetSuiteRunReport -> f GetSuiteRunReport
getSuiteRunReport_suiteDefinitionId = (GetSuiteRunReport -> Text)
-> (GetSuiteRunReport -> Text -> GetSuiteRunReport)
-> Lens GetSuiteRunReport GetSuiteRunReport Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetSuiteRunReport' {Text
suiteDefinitionId :: Text
$sel:suiteDefinitionId:GetSuiteRunReport' :: GetSuiteRunReport -> Text
suiteDefinitionId} -> Text
suiteDefinitionId) (\s :: GetSuiteRunReport
s@GetSuiteRunReport' {} Text
a -> GetSuiteRunReport
s {$sel:suiteDefinitionId:GetSuiteRunReport' :: Text
suiteDefinitionId = Text
a} :: GetSuiteRunReport)
getSuiteRunReport_suiteRunId :: Lens.Lens' GetSuiteRunReport Prelude.Text
getSuiteRunReport_suiteRunId :: (Text -> f Text) -> GetSuiteRunReport -> f GetSuiteRunReport
getSuiteRunReport_suiteRunId = (GetSuiteRunReport -> Text)
-> (GetSuiteRunReport -> Text -> GetSuiteRunReport)
-> Lens GetSuiteRunReport GetSuiteRunReport Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetSuiteRunReport' {Text
suiteRunId :: Text
$sel:suiteRunId:GetSuiteRunReport' :: GetSuiteRunReport -> Text
suiteRunId} -> Text
suiteRunId) (\s :: GetSuiteRunReport
s@GetSuiteRunReport' {} Text
a -> GetSuiteRunReport
s {$sel:suiteRunId:GetSuiteRunReport' :: Text
suiteRunId = Text
a} :: GetSuiteRunReport)
instance Core.AWSRequest GetSuiteRunReport where
type
AWSResponse GetSuiteRunReport =
GetSuiteRunReportResponse
request :: GetSuiteRunReport -> Request GetSuiteRunReport
request = Service -> GetSuiteRunReport -> Request GetSuiteRunReport
forall a. ToRequest a => Service -> a -> Request a
Request.get Service
defaultService
response :: Logger
-> Service
-> Proxy GetSuiteRunReport
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse GetSuiteRunReport)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse GetSuiteRunReport))
-> Logger
-> Service
-> Proxy GetSuiteRunReport
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse GetSuiteRunReport)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
( \Int
s ResponseHeaders
h Object
x ->
Maybe Text -> Int -> GetSuiteRunReportResponse
GetSuiteRunReportResponse'
(Maybe Text -> Int -> GetSuiteRunReportResponse)
-> Either String (Maybe Text)
-> Either String (Int -> GetSuiteRunReportResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"qualificationReportDownloadUrl")
Either String (Int -> GetSuiteRunReportResponse)
-> Either String Int -> Either String GetSuiteRunReportResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
)
instance Prelude.Hashable GetSuiteRunReport
instance Prelude.NFData GetSuiteRunReport
instance Core.ToHeaders GetSuiteRunReport where
toHeaders :: GetSuiteRunReport -> ResponseHeaders
toHeaders =
ResponseHeaders -> GetSuiteRunReport -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"Content-Type"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Core.ToPath GetSuiteRunReport where
toPath :: GetSuiteRunReport -> ByteString
toPath GetSuiteRunReport' {Text
suiteRunId :: Text
suiteDefinitionId :: Text
$sel:suiteRunId:GetSuiteRunReport' :: GetSuiteRunReport -> Text
$sel:suiteDefinitionId:GetSuiteRunReport' :: GetSuiteRunReport -> Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"/suiteDefinitions/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
suiteDefinitionId,
ByteString
"/suiteRuns/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
suiteRunId,
ByteString
"/report"
]
instance Core.ToQuery GetSuiteRunReport where
toQuery :: GetSuiteRunReport -> QueryString
toQuery = QueryString -> GetSuiteRunReport -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data GetSuiteRunReportResponse = GetSuiteRunReportResponse'
{
GetSuiteRunReportResponse -> Maybe Text
qualificationReportDownloadUrl :: Prelude.Maybe Prelude.Text,
GetSuiteRunReportResponse -> Int
httpStatus :: Prelude.Int
}
deriving (GetSuiteRunReportResponse -> GetSuiteRunReportResponse -> Bool
(GetSuiteRunReportResponse -> GetSuiteRunReportResponse -> Bool)
-> (GetSuiteRunReportResponse -> GetSuiteRunReportResponse -> Bool)
-> Eq GetSuiteRunReportResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetSuiteRunReportResponse -> GetSuiteRunReportResponse -> Bool
$c/= :: GetSuiteRunReportResponse -> GetSuiteRunReportResponse -> Bool
== :: GetSuiteRunReportResponse -> GetSuiteRunReportResponse -> Bool
$c== :: GetSuiteRunReportResponse -> GetSuiteRunReportResponse -> Bool
Prelude.Eq, ReadPrec [GetSuiteRunReportResponse]
ReadPrec GetSuiteRunReportResponse
Int -> ReadS GetSuiteRunReportResponse
ReadS [GetSuiteRunReportResponse]
(Int -> ReadS GetSuiteRunReportResponse)
-> ReadS [GetSuiteRunReportResponse]
-> ReadPrec GetSuiteRunReportResponse
-> ReadPrec [GetSuiteRunReportResponse]
-> Read GetSuiteRunReportResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetSuiteRunReportResponse]
$creadListPrec :: ReadPrec [GetSuiteRunReportResponse]
readPrec :: ReadPrec GetSuiteRunReportResponse
$creadPrec :: ReadPrec GetSuiteRunReportResponse
readList :: ReadS [GetSuiteRunReportResponse]
$creadList :: ReadS [GetSuiteRunReportResponse]
readsPrec :: Int -> ReadS GetSuiteRunReportResponse
$creadsPrec :: Int -> ReadS GetSuiteRunReportResponse
Prelude.Read, Int -> GetSuiteRunReportResponse -> ShowS
[GetSuiteRunReportResponse] -> ShowS
GetSuiteRunReportResponse -> String
(Int -> GetSuiteRunReportResponse -> ShowS)
-> (GetSuiteRunReportResponse -> String)
-> ([GetSuiteRunReportResponse] -> ShowS)
-> Show GetSuiteRunReportResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetSuiteRunReportResponse] -> ShowS
$cshowList :: [GetSuiteRunReportResponse] -> ShowS
show :: GetSuiteRunReportResponse -> String
$cshow :: GetSuiteRunReportResponse -> String
showsPrec :: Int -> GetSuiteRunReportResponse -> ShowS
$cshowsPrec :: Int -> GetSuiteRunReportResponse -> ShowS
Prelude.Show, (forall x.
GetSuiteRunReportResponse -> Rep GetSuiteRunReportResponse x)
-> (forall x.
Rep GetSuiteRunReportResponse x -> GetSuiteRunReportResponse)
-> Generic GetSuiteRunReportResponse
forall x.
Rep GetSuiteRunReportResponse x -> GetSuiteRunReportResponse
forall x.
GetSuiteRunReportResponse -> Rep GetSuiteRunReportResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep GetSuiteRunReportResponse x -> GetSuiteRunReportResponse
$cfrom :: forall x.
GetSuiteRunReportResponse -> Rep GetSuiteRunReportResponse x
Prelude.Generic)
newGetSuiteRunReportResponse ::
Prelude.Int ->
GetSuiteRunReportResponse
newGetSuiteRunReportResponse :: Int -> GetSuiteRunReportResponse
newGetSuiteRunReportResponse Int
pHttpStatus_ =
GetSuiteRunReportResponse' :: Maybe Text -> Int -> GetSuiteRunReportResponse
GetSuiteRunReportResponse'
{ $sel:qualificationReportDownloadUrl:GetSuiteRunReportResponse' :: Maybe Text
qualificationReportDownloadUrl =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:GetSuiteRunReportResponse' :: Int
httpStatus = Int
pHttpStatus_
}
getSuiteRunReportResponse_qualificationReportDownloadUrl :: Lens.Lens' GetSuiteRunReportResponse (Prelude.Maybe Prelude.Text)
getSuiteRunReportResponse_qualificationReportDownloadUrl :: (Maybe Text -> f (Maybe Text))
-> GetSuiteRunReportResponse -> f GetSuiteRunReportResponse
getSuiteRunReportResponse_qualificationReportDownloadUrl = (GetSuiteRunReportResponse -> Maybe Text)
-> (GetSuiteRunReportResponse
-> Maybe Text -> GetSuiteRunReportResponse)
-> Lens
GetSuiteRunReportResponse
GetSuiteRunReportResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetSuiteRunReportResponse' {Maybe Text
qualificationReportDownloadUrl :: Maybe Text
$sel:qualificationReportDownloadUrl:GetSuiteRunReportResponse' :: GetSuiteRunReportResponse -> Maybe Text
qualificationReportDownloadUrl} -> Maybe Text
qualificationReportDownloadUrl) (\s :: GetSuiteRunReportResponse
s@GetSuiteRunReportResponse' {} Maybe Text
a -> GetSuiteRunReportResponse
s {$sel:qualificationReportDownloadUrl:GetSuiteRunReportResponse' :: Maybe Text
qualificationReportDownloadUrl = Maybe Text
a} :: GetSuiteRunReportResponse)
getSuiteRunReportResponse_httpStatus :: Lens.Lens' GetSuiteRunReportResponse Prelude.Int
getSuiteRunReportResponse_httpStatus :: (Int -> f Int)
-> GetSuiteRunReportResponse -> f GetSuiteRunReportResponse
getSuiteRunReportResponse_httpStatus = (GetSuiteRunReportResponse -> Int)
-> (GetSuiteRunReportResponse -> Int -> GetSuiteRunReportResponse)
-> Lens GetSuiteRunReportResponse GetSuiteRunReportResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetSuiteRunReportResponse' {Int
httpStatus :: Int
$sel:httpStatus:GetSuiteRunReportResponse' :: GetSuiteRunReportResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: GetSuiteRunReportResponse
s@GetSuiteRunReportResponse' {} Int
a -> GetSuiteRunReportResponse
s {$sel:httpStatus:GetSuiteRunReportResponse' :: Int
httpStatus = Int
a} :: GetSuiteRunReportResponse)
instance Prelude.NFData GetSuiteRunReportResponse