{-# 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.Update -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Adds or updates the managed configuration settings for an app for the -- specified user. If you support the Managed configurations iframe, you -- can apply managed configurations to a user by specifying an mcmId and -- its associated configuration variables (if any) in the request. -- Alternatively, all EMMs can apply managed configurations by passing a -- list of managed properties. -- -- /See:/ for @androidenterprise.managedconfigurationsforuser.update@. module Network.Google.Resource.AndroidEnterprise.ManagedConfigurationsforUser.Update ( -- * REST Resource ManagedConfigurationsforUserUpdateResource -- * Creating a Request , managedConfigurationsforUserUpdate , ManagedConfigurationsforUserUpdate -- * Request Lenses , mcuuEnterpriseId , mcuuPayload , mcuuUserId , mcuuManagedConfigurationForUserId ) where import Network.Google.AndroidEnterprise.Types import Network.Google.Prelude -- | A resource alias for @androidenterprise.managedconfigurationsforuser.update@ method which the -- 'ManagedConfigurationsforUserUpdate' request conforms to. type ManagedConfigurationsforUserUpdateResource = "androidenterprise" :> "v1" :> "enterprises" :> Capture "enterpriseId" Text :> "users" :> Capture "userId" Text :> "managedConfigurationsForUser" :> Capture "managedConfigurationForUserId" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] ManagedConfiguration :> Put '[JSON] ManagedConfiguration -- | Adds or updates the managed configuration settings for an app for the -- specified user. If you support the Managed configurations iframe, you -- can apply managed configurations to a user by specifying an mcmId and -- its associated configuration variables (if any) in the request. -- Alternatively, all EMMs can apply managed configurations by passing a -- list of managed properties. -- -- /See:/ 'managedConfigurationsforUserUpdate' smart constructor. data ManagedConfigurationsforUserUpdate = ManagedConfigurationsforUserUpdate' { _mcuuEnterpriseId :: !Text , _mcuuPayload :: !ManagedConfiguration , _mcuuUserId :: !Text , _mcuuManagedConfigurationForUserId :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ManagedConfigurationsforUserUpdate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'mcuuEnterpriseId' -- -- * 'mcuuPayload' -- -- * 'mcuuUserId' -- -- * 'mcuuManagedConfigurationForUserId' managedConfigurationsforUserUpdate :: Text -- ^ 'mcuuEnterpriseId' -> ManagedConfiguration -- ^ 'mcuuPayload' -> Text -- ^ 'mcuuUserId' -> Text -- ^ 'mcuuManagedConfigurationForUserId' -> ManagedConfigurationsforUserUpdate managedConfigurationsforUserUpdate pMcuuEnterpriseId_ pMcuuPayload_ pMcuuUserId_ pMcuuManagedConfigurationForUserId_ = ManagedConfigurationsforUserUpdate' { _mcuuEnterpriseId = pMcuuEnterpriseId_ , _mcuuPayload = pMcuuPayload_ , _mcuuUserId = pMcuuUserId_ , _mcuuManagedConfigurationForUserId = pMcuuManagedConfigurationForUserId_ } -- | The ID of the enterprise. mcuuEnterpriseId :: Lens' ManagedConfigurationsforUserUpdate Text mcuuEnterpriseId = lens _mcuuEnterpriseId (\ s a -> s{_mcuuEnterpriseId = a}) -- | Multipart request metadata. mcuuPayload :: Lens' ManagedConfigurationsforUserUpdate ManagedConfiguration mcuuPayload = lens _mcuuPayload (\ s a -> s{_mcuuPayload = a}) -- | The ID of the user. mcuuUserId :: Lens' ManagedConfigurationsforUserUpdate Text mcuuUserId = lens _mcuuUserId (\ s a -> s{_mcuuUserId = a}) -- | The ID of the managed configuration (a product ID), e.g. -- \"app:com.google.android.gm\". mcuuManagedConfigurationForUserId :: Lens' ManagedConfigurationsforUserUpdate Text mcuuManagedConfigurationForUserId = lens _mcuuManagedConfigurationForUserId (\ s a -> s{_mcuuManagedConfigurationForUserId = a}) instance GoogleRequest ManagedConfigurationsforUserUpdate where type Rs ManagedConfigurationsforUserUpdate = ManagedConfiguration type Scopes ManagedConfigurationsforUserUpdate = '["https://www.googleapis.com/auth/androidenterprise"] requestClient ManagedConfigurationsforUserUpdate'{..} = go _mcuuEnterpriseId _mcuuUserId _mcuuManagedConfigurationForUserId (Just AltJSON) _mcuuPayload androidEnterpriseService where go = buildClient (Proxy :: Proxy ManagedConfigurationsforUserUpdateResource) mempty