{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE ImportQualifiedPost #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-duplicate-exports #-}
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- |
-- Module      : Gogol.Vision.Projects.Images.AsyncBatchAnnotate
-- Copyright   : (c) 2015-2025 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+gogol@gmail.com>
--               Toni Cebrián <toni@tonicebrian.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Run asynchronous image detection and annotation for a list of images. Progress and results can be retrieved through the @google.longrunning.Operations@ interface. @Operation.metadata@ contains @OperationMetadata@ (metadata). @Operation.response@ contains @AsyncBatchAnnotateImagesResponse@ (results). This service will write image annotation outputs to json files in customer GCS bucket, each json file containing BatchAnnotateImagesResponse proto.
--
-- /See:/ <https://cloud.google.com/vision/ Cloud Vision API Reference> for @vision.projects.images.asyncBatchAnnotate@.
module Gogol.Vision.Projects.Images.AsyncBatchAnnotate
  ( -- * Resource
    VisionProjectsImagesAsyncBatchAnnotateResource,

    -- ** Constructing a Request
    VisionProjectsImagesAsyncBatchAnnotate (..),
    newVisionProjectsImagesAsyncBatchAnnotate,
  )
where

import Gogol.Prelude qualified as Core
import Gogol.Vision.Types

-- | A resource alias for @vision.projects.images.asyncBatchAnnotate@ method which the
-- 'VisionProjectsImagesAsyncBatchAnnotate' request conforms to.
type VisionProjectsImagesAsyncBatchAnnotateResource =
  "v1p2beta1"
    Core.:> Core.Capture "parent" Core.Text
    Core.:> "images:asyncBatchAnnotate"
    Core.:> Core.QueryParam "$.xgafv" Xgafv
    Core.:> Core.QueryParam "access_token" Core.Text
    Core.:> Core.QueryParam "callback" Core.Text
    Core.:> Core.QueryParam "uploadType" Core.Text
    Core.:> Core.QueryParam "upload_protocol" Core.Text
    Core.:> Core.QueryParam "alt" Core.AltJSON
    Core.:> Core.ReqBody
              '[Core.JSON]
              GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
    Core.:> Core.Post '[Core.JSON] Operation

-- | Run asynchronous image detection and annotation for a list of images. Progress and results can be retrieved through the @google.longrunning.Operations@ interface. @Operation.metadata@ contains @OperationMetadata@ (metadata). @Operation.response@ contains @AsyncBatchAnnotateImagesResponse@ (results). This service will write image annotation outputs to json files in customer GCS bucket, each json file containing BatchAnnotateImagesResponse proto.
--
-- /See:/ 'newVisionProjectsImagesAsyncBatchAnnotate' smart constructor.
data VisionProjectsImagesAsyncBatchAnnotate = VisionProjectsImagesAsyncBatchAnnotate
  { -- | V1 error format.
    VisionProjectsImagesAsyncBatchAnnotate -> Maybe Xgafv
xgafv :: (Core.Maybe Xgafv),
    -- | OAuth access token.
    VisionProjectsImagesAsyncBatchAnnotate -> Maybe Text
accessToken :: (Core.Maybe Core.Text),
    -- | JSONP
    VisionProjectsImagesAsyncBatchAnnotate -> Maybe Text
callback :: (Core.Maybe Core.Text),
    -- | Optional. Target project and location to make a call. Format: @projects\/{project-id}\/locations\/{location-id}@. If no parent is specified, a region will be chosen automatically. Supported location-ids: @us@: USA country only, @asia@: East asia areas, like Japan, Taiwan, @eu@: The European Union. Example: @projects\/project-A\/locations\/eu@.
    VisionProjectsImagesAsyncBatchAnnotate -> Text
parent :: Core.Text,
    -- | Multipart request metadata.
    VisionProjectsImagesAsyncBatchAnnotate
-> GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
payload :: GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest,
    -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\").
    VisionProjectsImagesAsyncBatchAnnotate -> Maybe Text
uploadType :: (Core.Maybe Core.Text),
    -- | Upload protocol for media (e.g. \"raw\", \"multipart\").
    VisionProjectsImagesAsyncBatchAnnotate -> Maybe Text
uploadProtocol :: (Core.Maybe Core.Text)
  }
  deriving (VisionProjectsImagesAsyncBatchAnnotate
-> VisionProjectsImagesAsyncBatchAnnotate -> Bool
(VisionProjectsImagesAsyncBatchAnnotate
 -> VisionProjectsImagesAsyncBatchAnnotate -> Bool)
-> (VisionProjectsImagesAsyncBatchAnnotate
    -> VisionProjectsImagesAsyncBatchAnnotate -> Bool)
-> Eq VisionProjectsImagesAsyncBatchAnnotate
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: VisionProjectsImagesAsyncBatchAnnotate
-> VisionProjectsImagesAsyncBatchAnnotate -> Bool
== :: VisionProjectsImagesAsyncBatchAnnotate
-> VisionProjectsImagesAsyncBatchAnnotate -> Bool
$c/= :: VisionProjectsImagesAsyncBatchAnnotate
-> VisionProjectsImagesAsyncBatchAnnotate -> Bool
/= :: VisionProjectsImagesAsyncBatchAnnotate
-> VisionProjectsImagesAsyncBatchAnnotate -> Bool
Core.Eq, Int -> VisionProjectsImagesAsyncBatchAnnotate -> ShowS
[VisionProjectsImagesAsyncBatchAnnotate] -> ShowS
VisionProjectsImagesAsyncBatchAnnotate -> String
(Int -> VisionProjectsImagesAsyncBatchAnnotate -> ShowS)
-> (VisionProjectsImagesAsyncBatchAnnotate -> String)
-> ([VisionProjectsImagesAsyncBatchAnnotate] -> ShowS)
-> Show VisionProjectsImagesAsyncBatchAnnotate
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> VisionProjectsImagesAsyncBatchAnnotate -> ShowS
showsPrec :: Int -> VisionProjectsImagesAsyncBatchAnnotate -> ShowS
$cshow :: VisionProjectsImagesAsyncBatchAnnotate -> String
show :: VisionProjectsImagesAsyncBatchAnnotate -> String
$cshowList :: [VisionProjectsImagesAsyncBatchAnnotate] -> ShowS
showList :: [VisionProjectsImagesAsyncBatchAnnotate] -> ShowS
Core.Show, (forall x.
 VisionProjectsImagesAsyncBatchAnnotate
 -> Rep VisionProjectsImagesAsyncBatchAnnotate x)
-> (forall x.
    Rep VisionProjectsImagesAsyncBatchAnnotate x
    -> VisionProjectsImagesAsyncBatchAnnotate)
-> Generic VisionProjectsImagesAsyncBatchAnnotate
forall x.
Rep VisionProjectsImagesAsyncBatchAnnotate x
-> VisionProjectsImagesAsyncBatchAnnotate
forall x.
VisionProjectsImagesAsyncBatchAnnotate
-> Rep VisionProjectsImagesAsyncBatchAnnotate x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cfrom :: forall x.
VisionProjectsImagesAsyncBatchAnnotate
-> Rep VisionProjectsImagesAsyncBatchAnnotate x
from :: forall x.
VisionProjectsImagesAsyncBatchAnnotate
-> Rep VisionProjectsImagesAsyncBatchAnnotate x
$cto :: forall x.
Rep VisionProjectsImagesAsyncBatchAnnotate x
-> VisionProjectsImagesAsyncBatchAnnotate
to :: forall x.
Rep VisionProjectsImagesAsyncBatchAnnotate x
-> VisionProjectsImagesAsyncBatchAnnotate
Core.Generic)

-- | Creates a value of 'VisionProjectsImagesAsyncBatchAnnotate' with the minimum fields required to make a request.
newVisionProjectsImagesAsyncBatchAnnotate ::
  -- |  Optional. Target project and location to make a call. Format: @projects\/{project-id}\/locations\/{location-id}@. If no parent is specified, a region will be chosen automatically. Supported location-ids: @us@: USA country only, @asia@: East asia areas, like Japan, Taiwan, @eu@: The European Union. Example: @projects\/project-A\/locations\/eu@. See 'parent'.
  Core.Text ->
  -- |  Multipart request metadata. See 'payload'.
  GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest ->
  VisionProjectsImagesAsyncBatchAnnotate
newVisionProjectsImagesAsyncBatchAnnotate :: Text
-> GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
-> VisionProjectsImagesAsyncBatchAnnotate
newVisionProjectsImagesAsyncBatchAnnotate Text
parent GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
payload =
  VisionProjectsImagesAsyncBatchAnnotate
    { xgafv :: Maybe Xgafv
xgafv = Maybe Xgafv
forall a. Maybe a
Core.Nothing,
      accessToken :: Maybe Text
accessToken = Maybe Text
forall a. Maybe a
Core.Nothing,
      callback :: Maybe Text
callback = Maybe Text
forall a. Maybe a
Core.Nothing,
      parent :: Text
parent = Text
parent,
      payload :: GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
payload = GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
payload,
      uploadType :: Maybe Text
uploadType = Maybe Text
forall a. Maybe a
Core.Nothing,
      uploadProtocol :: Maybe Text
uploadProtocol = Maybe Text
forall a. Maybe a
Core.Nothing
    }

instance Core.GoogleRequest VisionProjectsImagesAsyncBatchAnnotate where
  type Rs VisionProjectsImagesAsyncBatchAnnotate = Operation
  type
    Scopes VisionProjectsImagesAsyncBatchAnnotate =
      '[CloudPlatform'FullControl, CloudVision'FullControl]
  requestClient :: VisionProjectsImagesAsyncBatchAnnotate
-> GClient (Rs VisionProjectsImagesAsyncBatchAnnotate)
requestClient VisionProjectsImagesAsyncBatchAnnotate {Maybe Text
Maybe Xgafv
Text
GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
xgafv :: VisionProjectsImagesAsyncBatchAnnotate -> Maybe Xgafv
accessToken :: VisionProjectsImagesAsyncBatchAnnotate -> Maybe Text
callback :: VisionProjectsImagesAsyncBatchAnnotate -> Maybe Text
parent :: VisionProjectsImagesAsyncBatchAnnotate -> Text
payload :: VisionProjectsImagesAsyncBatchAnnotate
-> GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
uploadType :: VisionProjectsImagesAsyncBatchAnnotate -> Maybe Text
uploadProtocol :: VisionProjectsImagesAsyncBatchAnnotate -> Maybe Text
xgafv :: Maybe Xgafv
accessToken :: Maybe Text
callback :: Maybe Text
parent :: Text
payload :: GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
uploadType :: Maybe Text
uploadProtocol :: Maybe Text
..} =
    Text
-> Maybe Xgafv
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe AltJSON
-> GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
-> ServiceConfig
-> GClient Operation
go
      Text
parent
      Maybe Xgafv
xgafv
      Maybe Text
accessToken
      Maybe Text
callback
      Maybe Text
uploadType
      Maybe Text
uploadProtocol
      (AltJSON -> Maybe AltJSON
forall a. a -> Maybe a
Core.Just AltJSON
Core.AltJSON)
      GoogleCloudVisionV1p2beta1AsyncBatchAnnotateImagesRequest
payload
      ServiceConfig
visionService
    where
      go :: Fn VisionProjectsImagesAsyncBatchAnnotateResource
go =
        Proxy VisionProjectsImagesAsyncBatchAnnotateResource
-> Request -> Fn VisionProjectsImagesAsyncBatchAnnotateResource
forall {k} (fn :: k).
GoogleClient fn =>
Proxy fn -> Request -> Fn fn
Core.buildClient
          ( Proxy VisionProjectsImagesAsyncBatchAnnotateResource
forall {k} (t :: k). Proxy t
Core.Proxy ::
              Core.Proxy VisionProjectsImagesAsyncBatchAnnotateResource
          )
          Request
forall a. Monoid a => a
Core.mempty