{-# 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.AppRunner.ListServices
(
ListServices (..),
newListServices,
listServices_nextToken,
listServices_maxResults,
ListServicesResponse (..),
newListServicesResponse,
listServicesResponse_nextToken,
listServicesResponse_httpStatus,
listServicesResponse_serviceSummaryList,
)
where
import Amazonka.AppRunner.Types
import qualified Amazonka.Core as Core
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 ListServices = ListServices'
{
ListServices -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
ListServices -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural
}
deriving (ListServices -> ListServices -> Bool
(ListServices -> ListServices -> Bool)
-> (ListServices -> ListServices -> Bool) -> Eq ListServices
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListServices -> ListServices -> Bool
$c/= :: ListServices -> ListServices -> Bool
== :: ListServices -> ListServices -> Bool
$c== :: ListServices -> ListServices -> Bool
Prelude.Eq, ReadPrec [ListServices]
ReadPrec ListServices
Int -> ReadS ListServices
ReadS [ListServices]
(Int -> ReadS ListServices)
-> ReadS [ListServices]
-> ReadPrec ListServices
-> ReadPrec [ListServices]
-> Read ListServices
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListServices]
$creadListPrec :: ReadPrec [ListServices]
readPrec :: ReadPrec ListServices
$creadPrec :: ReadPrec ListServices
readList :: ReadS [ListServices]
$creadList :: ReadS [ListServices]
readsPrec :: Int -> ReadS ListServices
$creadsPrec :: Int -> ReadS ListServices
Prelude.Read, Int -> ListServices -> ShowS
[ListServices] -> ShowS
ListServices -> String
(Int -> ListServices -> ShowS)
-> (ListServices -> String)
-> ([ListServices] -> ShowS)
-> Show ListServices
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListServices] -> ShowS
$cshowList :: [ListServices] -> ShowS
show :: ListServices -> String
$cshow :: ListServices -> String
showsPrec :: Int -> ListServices -> ShowS
$cshowsPrec :: Int -> ListServices -> ShowS
Prelude.Show, (forall x. ListServices -> Rep ListServices x)
-> (forall x. Rep ListServices x -> ListServices)
-> Generic ListServices
forall x. Rep ListServices x -> ListServices
forall x. ListServices -> Rep ListServices x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListServices x -> ListServices
$cfrom :: forall x. ListServices -> Rep ListServices x
Prelude.Generic)
newListServices ::
ListServices
newListServices :: ListServices
newListServices =
ListServices' :: Maybe Text -> Maybe Natural -> ListServices
ListServices'
{ $sel:nextToken:ListServices' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:maxResults:ListServices' :: Maybe Natural
maxResults = Maybe Natural
forall a. Maybe a
Prelude.Nothing
}
listServices_nextToken :: Lens.Lens' ListServices (Prelude.Maybe Prelude.Text)
listServices_nextToken :: (Maybe Text -> f (Maybe Text)) -> ListServices -> f ListServices
listServices_nextToken = (ListServices -> Maybe Text)
-> (ListServices -> Maybe Text -> ListServices)
-> Lens ListServices ListServices (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServices' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListServices' :: ListServices -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListServices
s@ListServices' {} Maybe Text
a -> ListServices
s {$sel:nextToken:ListServices' :: Maybe Text
nextToken = Maybe Text
a} :: ListServices)
listServices_maxResults :: Lens.Lens' ListServices (Prelude.Maybe Prelude.Natural)
listServices_maxResults :: (Maybe Natural -> f (Maybe Natural))
-> ListServices -> f ListServices
listServices_maxResults = (ListServices -> Maybe Natural)
-> (ListServices -> Maybe Natural -> ListServices)
-> Lens ListServices ListServices (Maybe Natural) (Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServices' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListServices' :: ListServices -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListServices
s@ListServices' {} Maybe Natural
a -> ListServices
s {$sel:maxResults:ListServices' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListServices)
instance Core.AWSRequest ListServices where
type AWSResponse ListServices = ListServicesResponse
request :: ListServices -> Request ListServices
request = Service -> ListServices -> Request ListServices
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy ListServices
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListServices)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse ListServices))
-> Logger
-> Service
-> Proxy ListServices
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListServices)))
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 -> [ServiceSummary] -> ListServicesResponse
ListServicesResponse'
(Maybe Text -> Int -> [ServiceSummary] -> ListServicesResponse)
-> Either String (Maybe Text)
-> Either String (Int -> [ServiceSummary] -> ListServicesResponse)
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
"NextToken")
Either String (Int -> [ServiceSummary] -> ListServicesResponse)
-> Either String Int
-> Either String ([ServiceSummary] -> ListServicesResponse)
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))
Either String ([ServiceSummary] -> ListServicesResponse)
-> Either String [ServiceSummary]
-> Either String ListServicesResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ( Object
x Object -> Text -> Either String (Maybe [ServiceSummary])
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"ServiceSummaryList"
Either String (Maybe [ServiceSummary])
-> [ServiceSummary] -> Either String [ServiceSummary]
forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ [ServiceSummary]
forall a. Monoid a => a
Prelude.mempty
)
)
instance Prelude.Hashable ListServices
instance Prelude.NFData ListServices
instance Core.ToHeaders ListServices where
toHeaders :: ListServices -> ResponseHeaders
toHeaders =
ResponseHeaders -> ListServices -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# (ByteString
"AppRunner.ListServices" :: Prelude.ByteString),
HeaderName
"Content-Type"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.0" ::
Prelude.ByteString
)
]
)
instance Core.ToJSON ListServices where
toJSON :: ListServices -> Value
toJSON ListServices' {Maybe Natural
Maybe Text
maxResults :: Maybe Natural
nextToken :: Maybe Text
$sel:maxResults:ListServices' :: ListServices -> Maybe Natural
$sel:nextToken:ListServices' :: ListServices -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"NextToken" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
nextToken,
(Text
"MaxResults" Text -> Natural -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Natural -> Pair) -> Maybe Natural -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Natural
maxResults
]
)
instance Core.ToPath ListServices where
toPath :: ListServices -> ByteString
toPath = ByteString -> ListServices -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery ListServices where
toQuery :: ListServices -> QueryString
toQuery = QueryString -> ListServices -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data ListServicesResponse = ListServicesResponse'
{
ListServicesResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
ListServicesResponse -> Int
httpStatus :: Prelude.Int,
ListServicesResponse -> [ServiceSummary]
serviceSummaryList :: [ServiceSummary]
}
deriving (ListServicesResponse -> ListServicesResponse -> Bool
(ListServicesResponse -> ListServicesResponse -> Bool)
-> (ListServicesResponse -> ListServicesResponse -> Bool)
-> Eq ListServicesResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListServicesResponse -> ListServicesResponse -> Bool
$c/= :: ListServicesResponse -> ListServicesResponse -> Bool
== :: ListServicesResponse -> ListServicesResponse -> Bool
$c== :: ListServicesResponse -> ListServicesResponse -> Bool
Prelude.Eq, ReadPrec [ListServicesResponse]
ReadPrec ListServicesResponse
Int -> ReadS ListServicesResponse
ReadS [ListServicesResponse]
(Int -> ReadS ListServicesResponse)
-> ReadS [ListServicesResponse]
-> ReadPrec ListServicesResponse
-> ReadPrec [ListServicesResponse]
-> Read ListServicesResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListServicesResponse]
$creadListPrec :: ReadPrec [ListServicesResponse]
readPrec :: ReadPrec ListServicesResponse
$creadPrec :: ReadPrec ListServicesResponse
readList :: ReadS [ListServicesResponse]
$creadList :: ReadS [ListServicesResponse]
readsPrec :: Int -> ReadS ListServicesResponse
$creadsPrec :: Int -> ReadS ListServicesResponse
Prelude.Read, Int -> ListServicesResponse -> ShowS
[ListServicesResponse] -> ShowS
ListServicesResponse -> String
(Int -> ListServicesResponse -> ShowS)
-> (ListServicesResponse -> String)
-> ([ListServicesResponse] -> ShowS)
-> Show ListServicesResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListServicesResponse] -> ShowS
$cshowList :: [ListServicesResponse] -> ShowS
show :: ListServicesResponse -> String
$cshow :: ListServicesResponse -> String
showsPrec :: Int -> ListServicesResponse -> ShowS
$cshowsPrec :: Int -> ListServicesResponse -> ShowS
Prelude.Show, (forall x. ListServicesResponse -> Rep ListServicesResponse x)
-> (forall x. Rep ListServicesResponse x -> ListServicesResponse)
-> Generic ListServicesResponse
forall x. Rep ListServicesResponse x -> ListServicesResponse
forall x. ListServicesResponse -> Rep ListServicesResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListServicesResponse x -> ListServicesResponse
$cfrom :: forall x. ListServicesResponse -> Rep ListServicesResponse x
Prelude.Generic)
newListServicesResponse ::
Prelude.Int ->
ListServicesResponse
newListServicesResponse :: Int -> ListServicesResponse
newListServicesResponse Int
pHttpStatus_ =
ListServicesResponse' :: Maybe Text -> Int -> [ServiceSummary] -> ListServicesResponse
ListServicesResponse'
{ $sel:nextToken:ListServicesResponse' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:ListServicesResponse' :: Int
httpStatus = Int
pHttpStatus_,
$sel:serviceSummaryList:ListServicesResponse' :: [ServiceSummary]
serviceSummaryList = [ServiceSummary]
forall a. Monoid a => a
Prelude.mempty
}
listServicesResponse_nextToken :: Lens.Lens' ListServicesResponse (Prelude.Maybe Prelude.Text)
listServicesResponse_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListServicesResponse -> f ListServicesResponse
listServicesResponse_nextToken = (ListServicesResponse -> Maybe Text)
-> (ListServicesResponse -> Maybe Text -> ListServicesResponse)
-> Lens
ListServicesResponse ListServicesResponse (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServicesResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListServicesResponse' :: ListServicesResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListServicesResponse
s@ListServicesResponse' {} Maybe Text
a -> ListServicesResponse
s {$sel:nextToken:ListServicesResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListServicesResponse)
listServicesResponse_httpStatus :: Lens.Lens' ListServicesResponse Prelude.Int
listServicesResponse_httpStatus :: (Int -> f Int) -> ListServicesResponse -> f ListServicesResponse
listServicesResponse_httpStatus = (ListServicesResponse -> Int)
-> (ListServicesResponse -> Int -> ListServicesResponse)
-> Lens ListServicesResponse ListServicesResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServicesResponse' {Int
httpStatus :: Int
$sel:httpStatus:ListServicesResponse' :: ListServicesResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: ListServicesResponse
s@ListServicesResponse' {} Int
a -> ListServicesResponse
s {$sel:httpStatus:ListServicesResponse' :: Int
httpStatus = Int
a} :: ListServicesResponse)
listServicesResponse_serviceSummaryList :: Lens.Lens' ListServicesResponse [ServiceSummary]
listServicesResponse_serviceSummaryList :: ([ServiceSummary] -> f [ServiceSummary])
-> ListServicesResponse -> f ListServicesResponse
listServicesResponse_serviceSummaryList = (ListServicesResponse -> [ServiceSummary])
-> (ListServicesResponse
-> [ServiceSummary] -> ListServicesResponse)
-> Lens
ListServicesResponse
ListServicesResponse
[ServiceSummary]
[ServiceSummary]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServicesResponse' {[ServiceSummary]
serviceSummaryList :: [ServiceSummary]
$sel:serviceSummaryList:ListServicesResponse' :: ListServicesResponse -> [ServiceSummary]
serviceSummaryList} -> [ServiceSummary]
serviceSummaryList) (\s :: ListServicesResponse
s@ListServicesResponse' {} [ServiceSummary]
a -> ListServicesResponse
s {$sel:serviceSummaryList:ListServicesResponse' :: [ServiceSummary]
serviceSummaryList = [ServiceSummary]
a} :: ListServicesResponse) (([ServiceSummary] -> f [ServiceSummary])
-> ListServicesResponse -> f ListServicesResponse)
-> (([ServiceSummary] -> f [ServiceSummary])
-> [ServiceSummary] -> f [ServiceSummary])
-> ([ServiceSummary] -> f [ServiceSummary])
-> ListServicesResponse
-> f ListServicesResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([ServiceSummary] -> f [ServiceSummary])
-> [ServiceSummary] -> f [ServiceSummary]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
instance Prelude.NFData ListServicesResponse