{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# OPTIONS_GHC -fno-warn-duplicate-exports #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
module Network.Google.Resource.Calendar.ACL.Patch
(
ACLPatchResource
, aclPatch
, ACLPatch
, apCalendarId
, apRuleId
, apPayload
, apSendNotifications
) where
import Network.Google.AppsCalendar.Types
import Network.Google.Prelude
type ACLPatchResource =
"calendar" :>
"v3" :>
"calendars" :>
Capture "calendarId" Text :>
"acl" :>
Capture "ruleId" Text :>
QueryParam "sendNotifications" Bool :>
QueryParam "alt" AltJSON :>
ReqBody '[JSON] ACLRule :> Patch '[JSON] ACLRule
data ACLPatch = ACLPatch'
{ _apCalendarId :: !Text
, _apRuleId :: !Text
, _apPayload :: !ACLRule
, _apSendNotifications :: !(Maybe Bool)
} deriving (Eq,Show,Data,Typeable,Generic)
aclPatch
:: Text
-> Text
-> ACLRule
-> ACLPatch
aclPatch pApCalendarId_ pApRuleId_ pApPayload_ =
ACLPatch'
{ _apCalendarId = pApCalendarId_
, _apRuleId = pApRuleId_
, _apPayload = pApPayload_
, _apSendNotifications = Nothing
}
apCalendarId :: Lens' ACLPatch Text
apCalendarId
= lens _apCalendarId (\ s a -> s{_apCalendarId = a})
apRuleId :: Lens' ACLPatch Text
apRuleId = lens _apRuleId (\ s a -> s{_apRuleId = a})
apPayload :: Lens' ACLPatch ACLRule
apPayload
= lens _apPayload (\ s a -> s{_apPayload = a})
apSendNotifications :: Lens' ACLPatch (Maybe Bool)
apSendNotifications
= lens _apSendNotifications
(\ s a -> s{_apSendNotifications = a})
instance GoogleRequest ACLPatch where
type Rs ACLPatch = ACLRule
type Scopes ACLPatch =
'["https://www.googleapis.com/auth/calendar"]
requestClient ACLPatch'{..}
= go _apCalendarId _apRuleId _apSendNotifications
(Just AltJSON)
_apPayload
appsCalendarService
where go
= buildClient (Proxy :: Proxy ACLPatchResource)
mempty