{-# 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.Products.GetPermissions -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Retrieves the Android app permissions required by this app. -- -- /See:/ for @androidenterprise.products.getPermissions@. module Network.Google.Resource.AndroidEnterprise.Products.GetPermissions ( -- * REST Resource ProductsGetPermissionsResource -- * Creating a Request , productsGetPermissions , ProductsGetPermissions -- * Request Lenses , pgpEnterpriseId , pgpProductId ) where import Network.Google.AndroidEnterprise.Types import Network.Google.Prelude -- | A resource alias for @androidenterprise.products.getPermissions@ method which the -- 'ProductsGetPermissions' request conforms to. type ProductsGetPermissionsResource = "androidenterprise" :> "v1" :> "enterprises" :> Capture "enterpriseId" Text :> "products" :> Capture "productId" Text :> "permissions" :> QueryParam "alt" AltJSON :> Get '[JSON] ProductPermissions -- | Retrieves the Android app permissions required by this app. -- -- /See:/ 'productsGetPermissions' smart constructor. data ProductsGetPermissions = ProductsGetPermissions' { _pgpEnterpriseId :: !Text , _pgpProductId :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ProductsGetPermissions' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'pgpEnterpriseId' -- -- * 'pgpProductId' productsGetPermissions :: Text -- ^ 'pgpEnterpriseId' -> Text -- ^ 'pgpProductId' -> ProductsGetPermissions productsGetPermissions pPgpEnterpriseId_ pPgpProductId_ = ProductsGetPermissions' { _pgpEnterpriseId = pPgpEnterpriseId_ , _pgpProductId = pPgpProductId_ } -- | The ID of the enterprise. pgpEnterpriseId :: Lens' ProductsGetPermissions Text pgpEnterpriseId = lens _pgpEnterpriseId (\ s a -> s{_pgpEnterpriseId = a}) -- | The ID of the product. pgpProductId :: Lens' ProductsGetPermissions Text pgpProductId = lens _pgpProductId (\ s a -> s{_pgpProductId = a}) instance GoogleRequest ProductsGetPermissions where type Rs ProductsGetPermissions = ProductPermissions type Scopes ProductsGetPermissions = '["https://www.googleapis.com/auth/androidenterprise"] requestClient ProductsGetPermissions'{..} = go _pgpEnterpriseId _pgpProductId (Just AltJSON) androidEnterpriseService where go = buildClient (Proxy :: Proxy ProductsGetPermissionsResource) mempty