{-# 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.GuardDuty.UpdateDetector
-- 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)
--
-- Updates an Amazon GuardDuty detector specified by the detectorId.
module Network.AWS.GuardDuty.UpdateDetector
    (
    -- * Creating a Request
      updateDetector
    , UpdateDetector
    -- * Request Lenses
    , udEnable
    , udDetectorId

    -- * Destructuring the Response
    , updateDetectorResponse
    , UpdateDetectorResponse
    -- * Response Lenses
    , udrsResponseStatus
    ) where

import Network.AWS.GuardDuty.Types
import Network.AWS.GuardDuty.Types.Product
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response

-- | UpdateDetector request body.
--
-- /See:/ 'updateDetector' smart constructor.
data UpdateDetector = UpdateDetector'
  { _udEnable     :: !(Maybe Bool)
  , _udDetectorId :: !Text
  } deriving (Eq, Read, Show, Data, Typeable, Generic)


-- | Creates a value of 'UpdateDetector' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'udEnable' - Updated boolean value for the detector that specifies whether the detector is enabled.
--
-- * 'udDetectorId' - The unique ID of the detector that you want to update.
updateDetector
    :: Text -- ^ 'udDetectorId'
    -> UpdateDetector
updateDetector pDetectorId_ =
  UpdateDetector' {_udEnable = Nothing, _udDetectorId = pDetectorId_}


-- | Updated boolean value for the detector that specifies whether the detector is enabled.
udEnable :: Lens' UpdateDetector (Maybe Bool)
udEnable = lens _udEnable (\ s a -> s{_udEnable = a})

-- | The unique ID of the detector that you want to update.
udDetectorId :: Lens' UpdateDetector Text
udDetectorId = lens _udDetectorId (\ s a -> s{_udDetectorId = a})

instance AWSRequest UpdateDetector where
        type Rs UpdateDetector = UpdateDetectorResponse
        request = postJSON guardDuty
        response
          = receiveEmpty
              (\ s h x ->
                 UpdateDetectorResponse' <$> (pure (fromEnum s)))

instance Hashable UpdateDetector where

instance NFData UpdateDetector where

instance ToHeaders UpdateDetector where
        toHeaders
          = const
              (mconcat
                 ["Content-Type" =#
                    ("application/x-amz-json-1.1" :: ByteString)])

instance ToJSON UpdateDetector where
        toJSON UpdateDetector'{..}
          = object (catMaybes [("enable" .=) <$> _udEnable])

instance ToPath UpdateDetector where
        toPath UpdateDetector'{..}
          = mconcat ["/detector/", toBS _udDetectorId]

instance ToQuery UpdateDetector where
        toQuery = const mempty

-- | /See:/ 'updateDetectorResponse' smart constructor.
newtype UpdateDetectorResponse = UpdateDetectorResponse'
  { _udrsResponseStatus :: Int
  } deriving (Eq, Read, Show, Data, Typeable, Generic)


-- | Creates a value of 'UpdateDetectorResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'udrsResponseStatus' - -- | The response status code.
updateDetectorResponse
    :: Int -- ^ 'udrsResponseStatus'
    -> UpdateDetectorResponse
updateDetectorResponse pResponseStatus_ =
  UpdateDetectorResponse' {_udrsResponseStatus = pResponseStatus_}


-- | -- | The response status code.
udrsResponseStatus :: Lens' UpdateDetectorResponse Int
udrsResponseStatus = lens _udrsResponseStatus (\ s a -> s{_udrsResponseStatus = a})

instance NFData UpdateDetectorResponse where