gogol-android-enterprise-0.1.1: gen/Network/Google/Resource/AndroidEnterprise/Enterprises/SetStoreLayout.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# OPTIONS_GHC -fno-warn-duplicate-exports #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
-- |
-- Module : Network.Google.Resource.AndroidEnterprise.Enterprises.SetStoreLayout
-- Copyright : (c) 2015-2016 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)
--
-- Sets the store layout for the enterprise.
--
-- /See:/ <https://developers.google.com/android/work/play/emm-api Google Play EMM API Reference> for @androidenterprise.enterprises.setStoreLayout@.
module Network.Google.Resource.AndroidEnterprise.Enterprises.SetStoreLayout
(
-- * REST Resource
EnterprisesSetStoreLayoutResource
-- * Creating a Request
, enterprisesSetStoreLayout
, EnterprisesSetStoreLayout
-- * Request Lenses
, esslEnterpriseId
, esslPayload
) where
import Network.Google.AndroidEnterprise.Types
import Network.Google.Prelude
-- | A resource alias for @androidenterprise.enterprises.setStoreLayout@ method which the
-- 'EnterprisesSetStoreLayout' request conforms to.
type EnterprisesSetStoreLayoutResource =
"androidenterprise" :>
"v1" :>
"enterprises" :>
Capture "enterpriseId" Text :>
"storeLayout" :>
QueryParam "alt" AltJSON :>
ReqBody '[JSON] StoreLayout :>
Put '[JSON] StoreLayout
-- | Sets the store layout for the enterprise.
--
-- /See:/ 'enterprisesSetStoreLayout' smart constructor.
data EnterprisesSetStoreLayout = EnterprisesSetStoreLayout'
{ _esslEnterpriseId :: !Text
, _esslPayload :: !StoreLayout
} deriving (Eq,Show,Data,Typeable,Generic)
-- | Creates a value of 'EnterprisesSetStoreLayout' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'esslEnterpriseId'
--
-- * 'esslPayload'
enterprisesSetStoreLayout
:: Text -- ^ 'esslEnterpriseId'
-> StoreLayout -- ^ 'esslPayload'
-> EnterprisesSetStoreLayout
enterprisesSetStoreLayout pEsslEnterpriseId_ pEsslPayload_ =
EnterprisesSetStoreLayout'
{ _esslEnterpriseId = pEsslEnterpriseId_
, _esslPayload = pEsslPayload_
}
-- | The ID of the enterprise.
esslEnterpriseId :: Lens' EnterprisesSetStoreLayout Text
esslEnterpriseId
= lens _esslEnterpriseId
(\ s a -> s{_esslEnterpriseId = a})
-- | Multipart request metadata.
esslPayload :: Lens' EnterprisesSetStoreLayout StoreLayout
esslPayload
= lens _esslPayload (\ s a -> s{_esslPayload = a})
instance GoogleRequest EnterprisesSetStoreLayout
where
type Rs EnterprisesSetStoreLayout = StoreLayout
type Scopes EnterprisesSetStoreLayout =
'["https://www.googleapis.com/auth/androidenterprise"]
requestClient EnterprisesSetStoreLayout'{..}
= go _esslEnterpriseId (Just AltJSON) _esslPayload
androidEnterpriseService
where go
= buildClient
(Proxy :: Proxy EnterprisesSetStoreLayoutResource)
mempty