amazonka-apigateway-1.6.0: gen/Network/AWS/APIGateway/GetDeployment.hs
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Network.AWS.APIGateway.GetDeployment
-- Copyright : (c) 2013-2018 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Gets information about a 'Deployment' resource.
--
--
module Network.AWS.APIGateway.GetDeployment
(
-- * Creating a Request
getDeployment
, GetDeployment
-- * Request Lenses
, gEmbed
, gRestAPIId
, gDeploymentId
-- * Destructuring the Response
, deployment
, Deployment
-- * Response Lenses
, dApiSummary
, dCreatedDate
, dId
, dDescription
) where
import Network.AWS.APIGateway.Types
import Network.AWS.APIGateway.Types.Product
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | Requests API Gateway to get information about a 'Deployment' resource.
--
--
--
-- /See:/ 'getDeployment' smart constructor.
data GetDeployment = GetDeployment'
{ _gEmbed :: !(Maybe [Text])
, _gRestAPIId :: !Text
, _gDeploymentId :: !Text
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'GetDeployment' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'gEmbed' - A query parameter to retrieve the specified embedded resources of the returned 'Deployment' resource in the response. In a REST API call, this @embed@ parameter value is a list of comma-separated strings, as in @GET /restapis/{restapi_id}/deployments/{deployment_id}?embed=var1,var2@ . The SDK and other platform-dependent libraries might use a different format for the list. Currently, this request supports only retrieval of the embedded API summary this way. Hence, the parameter value must be a single-valued list containing only the @"apisummary"@ string. For example, @GET /restapis/{restapi_id}/deployments/{deployment_id}?embed=apisummary@ .
--
-- * 'gRestAPIId' - [Required] The string identifier of the associated 'RestApi' .
--
-- * 'gDeploymentId' - [Required] The identifier of the 'Deployment' resource to get information about.
getDeployment
:: Text -- ^ 'gRestAPIId'
-> Text -- ^ 'gDeploymentId'
-> GetDeployment
getDeployment pRestAPIId_ pDeploymentId_ =
GetDeployment'
{ _gEmbed = Nothing
, _gRestAPIId = pRestAPIId_
, _gDeploymentId = pDeploymentId_
}
-- | A query parameter to retrieve the specified embedded resources of the returned 'Deployment' resource in the response. In a REST API call, this @embed@ parameter value is a list of comma-separated strings, as in @GET /restapis/{restapi_id}/deployments/{deployment_id}?embed=var1,var2@ . The SDK and other platform-dependent libraries might use a different format for the list. Currently, this request supports only retrieval of the embedded API summary this way. Hence, the parameter value must be a single-valued list containing only the @"apisummary"@ string. For example, @GET /restapis/{restapi_id}/deployments/{deployment_id}?embed=apisummary@ .
gEmbed :: Lens' GetDeployment [Text]
gEmbed = lens _gEmbed (\ s a -> s{_gEmbed = a}) . _Default . _Coerce
-- | [Required] The string identifier of the associated 'RestApi' .
gRestAPIId :: Lens' GetDeployment Text
gRestAPIId = lens _gRestAPIId (\ s a -> s{_gRestAPIId = a})
-- | [Required] The identifier of the 'Deployment' resource to get information about.
gDeploymentId :: Lens' GetDeployment Text
gDeploymentId = lens _gDeploymentId (\ s a -> s{_gDeploymentId = a})
instance AWSRequest GetDeployment where
type Rs GetDeployment = Deployment
request = get apiGateway
response = receiveJSON (\ s h x -> eitherParseJSON x)
instance Hashable GetDeployment where
instance NFData GetDeployment where
instance ToHeaders GetDeployment where
toHeaders
= const
(mconcat
["Accept" =# ("application/json" :: ByteString)])
instance ToPath GetDeployment where
toPath GetDeployment'{..}
= mconcat
["/restapis/", toBS _gRestAPIId, "/deployments/",
toBS _gDeploymentId]
instance ToQuery GetDeployment where
toQuery GetDeployment'{..}
= mconcat
["embed" =:
toQuery (toQueryList "member" <$> _gEmbed)]