{-# 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.DeviceFarm.GetSuite
-- Copyright   : (c) 2013-2015 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Gets information about a suite.
--
-- /See:/ <http://docs.aws.amazon.com/devicefarm/latest/APIReference/API_GetSuite.html AWS API Reference> for GetSuite.
module Network.AWS.DeviceFarm.GetSuite
    (
    -- * Creating a Request
      getSuite
    , GetSuite
    -- * Request Lenses
    , gsArn

    -- * Destructuring the Response
    , getSuiteResponse
    , GetSuiteResponse
    -- * Response Lenses
    , gsrsSuite
    , gsrsStatus
    ) where

import           Network.AWS.DeviceFarm.Types
import           Network.AWS.DeviceFarm.Types.Product
import           Network.AWS.Prelude
import           Network.AWS.Request
import           Network.AWS.Response

-- | Represents a request to the get suite operation.
--
-- /See:/ 'getSuite' smart constructor.
newtype GetSuite = GetSuite'
    { _gsArn :: Text
    } deriving (Eq,Read,Show,Data,Typeable,Generic)

-- | Creates a value of 'GetSuite' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'gsArn'
getSuite
    :: Text -- ^ 'gsArn'
    -> GetSuite
getSuite pArn_ =
    GetSuite'
    { _gsArn = pArn_
    }

-- | The suite\'s ARN.
gsArn :: Lens' GetSuite Text
gsArn = lens _gsArn (\ s a -> s{_gsArn = a});

instance AWSRequest GetSuite where
        type Sv GetSuite = DeviceFarm
        type Rs GetSuite = GetSuiteResponse
        request = postJSON
        response
          = receiveJSON
              (\ s h x ->
                 GetSuiteResponse' <$>
                   (x .?> "suite") <*> (pure (fromEnum s)))

instance ToHeaders GetSuite where
        toHeaders
          = const
              (mconcat
                 ["X-Amz-Target" =#
                    ("DeviceFarm_20150623.GetSuite" :: ByteString),
                  "Content-Type" =#
                    ("application/x-amz-json-1.1" :: ByteString)])

instance ToJSON GetSuite where
        toJSON GetSuite'{..} = object ["arn" .= _gsArn]

instance ToPath GetSuite where
        toPath = const "/"

instance ToQuery GetSuite where
        toQuery = const mempty

-- | Represents the result of a get suite request.
--
-- /See:/ 'getSuiteResponse' smart constructor.
data GetSuiteResponse = GetSuiteResponse'
    { _gsrsSuite  :: !(Maybe Suite)
    , _gsrsStatus :: !Int
    } deriving (Eq,Read,Show,Data,Typeable,Generic)

-- | Creates a value of 'GetSuiteResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'gsrsSuite'
--
-- * 'gsrsStatus'
getSuiteResponse
    :: Int -- ^ 'gsrsStatus'
    -> GetSuiteResponse
getSuiteResponse pStatus_ =
    GetSuiteResponse'
    { _gsrsSuite = Nothing
    , _gsrsStatus = pStatus_
    }

-- | Undocumented member.
gsrsSuite :: Lens' GetSuiteResponse (Maybe Suite)
gsrsSuite = lens _gsrsSuite (\ s a -> s{_gsrsSuite = a});

-- | The response status code.
gsrsStatus :: Lens' GetSuiteResponse Int
gsrsStatus = lens _gsrsStatus (\ s a -> s{_gsrsStatus = a});