{-# 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.UnsampledReports.List -- 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) -- -- Lists unsampled reports to which the user has access. -- -- /See:/ for @analytics.management.unsampledReports.list@. module Gogol.Analytics.Management.UnsampledReports.List ( -- * Resource AnalyticsManagementUnsampledReportsListResource, -- ** Constructing a Request AnalyticsManagementUnsampledReportsList (..), newAnalyticsManagementUnsampledReportsList, ) where import Gogol.Analytics.Types import Gogol.Prelude qualified as Core -- | A resource alias for @analytics.management.unsampledReports.list@ method which the -- 'AnalyticsManagementUnsampledReportsList' request conforms to. type AnalyticsManagementUnsampledReportsListResource = "analytics" Core.:> "v3" Core.:> "management" Core.:> "accounts" Core.:> Core.Capture "accountId" Core.Text Core.:> "webproperties" Core.:> Core.Capture "webPropertyId" Core.Text Core.:> "profiles" Core.:> Core.Capture "profileId" Core.Text Core.:> "unsampledReports" Core.:> Core.QueryParam "max-results" Core.Int32 Core.:> Core.QueryParam "start-index" Core.Int32 Core.:> Core.QueryParam "alt" Core.AltJSON Core.:> Core.Get '[Core.JSON] UnsampledReports -- | Lists unsampled reports to which the user has access. -- -- /See:/ 'newAnalyticsManagementUnsampledReportsList' smart constructor. data AnalyticsManagementUnsampledReportsList = AnalyticsManagementUnsampledReportsList { -- | Account ID to retrieve unsampled reports for. Must be a specific account ID, ~all is not supported. accountId :: Core.Text, -- | The maximum number of unsampled reports to include in this response. maxResults :: (Core.Maybe Core.Int32), -- | View (Profile) ID to retrieve unsampled reports for. Must be a specific view (profile) ID, ~all is not supported. profileId :: Core.Text, -- | An index of the first unsampled report to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter. startIndex :: (Core.Maybe Core.Int32), -- | Web property ID to retrieve unsampled reports for. Must be a specific web property ID, ~all is not supported. webPropertyId :: Core.Text } deriving (Core.Eq, Core.Show, Core.Generic) -- | Creates a value of 'AnalyticsManagementUnsampledReportsList' with the minimum fields required to make a request. newAnalyticsManagementUnsampledReportsList :: -- | Account ID to retrieve unsampled reports for. Must be a specific account ID, ~all is not supported. See 'accountId'. Core.Text -> -- | View (Profile) ID to retrieve unsampled reports for. Must be a specific view (profile) ID, ~all is not supported. See 'profileId'. Core.Text -> -- | Web property ID to retrieve unsampled reports for. Must be a specific web property ID, ~all is not supported. See 'webPropertyId'. Core.Text -> AnalyticsManagementUnsampledReportsList newAnalyticsManagementUnsampledReportsList accountId profileId webPropertyId = AnalyticsManagementUnsampledReportsList { accountId = accountId, maxResults = Core.Nothing, profileId = profileId, startIndex = Core.Nothing, webPropertyId = webPropertyId } instance Core.GoogleRequest AnalyticsManagementUnsampledReportsList where type Rs AnalyticsManagementUnsampledReportsList = UnsampledReports type Scopes AnalyticsManagementUnsampledReportsList = '[Analytics'FullControl, Analytics'Edit, Analytics'Readonly] requestClient AnalyticsManagementUnsampledReportsList {..} = go accountId webPropertyId profileId maxResults startIndex (Core.Just Core.AltJSON) analyticsService where go = Core.buildClient ( Core.Proxy :: Core.Proxy AnalyticsManagementUnsampledReportsListResource ) Core.mempty