{-# 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.AppsLicensing.Licensing.LicenseAssignments.Patch
-- 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)
--
-- Reassign a user\'s product SKU with a different SKU in the same product. This method supports patch semantics.
--
-- /See:/ <https://developers.google.com/admin-sdk/licensing/ Enterprise License Manager API Reference> for @licensing.licenseAssignments.patch@.
module Gogol.AppsLicensing.Licensing.LicenseAssignments.Patch
  ( -- * Resource
    LicensingLicenseAssignmentsPatchResource,

    -- ** Constructing a Request
    LicensingLicenseAssignmentsPatch (..),
    newLicensingLicenseAssignmentsPatch,
  )
where

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

-- | A resource alias for @licensing.licenseAssignments.patch@ method which the
-- 'LicensingLicenseAssignmentsPatch' request conforms to.
type LicensingLicenseAssignmentsPatchResource =
  "apps"
    Core.:> "licensing"
    Core.:> "v1"
    Core.:> "product"
    Core.:> Core.Capture "productId" Core.Text
    Core.:> "sku"
    Core.:> Core.Capture "skuId" Core.Text
    Core.:> "user"
    Core.:> Core.Capture "userId" Core.Text
    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] LicenseAssignment
    Core.:> Core.Patch '[Core.JSON] LicenseAssignment

-- | Reassign a user\'s product SKU with a different SKU in the same product. This method supports patch semantics.
--
-- /See:/ 'newLicensingLicenseAssignmentsPatch' smart constructor.
data LicensingLicenseAssignmentsPatch = LicensingLicenseAssignmentsPatch
  { -- | V1 error format.
    LicensingLicenseAssignmentsPatch -> Maybe Xgafv
xgafv :: (Core.Maybe Xgafv),
    -- | OAuth access token.
    LicensingLicenseAssignmentsPatch -> Maybe Text
accessToken :: (Core.Maybe Core.Text),
    -- | JSONP
    LicensingLicenseAssignmentsPatch -> Maybe Text
callback :: (Core.Maybe Core.Text),
    -- | Multipart request metadata.
    LicensingLicenseAssignmentsPatch -> LicenseAssignment
payload :: LicenseAssignment,
    -- | A product\'s unique identifier. For more information about products in this version of the API, see Products and SKUs.
    LicensingLicenseAssignmentsPatch -> Text
productId :: Core.Text,
    -- | A product SKU\'s unique identifier. For more information about available SKUs in this version of the API, see Products and SKUs.
    LicensingLicenseAssignmentsPatch -> Text
skuId :: Core.Text,
    -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\").
    LicensingLicenseAssignmentsPatch -> Maybe Text
uploadType :: (Core.Maybe Core.Text),
    -- | Upload protocol for media (e.g. \"raw\", \"multipart\").
    LicensingLicenseAssignmentsPatch -> Maybe Text
uploadProtocol :: (Core.Maybe Core.Text),
    -- | The user\'s current primary email address. If the user\'s email address changes, use the new email address in your API requests. Since a @userId@ is subject to change, do not use a @userId@ value as a key for persistent data. This key could break if the current user\'s email address changes. If the @userId@ is suspended, the license status changes.
    LicensingLicenseAssignmentsPatch -> Text
userId :: Core.Text
  }
  deriving (LicensingLicenseAssignmentsPatch
-> LicensingLicenseAssignmentsPatch -> Bool
(LicensingLicenseAssignmentsPatch
 -> LicensingLicenseAssignmentsPatch -> Bool)
-> (LicensingLicenseAssignmentsPatch
    -> LicensingLicenseAssignmentsPatch -> Bool)
-> Eq LicensingLicenseAssignmentsPatch
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: LicensingLicenseAssignmentsPatch
-> LicensingLicenseAssignmentsPatch -> Bool
== :: LicensingLicenseAssignmentsPatch
-> LicensingLicenseAssignmentsPatch -> Bool
$c/= :: LicensingLicenseAssignmentsPatch
-> LicensingLicenseAssignmentsPatch -> Bool
/= :: LicensingLicenseAssignmentsPatch
-> LicensingLicenseAssignmentsPatch -> Bool
Core.Eq, Int -> LicensingLicenseAssignmentsPatch -> ShowS
[LicensingLicenseAssignmentsPatch] -> ShowS
LicensingLicenseAssignmentsPatch -> String
(Int -> LicensingLicenseAssignmentsPatch -> ShowS)
-> (LicensingLicenseAssignmentsPatch -> String)
-> ([LicensingLicenseAssignmentsPatch] -> ShowS)
-> Show LicensingLicenseAssignmentsPatch
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> LicensingLicenseAssignmentsPatch -> ShowS
showsPrec :: Int -> LicensingLicenseAssignmentsPatch -> ShowS
$cshow :: LicensingLicenseAssignmentsPatch -> String
show :: LicensingLicenseAssignmentsPatch -> String
$cshowList :: [LicensingLicenseAssignmentsPatch] -> ShowS
showList :: [LicensingLicenseAssignmentsPatch] -> ShowS
Core.Show, (forall x.
 LicensingLicenseAssignmentsPatch
 -> Rep LicensingLicenseAssignmentsPatch x)
-> (forall x.
    Rep LicensingLicenseAssignmentsPatch x
    -> LicensingLicenseAssignmentsPatch)
-> Generic LicensingLicenseAssignmentsPatch
forall x.
Rep LicensingLicenseAssignmentsPatch x
-> LicensingLicenseAssignmentsPatch
forall x.
LicensingLicenseAssignmentsPatch
-> Rep LicensingLicenseAssignmentsPatch x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cfrom :: forall x.
LicensingLicenseAssignmentsPatch
-> Rep LicensingLicenseAssignmentsPatch x
from :: forall x.
LicensingLicenseAssignmentsPatch
-> Rep LicensingLicenseAssignmentsPatch x
$cto :: forall x.
Rep LicensingLicenseAssignmentsPatch x
-> LicensingLicenseAssignmentsPatch
to :: forall x.
Rep LicensingLicenseAssignmentsPatch x
-> LicensingLicenseAssignmentsPatch
Core.Generic)

-- | Creates a value of 'LicensingLicenseAssignmentsPatch' with the minimum fields required to make a request.
newLicensingLicenseAssignmentsPatch ::
  -- |  Multipart request metadata. See 'payload'.
  LicenseAssignment ->
  -- |  A product\'s unique identifier. For more information about products in this version of the API, see Products and SKUs. See 'productId'.
  Core.Text ->
  -- |  A product SKU\'s unique identifier. For more information about available SKUs in this version of the API, see Products and SKUs. See 'skuId'.
  Core.Text ->
  -- |  The user\'s current primary email address. If the user\'s email address changes, use the new email address in your API requests. Since a @userId@ is subject to change, do not use a @userId@ value as a key for persistent data. This key could break if the current user\'s email address changes. If the @userId@ is suspended, the license status changes. See 'userId'.
  Core.Text ->
  LicensingLicenseAssignmentsPatch
newLicensingLicenseAssignmentsPatch :: LicenseAssignment
-> Text -> Text -> Text -> LicensingLicenseAssignmentsPatch
newLicensingLicenseAssignmentsPatch LicenseAssignment
payload Text
productId Text
skuId Text
userId =
  LicensingLicenseAssignmentsPatch
    { 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,
      payload :: LicenseAssignment
payload = LicenseAssignment
payload,
      productId :: Text
productId = Text
productId,
      skuId :: Text
skuId = Text
skuId,
      uploadType :: Maybe Text
uploadType = Maybe Text
forall a. Maybe a
Core.Nothing,
      uploadProtocol :: Maybe Text
uploadProtocol = Maybe Text
forall a. Maybe a
Core.Nothing,
      userId :: Text
userId = Text
userId
    }

instance Core.GoogleRequest LicensingLicenseAssignmentsPatch where
  type Rs LicensingLicenseAssignmentsPatch = LicenseAssignment
  type Scopes LicensingLicenseAssignmentsPatch = '[Apps'Licensing]
  requestClient :: LicensingLicenseAssignmentsPatch
