{-# 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.Webmasters.Sites.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 the user\'s Search Console sites. -- -- /See:/ for @webmasters.sites.list@. module Network.Google.Resource.Webmasters.Sites.List ( -- * REST Resource SitesListResource -- * Creating a Request , sitesList , SitesList ) where import Network.Google.Prelude import Network.Google.WebmasterTools.Types -- | A resource alias for @webmasters.sites.list@ method which the -- 'SitesList' request conforms to. type SitesListResource = "webmasters" :> "v3" :> "sites" :> QueryParam "alt" AltJSON :> Get '[JSON] SitesListResponse -- | Lists the user\'s Search Console sites. -- -- /See:/ 'sitesList' smart constructor. data SitesList = SitesList' deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'SitesList' with the minimum fields required to make a request. -- sitesList :: SitesList sitesList = SitesList' instance GoogleRequest SitesList where type Rs SitesList = SitesListResponse type Scopes SitesList = '["https://www.googleapis.com/auth/webmasters", "https://www.googleapis.com/auth/webmasters.readonly"] requestClient SitesList'{} = go (Just AltJSON) webmasterToolsService where go = buildClient (Proxy :: Proxy SitesListResource) mempty