{-# 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.GetDocumentationVersion -- Copyright : (c) 2013-2018 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Undocumented operation. module Network.AWS.APIGateway.GetDocumentationVersion ( -- * Creating a Request getDocumentationVersion , GetDocumentationVersion -- * Request Lenses , gdvdRestAPIId , gdvdDocumentationVersion -- * Destructuring the Response , documentationVersion , DocumentationVersion -- * Response Lenses , dvCreatedDate , dvVersion , dvDescription ) 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 -- | Gets a documentation snapshot of an API. -- -- -- -- /See:/ 'getDocumentationVersion' smart constructor. data GetDocumentationVersion = GetDocumentationVersion' { _gdvdRestAPIId :: !Text , _gdvdDocumentationVersion :: !Text } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'GetDocumentationVersion' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'gdvdRestAPIId' - [Required] The string identifier of the associated 'RestApi' . -- -- * 'gdvdDocumentationVersion' - [Required] The version identifier of the to-be-retrieved documentation snapshot. getDocumentationVersion :: Text -- ^ 'gdvdRestAPIId' -> Text -- ^ 'gdvdDocumentationVersion' -> GetDocumentationVersion getDocumentationVersion pRestAPIId_ pDocumentationVersion_ = GetDocumentationVersion' { _gdvdRestAPIId = pRestAPIId_ , _gdvdDocumentationVersion = pDocumentationVersion_ } -- | [Required] The string identifier of the associated 'RestApi' . gdvdRestAPIId :: Lens' GetDocumentationVersion Text gdvdRestAPIId = lens _gdvdRestAPIId (\ s a -> s{_gdvdRestAPIId = a}) -- | [Required] The version identifier of the to-be-retrieved documentation snapshot. gdvdDocumentationVersion :: Lens' GetDocumentationVersion Text gdvdDocumentationVersion = lens _gdvdDocumentationVersion (\ s a -> s{_gdvdDocumentationVersion = a}) instance AWSRequest GetDocumentationVersion where type Rs GetDocumentationVersion = DocumentationVersion request = get apiGateway response = receiveJSON (\ s h x -> eitherParseJSON x) instance Hashable GetDocumentationVersion where instance NFData GetDocumentationVersion where instance ToHeaders GetDocumentationVersion where toHeaders = const (mconcat ["Accept" =# ("application/json" :: ByteString)]) instance ToPath GetDocumentationVersion where toPath GetDocumentationVersion'{..} = mconcat ["/restapis/", toBS _gdvdRestAPIId, "/documentation/versions/", toBS _gdvdDocumentationVersion] instance ToQuery GetDocumentationVersion where toQuery = const mempty