gogol-android-enterprise-0.1.1: gen/Network/Google/Resource/AndroidEnterprise/ManagedConfigurationsforUser/List.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.ManagedConfigurationsforUser.List
-- 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)
--
-- Lists all the per-user managed configurations for the specified user.
-- Only the ID is set.
--
-- /See:/ <https://developers.google.com/android/work/play/emm-api Google Play EMM API Reference> for @androidenterprise.managedconfigurationsforuser.list@.
module Network.Google.Resource.AndroidEnterprise.ManagedConfigurationsforUser.List
(
-- * REST Resource
ManagedConfigurationsforUserListResource
-- * Creating a Request
, managedConfigurationsforUserList
, ManagedConfigurationsforUserList
-- * Request Lenses
, mculEnterpriseId
, mculUserId
) where
import Network.Google.AndroidEnterprise.Types
import Network.Google.Prelude
-- | A resource alias for @androidenterprise.managedconfigurationsforuser.list@ method which the
-- 'ManagedConfigurationsforUserList' request conforms to.
type ManagedConfigurationsforUserListResource =
"androidenterprise" :>
"v1" :>
"enterprises" :>
Capture "enterpriseId" Text :>
"users" :>
Capture "userId" Text :>
"managedConfigurationsForUser" :>
QueryParam "alt" AltJSON :>
Get '[JSON] ManagedConfigurationsForUserListResponse
-- | Lists all the per-user managed configurations for the specified user.
-- Only the ID is set.
--
-- /See:/ 'managedConfigurationsforUserList' smart constructor.
data ManagedConfigurationsforUserList = ManagedConfigurationsforUserList'
{ _mculEnterpriseId :: !Text
, _mculUserId :: !Text
} deriving (Eq,Show,Data,Typeable,Generic)
-- | Creates a value of 'ManagedConfigurationsforUserList' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'mculEnterpriseId'
--
-- * 'mculUserId'
managedConfigurationsforUserList
:: Text -- ^ 'mculEnterpriseId'
-> Text -- ^ 'mculUserId'
-> ManagedConfigurationsforUserList
managedConfigurationsforUserList pMculEnterpriseId_ pMculUserId_ =
ManagedConfigurationsforUserList'
{ _mculEnterpriseId = pMculEnterpriseId_
, _mculUserId = pMculUserId_
}
-- | The ID of the enterprise.
mculEnterpriseId :: Lens' ManagedConfigurationsforUserList Text
mculEnterpriseId
= lens _mculEnterpriseId
(\ s a -> s{_mculEnterpriseId = a})
-- | The ID of the user.
mculUserId :: Lens' ManagedConfigurationsforUserList Text
mculUserId
= lens _mculUserId (\ s a -> s{_mculUserId = a})
instance GoogleRequest
ManagedConfigurationsforUserList where
type Rs ManagedConfigurationsforUserList =
ManagedConfigurationsForUserListResponse
type Scopes ManagedConfigurationsforUserList =
'["https://www.googleapis.com/auth/androidenterprise"]
requestClient ManagedConfigurationsforUserList'{..}
= go _mculEnterpriseId _mculUserId (Just AltJSON)
androidEnterpriseService
where go
= buildClient
(Proxy ::
Proxy ManagedConfigurationsforUserListResource)
mempty