{-# 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.Analytics.Metadata.Columns.List -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Lists all columns for a report type -- -- /See:/ for @analytics.metadata.columns.list@. module Network.Google.Resource.Analytics.Metadata.Columns.List ( -- * REST Resource MetadataColumnsListResource -- * Creating a Request , metadataColumnsList , MetadataColumnsList -- * Request Lenses , mclReportType ) where import Network.Google.Analytics.Types import Network.Google.Prelude -- | A resource alias for @analytics.metadata.columns.list@ method which the -- 'MetadataColumnsList' request conforms to. type MetadataColumnsListResource = "analytics" :> "v3" :> "metadata" :> Capture "reportType" Text :> "columns" :> QueryParam "alt" AltJSON :> Get '[JSON] Columns -- | Lists all columns for a report type -- -- /See:/ 'metadataColumnsList' smart constructor. newtype MetadataColumnsList = MetadataColumnsList' { _mclReportType :: Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'MetadataColumnsList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'mclReportType' metadataColumnsList :: Text -- ^ 'mclReportType' -> MetadataColumnsList metadataColumnsList pMclReportType_ = MetadataColumnsList' { _mclReportType = pMclReportType_ } -- | Report type. Allowed Values: \'ga\'. Where \'ga\' corresponds to the -- Core Reporting API mclReportType :: Lens' MetadataColumnsList Text mclReportType = lens _mclReportType (\ s a -> s{_mclReportType = a}) instance GoogleRequest MetadataColumnsList where type Rs MetadataColumnsList = Columns type Scopes MetadataColumnsList = '["https://www.googleapis.com/auth/analytics", "https://www.googleapis.com/auth/analytics.edit", "https://www.googleapis.com/auth/analytics.readonly"] requestClient MetadataColumnsList'{..} = go _mclReportType (Just AltJSON) analyticsService where go = buildClient (Proxy :: Proxy MetadataColumnsListResource) mempty