packages feed

gogol-cloudsearch-1.0.0: gogol-cloudsearch.cabal

cabal-version:      2.2
name:               gogol-cloudsearch
version:            1.0.0
synopsis:           Google Cloud Search SDK.
homepage:           https://github.com/brendanhay/gogol
bug-reports:        https://github.com/brendanhay/gogol/issues
license:            MPL-2.0
license-file:       LICENSE
author:             Brendan Hay
maintainer:
  Brendan Hay <brendan.g.hay+gogol@gmail.com>, Toni Cebrián <toni@tonicebrian.com>

copyright:          Copyright (c) 2015-2025 Brendan Hay
category:           Google
build-type:         Simple
extra-source-files:
  README.md
  src/.gitkeep

description:
  Cloud Search provides cloud-based search capabilities over Google Workspace data. The Cloud Search API allows indexing of non-Google Workspace data into Cloud Search.
  .
  /Warning:/ This is an experimental prototype/preview release which is still
  under exploratory development and not intended for public use, caveat emptor!
  .
  This library is compatible with version @v1@
  of the API.

source-repository head
  type:     git
  location: git://github.com/brendanhay/gogol.git
  subdir:   gogol-cloudsearch

flag field-selectors
  description:
    If record field selectors should be enabled. Disabling this requires GHC >=9.2 and the NoFieldSelectors extension.

  default:     False
  manual:      True

library
  default-language: GHC2021
  hs-source-dirs:   src gen
  ghc-options:
    -Wall -fwarn-incomplete-uni-patterns
    -fwarn-incomplete-record-updates -funbox-strict-fields
    -fwarn-unused-packages

  if (!flag(field-selectors) && impl(ghc >=9.2))
    default-extensions: NoFieldSelectors

  exposed-modules:
    Gogol.CloudSearch
    Gogol.CloudSearch.Debug.Datasources.Items.CheckAccess
    Gogol.CloudSearch.Debug.Datasources.Items.SearchByViewUrl
    Gogol.CloudSearch.Debug.Datasources.Items.Unmappedids.List
    Gogol.CloudSearch.Debug.Identitysources.Items.ListForunmappedidentity
    Gogol.CloudSearch.Debug.Identitysources.Unmappedids.List
    Gogol.CloudSearch.Indexing.Datasources.DeleteSchema
    Gogol.CloudSearch.Indexing.Datasources.GetSchema
    Gogol.CloudSearch.Indexing.Datasources.Items.Delete
    Gogol.CloudSearch.Indexing.Datasources.Items.DeleteQueueItems
    Gogol.CloudSearch.Indexing.Datasources.Items.Get
    Gogol.CloudSearch.Indexing.Datasources.Items.Index
    Gogol.CloudSearch.Indexing.Datasources.Items.List
    Gogol.CloudSearch.Indexing.Datasources.Items.Poll
    Gogol.CloudSearch.Indexing.Datasources.Items.Push
    Gogol.CloudSearch.Indexing.Datasources.Items.Unreserve
    Gogol.CloudSearch.Indexing.Datasources.Items.Upload
    Gogol.CloudSearch.Indexing.Datasources.UpdateSchema
    Gogol.CloudSearch.InitializeCustomer
    Gogol.CloudSearch.Media.Upload
    Gogol.CloudSearch.Operations.Get
    Gogol.CloudSearch.Operations.Lro.List
    Gogol.CloudSearch.Query.DebugSearch
    Gogol.CloudSearch.Query.RemoveActivity
    Gogol.CloudSearch.Query.Search
    Gogol.CloudSearch.Query.Sources.List
    Gogol.CloudSearch.Query.Suggest
    Gogol.CloudSearch.Settings.Datasources.Create
    Gogol.CloudSearch.Settings.Datasources.Delete
    Gogol.CloudSearch.Settings.Datasources.Get
    Gogol.CloudSearch.Settings.Datasources.List
    Gogol.CloudSearch.Settings.Datasources.Patch
    Gogol.CloudSearch.Settings.Datasources.Update
    Gogol.CloudSearch.Settings.GetCustomer
    Gogol.CloudSearch.Settings.Searchapplications.Create
    Gogol.CloudSearch.Settings.Searchapplications.Delete
    Gogol.CloudSearch.Settings.Searchapplications.Get
    Gogol.CloudSearch.Settings.Searchapplications.List
    Gogol.CloudSearch.Settings.Searchapplications.Patch
    Gogol.CloudSearch.Settings.Searchapplications.Reset
    Gogol.CloudSearch.Settings.Searchapplications.Update
    Gogol.CloudSearch.Settings.UpdateCustomer
    Gogol.CloudSearch.Stats.GetIndex
    Gogol.CloudSearch.Stats.GetQuery
    Gogol.CloudSearch.Stats.GetSearchapplication
    Gogol.CloudSearch.Stats.GetSession
    Gogol.CloudSearch.Stats.GetUser
    Gogol.CloudSearch.Stats.Index.Datasources.Get
    Gogol.CloudSearch.Stats.Query.Searchapplications.Get
    Gogol.CloudSearch.Stats.Session.Searchapplications.Get
    Gogol.CloudSearch.Stats.User.Searchapplications.Get
    Gogol.CloudSearch.Types

  other-modules:
    Gogol.CloudSearch.Internal.Product
    Gogol.CloudSearch.Internal.Sum

  build-depends:    gogol-core ^>=1.0.0