-> GClient (Rs LicensingLicenseAssignmentsPatch)
requestClient LicensingLicenseAssignmentsPatch {Maybe Text
Maybe Xgafv
Text
LicenseAssignment
xgafv :: LicensingLicenseAssignmentsPatch -> Maybe Xgafv
accessToken :: LicensingLicenseAssignmentsPatch -> Maybe Text
callback :: LicensingLicenseAssignmentsPatch -> Maybe Text
payload :: LicensingLicenseAssignmentsPatch -> LicenseAssignment
productId :: LicensingLicenseAssignmentsPatch -> Text
skuId :: LicensingLicenseAssignmentsPatch -> Text
uploadType :: LicensingLicenseAssignmentsPatch -> Maybe Text
uploadProtocol :: LicensingLicenseAssignmentsPatch -> Maybe Text
userId :: LicensingLicenseAssignmentsPatch -> Text
xgafv :: Maybe Xgafv
accessToken :: Maybe Text
callback :: Maybe Text
payload :: LicenseAssignment
productId :: Text
skuId :: Text
uploadType :: Maybe Text
uploadProtocol :: Maybe Text
userId :: Text
..} =
    Text
-> Text
-> Text
-> Maybe Xgafv
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe AltJSON
-> LicenseAssignment
-> ServiceConfig
-> GClient LicenseAssignment
go
      Text
productId
      Text
skuId
      Text
userId
      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)
      LicenseAssignment
payload
      ServiceConfig
appsLicensingService
    where
      go :: Fn LicensingLicenseAssignmentsPatchResource
go =
        Proxy LicensingLicenseAssignmentsPatchResource
-> Request -> Fn LicensingLicenseAssignmentsPatchResource
forall {k} (fn :: k).
GoogleClient fn =>
Proxy fn -> Request -> Fn fn
Core.buildClient
          (Proxy LicensingLicenseAssignmentsPatchResource
forall {k} (t :: k). Proxy t
Core.Proxy :: Core.Proxy LicensingLicenseAssignmentsPatchResource)
          Request
forall a. Monoid a => a
Core.mempty