{-# 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
) where
import Network.Google.AppsCalendar.Types
import Network.Google.Prelude
type ACLPatchResource =
"calendar" :>
"v3" :>
"calendars" :>
Capture "calendarId" Text :>
"acl" :>
Capture "ruleId" Text :>
QueryParam "alt" AltJSON :>
ReqBody '[JSON] ACLRule :> Patch '[JSON] ACLRule
-- | Updates an access control rule. This method supports patch semantics.
--
-- /See:/ 'aclPatch' smart constructor.
data ACLPatch = ACLPatch'
{ _apCalendarId :: !Text
, _apRuleId :: !Text
, _apPayload :: !ACLRule
} deriving (Eq,Show,Data,Typeable,Generic)
-- | Creates a value of 'ACLPatch' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'apCalendarId'
--
-- * 'apRuleId'
--
-- * 'apPayload'
aclPatch
:: Text -- ^ 'apCalendarId'
-> Text -- ^ 'apRuleId'
-> ACLRule -- ^ 'apPayload'
-> ACLPatch
aclPatch pApCalendarId_ pApRuleId_ pApPayload_ =
ACLPatch'
{ _apCalendarId = pApCalendarId_
, _apRuleId = pApRuleId_
, _apPayload = pApPayload_
}
-- | 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.
apCalendarId :: Lens' ACLPatch Text
apCalendarId
= lens _apCalendarId (\ s a -> s{_apCalendarId = a})
-- | ACL rule identifier.
apRuleId :: Lens' ACLPatch Text
apRuleId = lens _apRuleId (\ s a -> s{_apRuleId = a})
-- | Multipart request metadata.
apPayload :: Lens' ACLPatch ACLRule
apPayload
= lens _apPayload (\ s a -> s{_apPayload = a})
instance GoogleRequest ACLPatch where
type Rs ACLPatch = ACLRule
type Scopes ACLPatch =
'["https://www.googleapis.com/auth/calendar"]
requestClient ACLPatch'{..}
= go _apCalendarId _apRuleId (Just AltJSON)
_apPayload
appsCalendarService
where go
= buildClient (Proxy :: Proxy ACLPatchResource)
mempty