gogol-webmaster-tools-0.4.0: Google Search Console SDK.

Copyright(c) 2015-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query

Contents

Description

Retrieves a time series of the number of URL crawl errors per error category and platform.

See: Search Console API Reference for webmasters.urlcrawlerrorscounts.query.

Synopsis

REST Resource

type URLCrawlErrorscountsQueryResource = "webmasters" :> ("v3" :> ("sites" :> (Capture "siteUrl" Text :> ("urlCrawlErrorsCounts" :> ("query" :> (QueryParam "platform" URLCrawlErrorscountsQueryPlatform :> (QueryParam "category" URLCrawlErrorscountsQueryCategory :> (QueryParam "latestCountsOnly" Bool :> (QueryParam "alt" AltJSON :> Get '[JSON] URLCrawlErrorsCountsQueryResponse))))))))) Source #

A resource alias for webmasters.urlcrawlerrorscounts.query method which the URLCrawlErrorscountsQuery request conforms to.

Creating a Request

urlCrawlErrorscountsQuery Source #

Creates a value of URLCrawlErrorscountsQuery with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data URLCrawlErrorscountsQuery Source #

Retrieves a time series of the number of URL crawl errors per error category and platform.

See: urlCrawlErrorscountsQuery smart constructor.

Instances
Eq URLCrawlErrorscountsQuery Source # 
Instance details

Defined in Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query

Data URLCrawlErrorscountsQuery Source # 
Instance details

Defined in Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> URLCrawlErrorscountsQuery -> c URLCrawlErrorscountsQuery #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c URLCrawlErrorscountsQuery #

toConstr :: URLCrawlErrorscountsQuery -> Constr #

dataTypeOf :: URLCrawlErrorscountsQuery -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c URLCrawlErrorscountsQuery) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c URLCrawlErrorscountsQuery) #

gmapT :: (forall b. Data b => b -> b) -> URLCrawlErrorscountsQuery -> URLCrawlErrorscountsQuery #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> URLCrawlErrorscountsQuery -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> URLCrawlErrorscountsQuery -> r #

gmapQ :: (forall d. Data d => d -> u) -> URLCrawlErrorscountsQuery -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> URLCrawlErrorscountsQuery -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> URLCrawlErrorscountsQuery -> m URLCrawlErrorscountsQuery #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> URLCrawlErrorscountsQuery -> m URLCrawlErrorscountsQuery #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> URLCrawlErrorscountsQuery -> m URLCrawlErrorscountsQuery #

Show URLCrawlErrorscountsQuery Source # 
Instance details

Defined in Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query

Generic URLCrawlErrorscountsQuery Source # 
Instance details

Defined in Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query

Associated Types

type Rep URLCrawlErrorscountsQuery :: Type -> Type #

GoogleRequest URLCrawlErrorscountsQuery Source # 
Instance details

Defined in Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query

type Rep URLCrawlErrorscountsQuery Source # 
Instance details

Defined in Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query

type Rep URLCrawlErrorscountsQuery = D1 (MetaData "URLCrawlErrorscountsQuery" "Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query" "gogol-webmaster-tools-0.4.0-LKq04HhuGk13qpGnIbIn8X" False) (C1 (MetaCons "URLCrawlErrorscountsQuery'" PrefixI True) ((S1 (MetaSel (Just "_uceqPlatform") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe URLCrawlErrorscountsQueryPlatform)) :*: S1 (MetaSel (Just "_uceqCategory") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe URLCrawlErrorscountsQueryCategory))) :*: (S1 (MetaSel (Just "_uceqSiteURL") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_uceqLatestCountsOnly") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Bool))))
type Scopes URLCrawlErrorscountsQuery Source # 
Instance details

Defined in Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query

type Scopes URLCrawlErrorscountsQuery = "https://www.googleapis.com/auth/webmasters" ': ("https://www.googleapis.com/auth/webmasters.readonly" ': ([] :: [Symbol]))
type Rs URLCrawlErrorscountsQuery Source # 
Instance details

Defined in Network.Google.Resource.Webmasters.URLCrawlErrorscounts.Query

Request Lenses

uceqPlatform :: Lens' URLCrawlErrorscountsQuery (Maybe URLCrawlErrorscountsQueryPlatform) Source #

The user agent type (platform) that made the request. For example: web. If not specified, returns results for all platforms.

uceqCategory :: Lens' URLCrawlErrorscountsQuery (Maybe URLCrawlErrorscountsQueryCategory) Source #

The crawl error category. For example: serverError. If not specified, returns results for all categories.

uceqSiteURL :: Lens' URLCrawlErrorscountsQuery Text Source #

The site's URL, including protocol. For example: http://www.example.com/

uceqLatestCountsOnly :: Lens' URLCrawlErrorscountsQuery Bool Source #

If true, returns only the latest crawl error counts.