amazonka-ssm-1.6.0: gen/Network/AWS/SSM/RegisterPatchBaselineForPatchGroup.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.SSM.RegisterPatchBaselineForPatchGroup
-- 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)
--
-- Registers a patch baseline for a patch group.
--
--
module Network.AWS.SSM.RegisterPatchBaselineForPatchGroup
(
-- * Creating a Request
registerPatchBaselineForPatchGroup
, RegisterPatchBaselineForPatchGroup
-- * Request Lenses
, rpbfpgBaselineId
, rpbfpgPatchGroup
-- * Destructuring the Response
, registerPatchBaselineForPatchGroupResponse
, RegisterPatchBaselineForPatchGroupResponse
-- * Response Lenses
, rpbfpgrsBaselineId
, rpbfpgrsPatchGroup
, rpbfpgrsResponseStatus
) where
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
import Network.AWS.SSM.Types
import Network.AWS.SSM.Types.Product
-- | /See:/ 'registerPatchBaselineForPatchGroup' smart constructor.
data RegisterPatchBaselineForPatchGroup = RegisterPatchBaselineForPatchGroup'
{ _rpbfpgBaselineId :: !Text
, _rpbfpgPatchGroup :: !Text
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'RegisterPatchBaselineForPatchGroup' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'rpbfpgBaselineId' - The ID of the patch baseline to register the patch group with.
--
-- * 'rpbfpgPatchGroup' - The name of the patch group that should be registered with the patch baseline.
registerPatchBaselineForPatchGroup
:: Text -- ^ 'rpbfpgBaselineId'
-> Text -- ^ 'rpbfpgPatchGroup'
-> RegisterPatchBaselineForPatchGroup
registerPatchBaselineForPatchGroup pBaselineId_ pPatchGroup_ =
RegisterPatchBaselineForPatchGroup'
{_rpbfpgBaselineId = pBaselineId_, _rpbfpgPatchGroup = pPatchGroup_}
-- | The ID of the patch baseline to register the patch group with.
rpbfpgBaselineId :: Lens' RegisterPatchBaselineForPatchGroup Text
rpbfpgBaselineId = lens _rpbfpgBaselineId (\ s a -> s{_rpbfpgBaselineId = a})
-- | The name of the patch group that should be registered with the patch baseline.
rpbfpgPatchGroup :: Lens' RegisterPatchBaselineForPatchGroup Text
rpbfpgPatchGroup = lens _rpbfpgPatchGroup (\ s a -> s{_rpbfpgPatchGroup = a})
instance AWSRequest
RegisterPatchBaselineForPatchGroup
where
type Rs RegisterPatchBaselineForPatchGroup =
RegisterPatchBaselineForPatchGroupResponse
request = postJSON ssm
response
= receiveJSON
(\ s h x ->
RegisterPatchBaselineForPatchGroupResponse' <$>
(x .?> "BaselineId") <*> (x .?> "PatchGroup") <*>
(pure (fromEnum s)))
instance Hashable RegisterPatchBaselineForPatchGroup
where
instance NFData RegisterPatchBaselineForPatchGroup
where
instance ToHeaders RegisterPatchBaselineForPatchGroup
where
toHeaders
= const
(mconcat
["X-Amz-Target" =#
("AmazonSSM.RegisterPatchBaselineForPatchGroup" ::
ByteString),
"Content-Type" =#
("application/x-amz-json-1.1" :: ByteString)])
instance ToJSON RegisterPatchBaselineForPatchGroup
where
toJSON RegisterPatchBaselineForPatchGroup'{..}
= object
(catMaybes
[Just ("BaselineId" .= _rpbfpgBaselineId),
Just ("PatchGroup" .= _rpbfpgPatchGroup)])
instance ToPath RegisterPatchBaselineForPatchGroup
where
toPath = const "/"
instance ToQuery RegisterPatchBaselineForPatchGroup
where
toQuery = const mempty
-- | /See:/ 'registerPatchBaselineForPatchGroupResponse' smart constructor.
data RegisterPatchBaselineForPatchGroupResponse = RegisterPatchBaselineForPatchGroupResponse'
{ _rpbfpgrsBaselineId :: !(Maybe Text)
, _rpbfpgrsPatchGroup :: !(Maybe Text)
, _rpbfpgrsResponseStatus :: !Int
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'RegisterPatchBaselineForPatchGroupResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'rpbfpgrsBaselineId' - The ID of the patch baseline the patch group was registered with.
--
-- * 'rpbfpgrsPatchGroup' - The name of the patch group registered with the patch baseline.
--
-- * 'rpbfpgrsResponseStatus' - -- | The response status code.
registerPatchBaselineForPatchGroupResponse
:: Int -- ^ 'rpbfpgrsResponseStatus'
-> RegisterPatchBaselineForPatchGroupResponse
registerPatchBaselineForPatchGroupResponse pResponseStatus_ =
RegisterPatchBaselineForPatchGroupResponse'
{ _rpbfpgrsBaselineId = Nothing
, _rpbfpgrsPatchGroup = Nothing
, _rpbfpgrsResponseStatus = pResponseStatus_
}
-- | The ID of the patch baseline the patch group was registered with.
rpbfpgrsBaselineId :: Lens' RegisterPatchBaselineForPatchGroupResponse (Maybe Text)
rpbfpgrsBaselineId = lens _rpbfpgrsBaselineId (\ s a -> s{_rpbfpgrsBaselineId = a})
-- | The name of the patch group registered with the patch baseline.
rpbfpgrsPatchGroup :: Lens' RegisterPatchBaselineForPatchGroupResponse (Maybe Text)
rpbfpgrsPatchGroup = lens _rpbfpgrsPatchGroup (\ s a -> s{_rpbfpgrsPatchGroup = a})
-- | -- | The response status code.
rpbfpgrsResponseStatus :: Lens' RegisterPatchBaselineForPatchGroupResponse Int
rpbfpgrsResponseStatus = lens _rpbfpgrsResponseStatus (\ s a -> s{_rpbfpgrsResponseStatus = a})
instance NFData
RegisterPatchBaselineForPatchGroupResponse
where