{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- Module : Network.AWS.StorageGateway.AddUploadBuffer -- Copyright : (c) 2013-2014 Brendan Hay -- License : This Source Code Form is subject to the terms of -- the Mozilla Public License, v. 2.0. -- A copy of the MPL can be found in the LICENSE file or -- you can obtain it at http://mozilla.org/MPL/2.0/. -- Maintainer : Brendan Hay -- Stability : experimental -- Portability : non-portable (GHC extensions) -- -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | This operation configures one or more gateway local disks as upload buffer -- for a specified gateway. This operation is supported for both the -- gateway-stored and gateway-cached volume architectures. -- -- In the request, you specify the gateway Amazon Resource Name (ARN) to which -- you want to add upload buffer, and one or more disk IDs that you want to -- configure as upload buffer. -- -- module Network.AWS.StorageGateway.AddUploadBuffer ( -- * Request AddUploadBuffer -- ** Request constructor , addUploadBuffer -- ** Request lenses , aubDiskIds , aubGatewayARN -- * Response , AddUploadBufferResponse -- ** Response constructor , addUploadBufferResponse -- ** Response lenses , aubrGatewayARN ) where import Network.AWS.Prelude import Network.AWS.Request.JSON import Network.AWS.StorageGateway.Types import qualified GHC.Exts data AddUploadBuffer = AddUploadBuffer { _aubDiskIds :: List "DiskIds" Text , _aubGatewayARN :: Text } deriving (Eq, Ord, Read, Show) -- | 'AddUploadBuffer' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'aubDiskIds' @::@ ['Text'] -- -- * 'aubGatewayARN' @::@ 'Text' -- addUploadBuffer :: Text -- ^ 'aubGatewayARN' -> AddUploadBuffer addUploadBuffer p1 = AddUploadBuffer { _aubGatewayARN = p1 , _aubDiskIds = mempty } aubDiskIds :: Lens' AddUploadBuffer [Text] aubDiskIds = lens _aubDiskIds (\s a -> s { _aubDiskIds = a }) . _List aubGatewayARN :: Lens' AddUploadBuffer Text aubGatewayARN = lens _aubGatewayARN (\s a -> s { _aubGatewayARN = a }) newtype AddUploadBufferResponse = AddUploadBufferResponse { _aubrGatewayARN :: Maybe Text } deriving (Eq, Ord, Read, Show, Monoid) -- | 'AddUploadBufferResponse' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'aubrGatewayARN' @::@ 'Maybe' 'Text' -- addUploadBufferResponse :: AddUploadBufferResponse addUploadBufferResponse = AddUploadBufferResponse { _aubrGatewayARN = Nothing } aubrGatewayARN :: Lens' AddUploadBufferResponse (Maybe Text) aubrGatewayARN = lens _aubrGatewayARN (\s a -> s { _aubrGatewayARN = a }) instance ToPath AddUploadBuffer where toPath = const "/" instance ToQuery AddUploadBuffer where toQuery = const mempty instance ToHeaders AddUploadBuffer instance ToJSON AddUploadBuffer where toJSON AddUploadBuffer{..} = object [ "GatewayARN" .= _aubGatewayARN , "DiskIds" .= _aubDiskIds ] instance AWSRequest AddUploadBuffer where type Sv AddUploadBuffer = StorageGateway type Rs AddUploadBuffer = AddUploadBufferResponse request = post "AddUploadBuffer" response = jsonResponse instance FromJSON AddUploadBufferResponse where parseJSON = withObject "AddUploadBufferResponse" $ \o -> AddUploadBufferResponse <$> o .:? "GatewayARN"