{-# 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.Analytics.Management.RemarketingAudience.Update -- Copyright : (c) 2015-2025 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Toni Cebrián -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Updates an existing remarketing audience. -- -- /See:/ for @analytics.management.remarketingAudience.update@. module Gogol.Analytics.Management.RemarketingAudience.Update ( -- * Resource AnalyticsManagementRemarketingAudienceUpdateResource, -- ** Constructing a Request AnalyticsManagementRemarketingAudienceUpdate (..), newAnalyticsManagementRemarketingAudienceUpdate, ) where import Gogol.Analytics.Types import Gogol.Prelude qualified as Core -- | A resource alias for @analytics.management.remarketingAudience.update@ method which the -- 'AnalyticsManagementRemarketingAudienceUpdate' request conforms to. type AnalyticsManagementRemarketingAudienceUpdateResource = "analytics" Core.:> "v3" Core.:> "management" Core.:> "accounts" Core.:> Core.Capture "accountId" Core.Text Core.:> "webproperties" Core.:> Core.Capture "webPropertyId" Core.Text Core.:> "remarketingAudiences" Core.:> Core.Capture "remarketingAudienceId" Core.Text Core.:> Core.QueryParam "alt" Core.AltJSON Core.:> Core.ReqBody '[Core.JSON] RemarketingAudience Core.:> Core.Put '[Core.JSON] RemarketingAudience -- | Updates an existing remarketing audience. -- -- /See:/ 'newAnalyticsManagementRemarketingAudienceUpdate' smart constructor. data AnalyticsManagementRemarketingAudienceUpdate = AnalyticsManagementRemarketingAudienceUpdate { -- | The account ID of the remarketing audience to update. accountId :: Core.Text, -- | Multipart request metadata. payload :: RemarketingAudience, -- | The ID of the remarketing audience to update. remarketingAudienceId :: Core.Text, -- | The web property ID of the remarketing audience to update. webPropertyId :: Core.Text } deriving (Core.Eq, Core.Show, Core.Generic) -- | Creates a value of 'AnalyticsManagementRemarketingAudienceUpdate' with the minimum fields required to make a request. newAnalyticsManagementRemarketingAudienceUpdate :: -- | The account ID of the remarketing audience to update. See 'accountId'. Core.Text -> -- | Multipart request metadata. See 'payload'. RemarketingAudience -> -- | The ID of the remarketing audience to update. See 'remarketingAudienceId'. Core.Text -> -- | The web property ID of the remarketing audience to update. See 'webPropertyId'. Core.Text -> AnalyticsManagementRemarketingAudienceUpdate newAnalyticsManagementRemarketingAudienceUpdate accountId payload remarketingAudienceId webPropertyId = AnalyticsManagementRemarketingAudienceUpdate { accountId = accountId, payload = payload, remarketingAudienceId = remarketingAudienceId, webPropertyId = webPropertyId } instance Core.GoogleRequest AnalyticsManagementRemarketingAudienceUpdate where type Rs AnalyticsManagementRemarketingAudienceUpdate = RemarketingAudience type Scopes AnalyticsManagementRemarketingAudienceUpdate = '[Analytics'Edit] requestClient AnalyticsManagementRemarketingAudienceUpdate {..} = go accountId webPropertyId remarketingAudienceId (Core.Just Core.AltJSON) payload analyticsService where go = Core.buildClient ( Core.Proxy :: Core.Proxy AnalyticsManagementRemarketingAudienceUpdateResource ) Core.mempty