{-# 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.AppsCalendar.Calendar.Acl.Watch -- 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) -- -- Watch for changes to ACL resources. -- -- /See:/ for @calendar.acl.watch@. module Gogol.AppsCalendar.Calendar.Acl.Watch ( -- * Resource CalendarAclWatchResource, -- ** Constructing a Request CalendarAclWatch (..), newCalendarAclWatch, ) where import Gogol.AppsCalendar.Types import Gogol.Prelude qualified as Core -- | A resource alias for @calendar.acl.watch@ method which the -- 'CalendarAclWatch' request conforms to. type CalendarAclWatchResource = "calendar" Core.:> "v3" Core.:> "calendars" Core.:> Core.Capture "calendarId" Core.Text Core.:> "acl" Core.:> "watch" Core.:> Core.QueryParam "maxResults" Core.Int32 Core.:> Core.QueryParam "pageToken" Core.Text Core.:> Core.QueryParam "showDeleted" Core.Bool Core.:> Core.QueryParam "syncToken" Core.Text Core.:> Core.QueryParam "alt" Core.AltJSON Core.:> Core.ReqBody '[Core.JSON] Channel Core.:> Core.Post '[Core.JSON] Channel -- | Watch for changes to ACL resources. -- -- /See:/ 'newCalendarAclWatch' smart constructor. data CalendarAclWatch = CalendarAclWatch { -- | Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword. calendarId :: Core.Text, -- | Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. maxResults :: (Core.Maybe Core.Int32), -- | Token specifying which result page to return. Optional. pageToken :: (Core.Maybe Core.Text), -- | Multipart request metadata. payload :: Channel, -- | Whether to include deleted ACLs in the result. Deleted ACLs are represented by role equal to \"none\". Deleted ACLs will always be included if syncToken is provided. Optional. The default is False. showDeleted :: (Core.Maybe Core.Bool), -- | Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. All entries deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False. If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken. Learn more about incremental synchronization. Optional. The default is to return all entries. syncToken :: (Core.Maybe Core.Text) } deriving (Core.Eq, Core.Show, Core.Generic) -- | Creates a value of 'CalendarAclWatch' with the minimum fields required to make a request. newCalendarAclWatch :: -- | Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword. See 'calendarId'. Core.Text -> -- | Multipart request metadata. See 'payload'. Channel -> CalendarAclWatch newCalendarAclWatch calendarId payload = CalendarAclWatch { calendarId = calendarId, maxResults = Core.Nothing, pageToken = Core.Nothing, payload = payload, showDeleted = Core.Nothing, syncToken = Core.Nothing } instance Core.GoogleRequest CalendarAclWatch where type Rs CalendarAclWatch = Channel type Scopes CalendarAclWatch = '[Calendar'FullControl, Calendar'Acls, Calendar'Acls'Readonly] requestClient CalendarAclWatch {..} = go calendarId maxResults pageToken showDeleted syncToken (Core.Just Core.AltJSON) payload appsCalendarService where go = Core.buildClient (Core.Proxy :: Core.Proxy CalendarAclWatchResource) Core.mempty